/* ===== RESET SUAVE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f4f4;
  color: #222;
}

/* ===== ELEMENTOS GENERALES ===== */
.header-spacer {
  height: 72px;
}

.brand-accent {
  color: #111;
}

/* Navbar */
.navbar {
  font-size: 0.95rem;
}

.main-nav .nav-link {
  color: #444;
  margin-left: 12px;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.25s ease;
}

.main-nav .nav-link:hover {
  color: #000;
}

.main-nav .nav-link:hover::after {
  width: 100%;
}

/* Link activo marcado con JS */
.main-nav .nav-link.active {
  color: #000;
  font-weight: 600;
}

.main-nav .nav-link.active::after {
  width: 100%;
}

/* ===== HERO ===== */
.hero-section {
  padding: 60px 0 40px;
}

.hero-tagline {
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: #777;
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 620px;
  margin: 0 auto;
  color: #555;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BOTONES ===== */
.btn-main {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid #111;
  font-size: 0.96rem;
}

.btn-main:hover {
  background: #333;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #111;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid #999;
  font-size: 0.96rem;
}

.btn-ghost:hover {
  background: #111;
  color: #fff;
}

/* ===== SECCIONES GENERALES ===== */
.section-padding {
  padding: 50px 0 40px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ===== FEATURES (INICIO) ===== */
.features-section {
  padding: 30px 0 50px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

/* ===== FAQ ===== */
.accordion-button {
  background: #f8f8f8;
  color: #222;
}

.accordion-button:not(.collapsed) {
  background: #e9e9e9;
  color: #000;
}

/* ===== CONTACTO ===== */
.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 4px;
  color: #111;
}

/* ===== BOTONES FLOTANTES ===== */
.floating-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  right: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.floating-btn i {
  font-size: 1.4rem;
}

.floating-btn--whatsapp {
  bottom: 20px;
  color: #25D366 !important;
}

.floating-btn--instagram {
  bottom: 84px;
  color: #C13584 !important;
}

.floating-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
  opacity: 1;
}

/* ===== ANIMACIONES SUAVES (REVEAL) ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER PRO ===== */
.site-footer {
  border-top: 1px solid #ddd;
  padding: 18px 0 20px;
  background: #f0f0f0;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #555;
}

.footer-links a {
  color: #444;
  text-decoration: none;
  margin: 0 4px;
}

.footer-links a:hover {
  color: #000;
}

.footer-links .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #999;
  border-radius: 50%;
  margin: 0 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .floating-btn--instagram {
    bottom: 80px;
  }

  .floating-btn--whatsapp {
    bottom: 20px;
  }
}

.logo-navbar {
  height: 50px;      /* tamaño del logo en el menú */
  width: auto;
  display: block;
  object-fit: contain;
}

.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: 0 auto;
}

.contact-form .form-label {
  font-weight: 600;
  color: #333;
}

.contact-card form .form-control {
  border-radius: 10px;
  font-size: 0.9rem;
}

.contact-card textarea.form-control {
  resize: none;
}

.contact-card form button {
  border-radius: 999px;
}

/* Colores oficiales de íconos de contacto */
.contact-card .fa-whatsapp {
  color: #25D366 !important; /* Verde WhatsApp */
}

.contact-card .fa-instagram {
  color: #C13584 !important; /* Rosa Instagram */
}

.contact-card .fa-envelope {
  color: #EA4335 !important; /* Rojo Gmail */
}
.store-icon {
  color: #111;
}

.disabled-store {
  opacity: 0.7;
}

.disabled-store button {
  cursor: not-allowed;
}

/* Ocultar versión real del local */
.hidden-real-store {
  display: none;
}

