/* ============================================
   ART MOUT — GLOBAL STYLES
   Fuentes: Cormorant Garamond (display) + Jost (body)
   Paleta: crema, café oscuro, beige cálido
============================================ */

:root {
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --brown-dark: #2C2318;
  --brown-mid: #5C4A35;
  --brown-light: #A08060;
  --beige: #E8DDCC;
  --beige-warm: #D4C4A8;
  --text-primary: #2C2318;
  --text-secondary: #5C4A35;
  --text-muted: #9A8570;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --nav-h: 64px;
  --announce-h: 36px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announcement-bar {
  background: var(--brown-dark);
  color: var(--beige);
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 0 1rem;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--cream-light);
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(44,35,24,0.08);
}

.nav-left { display: flex; align-items: center; gap: 8px; min-width: 40px; }
.nav-right { display: flex; align-items: center; gap: 8px; justify-content: flex-end; min-width: 40px; }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .hamburger { display: none !important; }
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: color var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-icon {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}

.nav-icon:hover { background: var(--beige); color: var(--text-primary); }

.back-link { display: flex; }

/* HAMBURGER */
.hamburger {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream-light);
  z-index: 200;
  padding: 2rem 2rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: -4px 0 30px rgba(44,35,24,0.1);
}

.mobile-menu.open { right: 0; }

.mobile-close {
  align-self: flex-end;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--beige);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--brown-light); }

.mobile-socials {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.mobile-socials a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.mobile-socials a:hover { color: var(--text-primary); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,35,24,0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================
   BUTTONS
============================================ */
.btn-dark {
  display: inline-block;
  background: var(--brown-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid var(--brown-dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-dark:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  transform: translateY(-1px);
}

.btn-dark.btn-large { padding: 18px 48px; font-size: 13px; }

.btn-light {
  display: inline-block;
  background: var(--cream);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-light:hover {
  background: transparent;
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1.5px solid var(--brown-mid);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--brown-dark);
  color: var(--cream);
  border-color: var(--brown-dark);
}

.btn-cotizar {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brown-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: 1.5px solid var(--brown-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  margin-top: 1rem;
}

.btn-cotizar:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  transform: translateY(-1px);
}

.btn-cotizar--disabled {
  background: var(--beige);
  color: var(--text-muted);
  border-color: var(--beige);
  cursor: not-allowed;
}

.btn-cotizar--disabled:hover { transform: none; background: var(--beige); border-color: var(--beige); }

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ============================================
   HERO
============================================ */

/* Logo nav: oculto en desktop, visible en móvil */
.nav-logo--mobile-only { display: none; }
@media (max-width: 767px) {
  .nav-logo--mobile-only {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-logo--mobile-only img {
    filter: none;
  }
}

.hero {
  background: var(--cream-light);
  min-height: calc(100vh - var(--nav-h) - var(--announce-h));
}

/* Split: logo izq | texto der */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h) - var(--announce-h));
}

.hero-left {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-right: 1px solid var(--beige);
}

.hero-logo-split {
  width: min(420px, 88%);
  height: auto;
  object-fit: contain;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5% 4rem 6%;
}

/* MÓVIL: logo arriba centrado, texto abajo (Opción A) */
@media (max-width: 767px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero-left {
    border-right: none;
    border-bottom: 1px solid var(--beige);
    padding: 1.5rem 1.5rem 1rem;
    justify-content: center;
  }

  .hero-logo-split {
    width: min(280px, 80vw);
  }

  .hero-right {
    padding: 2.5rem 1.75rem 3.5rem;
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-sub {
    font-size: 14px;
  }
}

/* Texto hero */
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--brown-mid);
}

.hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 340px;
  line-height: 1.7;
}

/* ============================================
   TICKER
============================================ */
.ticker {
  background: var(--brown-dark);
  color: var(--beige-warm);
  overflow: hidden;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
}

.ticker-track span { white-space: nowrap; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   INTRO
============================================ */
.intro {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5%, 5rem);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.intro-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.intro-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   CUADROS SECTION
============================================ */
.cuadros-section {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3%, 3rem);
  background: var(--cream);
}

.cuadros-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cuadros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .cuadros-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .cuadros-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.cuadro-card {
  background: var(--cream-light);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.cuadro-card:hover {
  box-shadow: 0 8px 32px rgba(44,35,24,0.1);
  transform: translateY(-4px);
}

.cuadro-card--featured {
  border-color: var(--brown-light);
  box-shadow: 0 4px 20px rgba(44,35,24,0.08);
}

.cuadro-card--coming {
  opacity: 0.75;
}

.cuadro-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--brown-dark);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.cuadro-badge--soon {
  background: var(--brown-light);
}

.cuadro-images {
  position: relative;
  height: 220px;
  background: var(--beige);
  overflow: hidden;
}

@media (max-width: 600px) {
  .cuadro-images { height: 150px; }
}

.cuadro-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cuadro-card:hover .cuadro-main-img { transform: scale(1.05); }

.cuadro-thumbs {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
}

.cuadro-thumbs img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
}

.cuadro-images--coming {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.coming-soon-placeholder span { font-size: 40px; display: block; margin-bottom: 8px; }
.coming-soon-placeholder p { font-size: 13px; letter-spacing: 0.06em; }

.cuadro-info {
  padding: 1.25rem;
}

.cuadro-shape-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-icon {
  border-radius: 50%;
  border: 2px solid var(--brown-mid);
  background: transparent;
}

.rect-icon {
  border-radius: 2px;
  border: 2px solid var(--brown-mid);
  background: transparent;
  width: 32px;
  height: 24px;
}

.heart-icon {
  font-size: 20px;
  color: var(--brown-mid);
  background: none;
  border: none;
}

.key-icon {
  font-size: 20px;
  background: none;
  border: none;
}

.cuadro-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .cuadro-name { font-size: 18px; }
}

.cuadro-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .cuadro-desc { display: none; }
}

.cuadro-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.cuadro-meta span {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--beige);
  padding: 3px 8px;
  border-radius: 20px;
}

/* ============================================
   BANNER CTA
============================================ */
.banner-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 60vw, 560px);
  background-image: url('IMG/mout-oaxaca.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 8, 0.52);
  z-index: 1;
}

.banner-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 640px;
}

.banner-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige-warm);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.banner-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .banner-cta {
    min-height: 80vw;
    background-position: center center;
  }

  .banner-cta-content {
    padding: 3rem 1.5rem;
  }

  .banner-cta-content h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* ============================================
   GALLERY TICKER
============================================ */
.gallery-ticker {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--beige);
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: gallery-scroll 30s linear infinite;
}

.gallery-track img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .gallery-track img { width: 120px; height: 120px; }
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   NOSOTROS
============================================ */
.nosotros {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5%, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nosotros {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.nosotros-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.nosotros-text p strong { color: var(--text-primary); }

.nosotros-text .btn-outline { margin-top: 1rem; }

.mascota-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 400px) {
  .mascota-grid { grid-template-columns: repeat(2, 1fr); }
}

.mascota-item {
  text-align: center;
}

.mascota-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--beige);
  transition: border-color var(--transition), transform var(--transition);
}

.mascota-item:hover img {
  border-color: var(--brown-light);
  transform: scale(1.05);
}

.mascota-item p {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.mascota-item--mout img {
  border-color: var(--brown-mid);
}

.mascota-item--mout p {
  color: var(--brown-mid);
  font-style: italic;
}

/* ============================================
   CONTACTO
============================================ */
.contacto {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  text-align: center;
}

.contacto-inner { max-width: 560px; margin: 0 auto; }

.contacto-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contacto-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contacto-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--beige-warm);
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.contacto-btn:hover {
  background: var(--brown-dark);
  color: var(--cream);
  border-color: var(--brown-dark);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--brown-dark);
  color: var(--beige-warm);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.8);
  margin-bottom: 0.75rem;
}

.footer-logo p {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--brown-light);
}

.footer-links, .footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a, .footer-socials a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beige-warm);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-links a:hover, .footer-socials a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--brown-light);
  letter-spacing: 0.06em;
}

/* ============================================
   PAGE HERO (cotizar.html)
============================================ */
.page-hero {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5%, 5rem) 3rem;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-title em {
  font-style: italic;
  color: var(--brown-mid);
}

.page-hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   FILTER BAR
============================================ */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--beige-warm);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 24px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--brown-dark);
  color: var(--cream);
  border-color: var(--brown-dark);
}

/* ============================================
   PRODUCTS GRID (cotizar.html)
============================================ */
.products-section {
  padding: 2rem clamp(1rem, 3%, 3rem) 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.product-card {
  background: var(--cream-light);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(44,35,24,0.1);
  transform: translateY(-4px);
}

.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  height: 260px;
  background: var(--beige);
  overflow: hidden;
}

@media (max-width: 500px) {
  .product-img-wrap { height: 160px; }
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-type-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(44,35,24,0.75);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.product-info {
  padding: 1.25rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1rem;
}

@media (max-width: 500px) {
  .product-name { font-size: 16px; }
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--beige);
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-val {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 400;
}

.detail-price .price-val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brown-mid);
}

@media (max-width: 500px) {
  .detail-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .detail-price .price-val { font-size: 15px; }
}

/* ============================================
   CTA FINAL
============================================ */
.cta-final {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  text-align: center;
}

.cta-final p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PROCESO
============================================ */
.proceso-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5%, 5rem);
  background: var(--cream-light);
}

.proceso-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.proceso-intro {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.proceso-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
}

.proceso-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.proceso-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.proceso-step:nth-child(1) { transition-delay: 0s; }
.proceso-step:nth-child(3) { transition-delay: 0.18s; }
.proceso-step:nth-child(5) { transition-delay: 0.36s; }

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--beige-warm);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--brown-mid);
  transition: background var(--transition), border-color var(--transition);
}

.proceso-step:hover .step-icon {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--cream);
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.proceso-connector {
  flex: 0 0 40px;
  height: 1px;
  background: var(--beige-warm);
  margin-top: 80px;
  position: relative;
}

.proceso-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--brown-light);
  border-top: 1.5px solid var(--brown-light);
  transform: rotate(45deg);
}

.proceso-cta {
  text-align: center;
}

@media (max-width: 767px) {
  .proceso-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .proceso-step { padding: 1.5rem 1rem; }

  .proceso-connector {
    width: 1px;
    height: 32px;
    flex: 0 0 32px;
    margin-top: 0;
  }

  .proceso-connector::after {
    right: -4px;
    top: auto;
    bottom: -4px;
    transform: rotate(135deg);
  }
}

/* ============================================
   TESTIMONIOS
============================================ */
.testimonios-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 3%, 3rem);
  background: var(--cream);
}

.testimonios-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .testimonios-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonio-card {
  background: var(--cream-light);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}

.testimonio-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonio-card:nth-child(1) { transition-delay: 0s; }
.testimonio-card:nth-child(2) { transition-delay: 0.12s; }
.testimonio-card:nth-child(3) { transition-delay: 0.24s; }

.testimonio-card:hover {
  box-shadow: 0 8px 32px rgba(44,35,24,0.09);
}

.testimonio-card--featured {
  border-color: var(--brown-light);
  background: var(--white);
}

.testimonio-stars {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--brown-light);
}

.testimonio-texto {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
}

.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  border: 1.5px solid var(--brown-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--brown-mid);
  flex-shrink: 0;
}

.autor-nombre {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.autor-lugar {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonio-cuadro {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--beige);
}

.testimonio-cuadro img {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
}

.testimonio-cuadro span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   FAQ
============================================ */
.faq-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5%, 5rem);
  background: var(--cream-light);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--beige);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--beige);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--brown-mid); }

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon span {
  display: block;
  position: absolute;
  background: var(--brown-mid);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon span:first-child {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-bottom: 1.25rem;
}

.faq-answer p strong { color: var(--text-primary); }

.faq-answer.open {
  max-height: 300px;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.faq-cta p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================
   GALLERY HINT (hover en tarjeta)
============================================ */
.gallery-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(44,35,24,0.78);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.product-img-wrap {
  cursor: pointer;
}

.product-img-wrap:hover .gallery-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,12,6,0.92);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 301;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 680px;
  width: 100%;
}

.lightbox-main {
  width: 100%;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-main img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
}

.lightbox-main img.switching {
  opacity: 0;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.lightbox-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--beige-warm);
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 302;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.08);
}

@media (max-width: 600px) {
  .lightbox {
    padding: 1rem;
    gap: 0.5rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 36px;
    height: 36px;
  }

  .lightbox-thumb {
    width: 52px;
    height: 52px;
  }

  .lightbox-main {
    max-height: 55vh;
  }

  .lightbox-main img {
    max-height: 55vh;
  }
}

.contacto-ubicacion {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.5rem;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.contacto-ubicacion svg {
  color: var(--brown-light);
  flex-shrink: 0;
}
