﻿/* ─── RESET & ROOT ─── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {

  --black:       #080705;

  --black-mid:   #0f0d0b;

  --black-soft:  #161310;

  --black-card:  #121008;

  --cream:       #EDE8DF;

  --cream-dim:   rgba(237,232,223,0.58);

  --cream-faint: rgba(237,232,223,0.13);

  --gold:        #C8924A;

  --gold-light:  #DBA96A;

  --gold-dim:    rgba(200,146,74,0.40);

  --gold-glow:   rgba(200,146,74,0.11);

  --border:      rgba(237,232,223,0.08);

  --border-gold: rgba(200,146,74,0.22);

  --green:       #25D366;

}

html { scroll-behavior: smooth; }

body {

  background: var(--black);

  color: var(--cream);

  font-family: 'Montserrat', sans-serif;

  font-weight: 300;

  overflow-x: hidden;

}

::-webkit-scrollbar { width: 3px; }

::-webkit-scrollbar-track { background: var(--black); }

::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }



/* ─── NOISE ─── */

body::before {

  content: '';

  position: fixed; inset: 0; z-index: 1;

  pointer-events: none; opacity: 0.026;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  background-size: 180px;

}



/* ─── CURSOR (solo desktop) ─── */

@media (hover: hover) {

  * { cursor: none !important; }

  #cursor {

    position: fixed; z-index: 9999;

    width: 8px; height: 8px;

    background: var(--gold);

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%,-50%);

    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;

  }

  #cursor.hovering {

    width: 30px; height: 30px;

    background: transparent;

    border: 0.5px solid var(--gold);

  }

  #cursor-trail {

    position: fixed; z-index: 9998;

    width: 26px; height: 26px;

    border: 0.5px solid var(--gold-dim);

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%,-50%);

    transition: left 0.18s ease, top 0.18s ease;

  }

}



/* ─── NAV ─── */

nav {

  position: fixed; top: 0; left: 0; right: 0; z-index: 100;

  height: 68px;

  display: flex; align-items: center; justify-content: space-between;

  padding: 0 clamp(1.5rem, 5vw, 4rem);

  border-bottom: 0.5px solid transparent;

  transition: border-color 0.4s, background 0.4s, backdrop-filter 0.4s;

}

nav.scrolled {

  background: rgba(8,7,5,0.90);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border-color: var(--border);

}

.nav-logo {

  font-family: 'Playfair Display', serif;

  font-size: 1.35rem; font-weight: 400;

  letter-spacing: 0.12em; color: var(--cream);

  text-decoration: none; flex-shrink: 0;

}

.nav-logo span { color: var(--gold); font-style: italic; }

.nav-links {

  display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 2.8rem);

  list-style: none;

}

.nav-links li.desktop-only { display: list-item; }

@media (max-width: 640px) { .nav-links li.desktop-only { display: none; } }

.nav-links a {

  font-size: 10px; font-weight: 400; letter-spacing: 0.22em;

  text-transform: uppercase; color: var(--cream-dim);

  text-decoration: none; transition: color 0.25s;

  position: relative;

}

.nav-links a::after {

  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;

  height: 0.5px; background: var(--gold);

  transform: scaleX(0); transform-origin: left;

  transition: transform 0.3s ease;

}

.nav-links a:hover { color: var(--cream); }

.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {

  font-size: 10px; font-weight: 500; letter-spacing: 0.20em;

  text-transform: uppercase; color: var(--gold);

  text-decoration: none;

  border: 0.5px solid var(--border-gold);

  padding: 8px 18px; border-radius: 2px;

  transition: all 0.3s ease; flex-shrink: 0;

}

.nav-cta:hover { background: var(--gold-glow); border-color: var(--gold); }



/* ─── HERO ─── */

#hero {

  position: relative;

  height: 100svh; min-height: 600px;

  display: flex; align-items: flex-end;

  overflow: hidden;

}

.hero-bg {

  position: absolute; inset: 0;

  background-image: url("img/lifestyle-hero.jpeg");

  background-size: cover;

  background-position: center 25%;

  filter: brightness(0.62) contrast(1.12) saturate(0.80);

  transform: scale(1.06);

  animation: heroZoom 14s ease-out forwards;

}

@keyframes heroZoom { to { transform: scale(1.0); } }

.hero-overlay {

  position: absolute; inset: 0;

  background: linear-gradient(

    to bottom,

    rgba(8,7,5,0.22) 0%,

    rgba(8,7,5,0.04) 30%,

    rgba(8,7,5,0.52) 65%,

    rgba(8,7,5,0.97) 100%

  );

}

.hero-overlay-left {

  position: absolute; inset: 0;

  background: linear-gradient(to right, rgba(8,7,5,0.45) 0%, transparent 60%);

}

.hero-content {

  position: relative; z-index: 2;

  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(3.5rem, 8vh, 5.5rem);

  max-width: 700px;

}

.hero-eyebrow {

  display: flex; align-items: center; gap: 14px;

  margin-bottom: 1.6rem;

  opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards;

}

.hero-eyebrow-line { width: 28px; height: 0.5px; background: var(--gold-dim); }

.hero-eyebrow-text {

  font-size: 9px; font-weight: 500; letter-spacing: 0.28em;

  text-transform: uppercase; color: var(--gold);

}

.hero-title {

  font-family: 'Playfair Display', serif;

  font-size: clamp(2.6rem, 7vw, 5rem);

  font-weight: 400; line-height: 1.06;

  color: var(--cream); margin-bottom: 1.4rem;

  opacity: 0; animation: fadeUp 0.8s 0.6s ease forwards;

}

.hero-title em { font-style: italic; color: var(--gold-light); display: block; }

.hero-sub {

  font-size: clamp(11px, 1.5vw, 12.5px);

  font-weight: 300; letter-spacing: 0.10em;

  color: var(--cream-dim); line-height: 1.85;

  max-width: 420px; margin-bottom: 2.6rem;

  opacity: 0; animation: fadeUp 0.7s 0.8s ease forwards;

}

.hero-actions {

  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;

  opacity: 0; animation: fadeUp 0.7s 1.0s ease forwards;

}

.btn-primary {

  font-size: 10px; font-weight: 500; letter-spacing: 0.24em;

  text-transform: uppercase; color: var(--black);

  background: var(--gold); border: none;

  padding: 14px 30px; border-radius: 2px;

  text-decoration: none; transition: all 0.3s ease;

  display: inline-block;

}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {

  font-size: 10px; font-weight: 400; letter-spacing: 0.24em;

  text-transform: uppercase; color: var(--cream-dim);

  text-decoration: none;

  border-bottom: 0.5px solid var(--border-gold);

  padding-bottom: 3px; transition: color 0.25s, border-color 0.25s;

}

.btn-ghost:hover { color: var(--cream); border-color: var(--gold); }

.hero-scroll {

  position: absolute; bottom: 2.2rem; right: clamp(1.5rem, 4vw, 4rem); z-index: 2;

  display: flex; flex-direction: column; align-items: center; gap: 10px;

  opacity: 0; animation: fadeUp 0.6s 1.5s ease forwards;

}

@media (max-width: 640px) { .hero-scroll { display: none; } }

.hero-scroll-text {

  font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase;

  color: var(--cream-faint); writing-mode: vertical-rl;

}

.hero-scroll-line {

  width: 0.5px; height: 44px;

  background: linear-gradient(to bottom, var(--gold-dim), transparent);

  animation: scrollPulse 2.2s ease-in-out infinite;

}

@keyframes scrollPulse {

  0%,100% { opacity: 0.4; } 50% { opacity: 1; }

}



/* ─── DIVIDER ─── */

.divider {

  width: 100%; height: 0.5px;

  background: linear-gradient(90deg, transparent, var(--border-gold) 25%, var(--gold-dim) 50%, var(--border-gold) 75%, transparent);

}



/* ─── SECTION COMMONS ─── */

.section-label {

  display: flex; align-items: center; gap: 12px; margin-bottom: 0.9rem;

}

.section-label-line { width: 22px; height: 0.5px; background: var(--gold-dim); }

.section-label-text {

  font-size: 9px; font-weight: 500; letter-spacing: 0.28em;

  text-transform: uppercase; color: var(--gold);

}

.section-title {

  font-family: 'Playfair Display', serif;

  font-size: clamp(1.9rem, 4vw, 3rem);

  font-weight: 400; line-height: 1.12; color: var(--cream);

}

.section-title em { font-style: italic; color: var(--gold-light); }



/* ─── CATÁLOGO ─── */

#catalogo {

  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem);

  background: var(--black-mid);

}

.catalogo-header {

  display: flex; flex-wrap: wrap;

  align-items: flex-end; justify-content: space-between;

  gap: 1.5rem; margin-bottom: clamp(2.5rem, 5vh, 4rem);

}

.catalogo-intro {

  font-size: 11px; font-weight: 300; letter-spacing: 0.10em;

  color: var(--cream-dim); line-height: 1.9; max-width: 340px;

}

.productos-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5px;

}

@media (max-width: 680px) {

  .productos-grid { grid-template-columns: 1fr; gap: 2px; }

}

.producto-card {

  position: relative; overflow: hidden;

  aspect-ratio: 3/4; background: var(--black-card);

}

.card-img {

  width: 100%; height: 100%; object-fit: cover;

  filter: brightness(0.72) contrast(1.10) saturate(0.82);

  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease;

}

.producto-card:hover .card-img {

  transform: scale(1.07);

  filter: brightness(0.88) contrast(1.08) saturate(0.90);

}

.card-overlay {

  position: absolute; inset: 0;

  background: linear-gradient(to top, rgba(8,7,5,0.96) 0%, rgba(8,7,5,0.42) 42%, transparent 70%);

}

.card-overlay-hover {

  position: absolute; inset: 0;

  background: rgba(8,7,5,0.25); opacity: 0; transition: opacity 0.4s;

}

.producto-card:hover .card-overlay-hover { opacity: 1; }

.card-content {

  position: absolute; bottom: 0; left: 0; right: 0;

  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 3vw, 1.8rem);

}

.card-tag {

  font-size: 8px; font-weight: 500; letter-spacing: 0.24em;

  text-transform: uppercase; color: var(--gold);

  margin-bottom: 8px;

  display: flex; align-items: center; gap: 8px;

}

.card-tag::before { content: ''; width: 14px; height: 0.5px; background: var(--gold-dim); }

.card-name {

  font-family: 'Playfair Display', serif;

  font-size: clamp(1.4rem, 3vw, 1.7rem);

  font-weight: 400; color: var(--cream); line-height: 1.15; margin-bottom: 6px;

}

.card-name em { font-style: italic; color: var(--gold-light); }

.card-sizes {

  font-size: 8.5px; font-weight: 300; letter-spacing: 0.16em;

  text-transform: uppercase; color: var(--cream-dim); margin-bottom: 14px;

}

.card-link {

  font-size: 8.5px; font-weight: 500; letter-spacing: 0.20em;

  text-transform: uppercase; color: var(--gold);

  text-decoration: none;

  display: flex; align-items: center; gap: 8px;

  opacity: 0; transform: translateY(6px);

  transition: opacity 0.35s, transform 0.35s;

}

.producto-card:hover .card-link { opacity: 1; transform: translateY(0); }

.card-link-arrow {

  width: 20px; height: 0.5px; background: var(--gold);

  position: relative; flex-shrink: 0; transition: width 0.3s;

}

.card-link-arrow::after {

  content: ''; position: absolute; right: 0; top: -3px;

  width: 5px; height: 5px;

  border-right: 0.5px solid var(--gold); border-top: 0.5px solid var(--gold);

  transform: rotate(45deg);

}

.producto-card:hover .card-link-arrow { width: 28px; }



/* ─── BANNER STATS ─── */

#banner-mid {

  position: relative; height: clamp(260px, 40vh, 340px); overflow: hidden;

}

.banner-bg {

  position: absolute; inset: 0;

  background-image: url("img/lifestyle-banner.webp");

  background-size: cover; background-position: center;

  filter: brightness(0.38) contrast(1.25) saturate(0.50);

}

.banner-overlay { position: absolute; inset: 0; background: rgba(8,7,5,0.72); }

.banner-content {

  position: relative; z-index: 2; height: 100%;

  display: flex; flex-direction: column;

  align-items: center; justify-content: center;

  text-align: center; padding: 2rem clamp(1.5rem, 5vw, 4rem);

  gap: 0.6rem;

}

.banner-title {

  font-family: 'Playfair Display', serif;

  font-size: clamp(1.8rem, 4vw, 2.8rem);

  font-weight: 400; color: var(--cream); line-height: 1.15;

}

.banner-title em { font-style: italic; color: var(--gold-light); }

.banner-sub {

  font-size: 9px; font-weight: 300; letter-spacing: 0.20em;

  text-transform: uppercase; color: var(--cream-dim); margin-bottom: 0.8rem;

}

.banner-stats {

  display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 1rem;

  flex-wrap: wrap; justify-content: center;

}

.stat-item { text-align: center; }

.stat-num {

  font-family: 'Playfair Display', serif;

  font-size: clamp(1.8rem, 4vw, 2.4rem);

  font-weight: 400; color: var(--gold-light); line-height: 1; display: block;

}

.stat-label {

  font-size: 8px; letter-spacing: 0.20em; text-transform: uppercase;

  color: var(--cream-dim); margin-top: 5px; display: block;

}

.stat-sep { width: 0.5px; height: 36px; background: var(--border-gold); }

@media (max-width: 480px) { .stat-sep { display: none; } }



/* ─── ESPECIFICACIONES ─── */

#especificaciones {

  padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);

  background: var(--black-soft);

}

.spec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 768px) {
  .spec-inner {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }
}

.spec-image-wrap {
  position: sticky;
  top: 88px;
  aspect-ratio: 3/4;
}

.spec-image {

  width: 100%; height: 100%; object-fit: cover;

  filter: brightness(0.75) contrast(1.18) saturate(0.65);

  border-radius: 2px;

}

.spec-image-frame {

  position: absolute; top: -10px; right: -10px; bottom: 10px; left: 10px;

  border: 0.5px solid var(--border-gold); border-radius: 2px; pointer-events: none;

}

@media (max-width: 768px) { .spec-image-frame { display: none; } }

.spec-image-label {

  position: absolute; bottom: -1.4rem; left: 0;

  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dim);

}

.spec-intro {

  font-size: 11px; font-weight: 300; letter-spacing: 0.08em;

  color: var(--cream-dim); line-height: 1.9; margin-bottom: 2rem;

}

.spec-table { width: 100%; border-collapse: collapse; }

.spec-row {

  border-bottom: 0.5px solid var(--border);

  display: grid; grid-template-columns: 1fr 1fr;

}

.spec-row:first-child { border-top: 0.5px solid var(--border); }

.spec-key, .spec-val { padding: 13px 0; font-size: 10px; letter-spacing: 0.08em; }

.spec-key { font-weight: 300; color: var(--cream-dim); text-transform: uppercase; font-size: 9px; letter-spacing: 0.14em; }

.spec-val { font-family: 'Playfair Display', serif; font-size: 11px; color: var(--cream); font-weight: 400; }

.sizes-display { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.size-pill {

  border: 0.5px solid var(--border-gold); padding: 10px 16px;

  border-radius: 2px; text-align: center;

  transition: all 0.3s ease; position: relative; overflow: hidden;

}

.size-pill::before {

  content: ''; position: absolute; inset: 0;

  background: var(--gold-glow); transform: scaleX(0);

  transform-origin: left; transition: transform 0.3s ease;

}

.size-pill:hover::before { transform: scaleX(1); }

.size-pill:hover { border-color: var(--gold); }

.size-pill-num {

  font-family: 'Playfair Display', serif;

  font-size: 1.25rem; color: var(--gold-light); display: block; line-height: 1;

}

.size-pill-label {

  font-size: 7.5px; letter-spacing: 0.16em; text-transform: uppercase;

  color: var(--cream-dim); display: block; margin-top: 4px;

}

.size-pill.featured { border-color: var(--gold); background: var(--gold-glow); }

.size-pill.active { border-color: var(--gold); background: var(--gold-glow); cursor: pointer; }

.size-pill { cursor: pointer; }

.size-pill-badge {

  font-size: 6.5px; letter-spacing: 0.14em; text-transform: uppercase;

  color: var(--gold); display: block; margin-top: 3px;

}



/* ─── TESTIMONIOS ─── */

#testimonios {

  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem);

  background: var(--black);

}

.testimonios-header { margin-bottom: clamp(2.5rem, 5vh, 4rem); }

.testimonios-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1px;

}

@media (max-width: 768px) {

  .testimonios-grid { grid-template-columns: 1fr; gap: 1px; }

}

.testimonio {

  background: var(--black-card);

  border: 0.5px solid var(--border);

  padding: clamp(1.5rem, 3vw, 2.2rem);

  position: relative; transition: border-color 0.3s, transform 0.3s;

}

.testimonio:hover { border-color: var(--border-gold); transform: translateY(-3px); }

.testimonio::before {

  content: ''; position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);

  opacity: 0; transition: opacity 0.3s;

}

.testimonio:hover::before { opacity: 1; }

.quote-mark {

  font-family: 'Playfair Display', serif;

  font-size: 3.5rem; line-height: 0.8;

  color: var(--gold-dim); margin-bottom: 1rem; display: block;

}

.testimonio-text {

  font-family: 'Cormorant Garamond', serif;

  font-size: 1.05rem; font-weight: 300; font-style: italic;

  color: var(--cream); line-height: 1.72; margin-bottom: 1.4rem;

}

.testimonio-author { display: flex; align-items: center; gap: 12px; }

.author-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-dim); flex-shrink: 0; }

.author-name {

  font-size: 9px; font-weight: 500; letter-spacing: 0.18em;

  text-transform: uppercase; color: var(--cream-dim);

}

.author-location {

  font-size: 8px; font-weight: 300; letter-spacing: 0.14em;

  color: rgba(237,232,223,0.28); margin-top: 2px;

}

.stars { margin-bottom: 1rem; display: flex; gap: 3px; }

.star { color: var(--gold); font-size: 10px; }



/* ─── CONTACTO ─── */

#contacto {

  padding: clamp(4rem, 8vh, 8rem) clamp(1.5rem, 5vw, 4rem);

  background: var(--black-mid);

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(3rem, 6vw, 6rem);

  align-items: start;

}

@media (max-width: 768px) {

  #contacto { grid-template-columns: 1fr; }

  .contacto-visual { display: none; }

}

.contacto-title {

  font-family: 'Playfair Display', serif;

  font-size: clamp(2rem, 4.5vw, 3.4rem);

  font-weight: 400; line-height: 1.1; color: var(--cream); margin-bottom: 1.2rem;

}

.contacto-title em { font-style: italic; color: var(--gold-light); }

.contacto-sub {

  font-size: 11px; font-weight: 300; letter-spacing: 0.08em;

  color: var(--cream-dim); line-height: 1.9; margin-bottom: 2.2rem;

}

.contacto-actions { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }

.btn-whatsapp {

  display: inline-flex; align-items: center; gap: 11px;

  font-size: 10px; font-weight: 600; letter-spacing: 0.20em;

  text-transform: uppercase; color: var(--black);

  background: var(--green); padding: 15px 26px; border-radius: 2px;

  text-decoration: none; width: fit-content; transition: all 0.3s ease;

}

.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.22); }

.btn-whatsapp svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-instagram {

  display: inline-flex; align-items: center; gap: 11px;

  font-size: 10px; font-weight: 400; letter-spacing: 0.20em;

  text-transform: uppercase; color: var(--cream-dim);

  border: 0.5px solid var(--border); padding: 15px 26px; border-radius: 2px;

  text-decoration: none; width: fit-content; transition: all 0.3s ease;

}

.btn-instagram:hover { border-color: var(--border-gold); color: var(--cream); }

.btn-instagram svg { width: 16px; height: 16px; flex-shrink: 0; }

.info-row {

  display: flex; align-items: flex-start; gap: 14px;

  padding: 13px 0; border-bottom: 0.5px solid var(--border);

}

.info-row:first-child { border-top: 0.5px solid var(--border); }

.info-icon { color: var(--gold); font-size: 11px; margin-top: 1px; flex-shrink: 0; }

.info-label {

  font-size: 8px; letter-spacing: 0.20em; text-transform: uppercase;

  color: var(--gold); display: block; margin-bottom: 3px;

}

.info-value {

  font-size: 10.5px; font-weight: 300; letter-spacing: 0.05em; color: var(--cream-dim);

}

.info-value strong { color: var(--cream); font-weight: 400; }



/* Pasarela de pagos */

.pagos-section { margin-top: 2rem; }

.pagos-title {

  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;

  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;

  display: flex; align-items: center; gap: 10px;

}

.pagos-title::before { content: ''; width: 18px; height: 0.5px; background: var(--gold-dim); }

.pagos-grid {

  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;

}

.pago-item {

  background: rgba(237,232,223,0.04);

  border: 0.5px solid var(--border);

  border-radius: 2px; padding: 10px 14px;

  display: flex; align-items: center; gap: 10px;

  transition: border-color 0.25s;

}

.pago-item:hover { border-color: var(--border-gold); }

.pago-icon { font-size: 16px; flex-shrink: 0; }

.pago-info { }

.pago-name {

  font-size: 9.5px; font-weight: 400; color: var(--cream);

  letter-spacing: 0.06em; display: block;

}

.pago-detail {

  font-size: 8px; font-weight: 300; letter-spacing: 0.10em;

  color: var(--cream-dim); display: block; margin-top: 2px;

}

.pago-highlight { color: var(--gold); }



/* Visual */

.contacto-visual { position: relative; }

.contacto-img-wrap { position: relative; aspect-ratio: 3/4; }

.contacto-img {

  width: 100%; height: 100%; object-fit: cover;

  filter: brightness(0.72) contrast(1.10) saturate(0.82); border-radius: 2px;

}

.contacto-img-frame {

  position: absolute; top: 14px; left: -14px; right: 14px; bottom: -14px;

  border: 0.5px solid var(--border-gold); border-radius: 2px;

  pointer-events: none; z-index: -1;

}

.contacto-badge {

  position: absolute; bottom: -0.8rem; right: -0.8rem;

  background: var(--gold); color: var(--black);

  padding: 1rem 1.3rem; border-radius: 2px; z-index: 2;

}

.badge-num {

  font-family: 'Playfair Display', serif;

  font-size: 1.9rem; font-weight: 400; line-height: 1; display: block;

}

.badge-label {

  font-size: 7.5px; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-top: 3px;

}



/* ─── FOOTER ─── */

footer {

  background: var(--black); border-top: 0.5px solid var(--border);

  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);

  display: flex; flex-wrap: wrap;

  align-items: center; justify-content: space-between; gap: 1.2rem;

}

.footer-logo {

  font-family: 'Playfair Display', serif;

  font-size: 1.1rem; color: var(--cream-dim); letter-spacing: 0.12em;

}

.footer-logo span { color: var(--gold); font-style: italic; }

.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }

.footer-links a {

  font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase;

  color: rgba(237,232,223,0.28); text-decoration: none; transition: color 0.25s;

}

.footer-links a:hover { color: var(--gold); }

.footer-copy {

  font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase;

  color: rgba(237,232,223,0.20);

}



/* ─── REVEAL ─── */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.10s; }

.reveal-delay-2 { transition-delay: 0.20s; }

.reveal-delay-3 { transition-delay: 0.30s; }



/* ─── FLOATING WA BUTTON (mobile) ─── */

.wa-float {

  display: none;

  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;

  width: 52px; height: 52px; border-radius: 50%;

  background: var(--green);

  align-items: center; justify-content: center;

  box-shadow: 0 4px 20px rgba(37,211,102,0.35);

  text-decoration: none; transition: transform 0.3s ease;

}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg { width: 24px; height: 24px; fill: white; }

@media (max-width: 768px) { .wa-float { display: flex; } }



/* ─── KEYFRAMES ─── */

@keyframes fadeUp {

  from { opacity: 0; transform: translateY(18px); }

  to   { opacity: 1; transform: translateY(0); }

}



/* ─── TABLA DE PRECIOS ─── */

.precio-table {

  margin-top: 2rem;

}

.precio-table-inner {

  border: 0.5px solid var(--border-gold);

  border-radius: 4px;

  overflow: hidden;

}

.precio-table-header,
.precio-table-row {

  display: grid;

  grid-template-columns: 80px repeat(3, 1fr);

}

.precio-table-header {

  background: rgba(200,146,74,0.07);

  border-bottom: 0.5px solid var(--border-gold);

  padding: 0.6rem 1rem;

}

.precio-col-name {

  font-family: 'Montserrat', sans-serif;

  font-size: 0.62rem;

  font-weight: 500;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: var(--gold);

  text-align: center;

}

.precio-table-row {

  padding: 0.75rem 1rem;

  border-bottom: 0.5px solid var(--border);

  transition: background 0.25s;

}

.precio-table-row:last-child { border-bottom: none; }

.precio-table-row.active,
.precio-table-row:hover {

  background: rgba(200,146,74,0.06);

}

.precio-col-label {

  font-family: 'Montserrat', sans-serif;

  font-size: 0.68rem;

  font-weight: 500;

  letter-spacing: 0.08em;

  color: var(--cream-dim);

  display: flex;

  align-items: center;

}

.precio-col-val {

  font-family: 'Cormorant Garamond', serif;

  font-size: 1rem;

  font-weight: 400;

  color: var(--cream);

  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;

}

.precio-na {

  color: rgba(237,232,223,0.2);

  font-size: 0.9rem;

}

.precio-financiacion {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  margin-top: 0.9rem;

  padding: 0 0.25rem;

  flex-wrap: wrap;

}

.financiacion-item {

  display: flex;

  align-items: center;

  gap: 0.4rem;

  font-family: 'Montserrat', sans-serif;

  font-size: 0.68rem;

  font-weight: 300;

  letter-spacing: 0.04em;

  color: var(--cream-dim);

}

.financiacion-item svg { stroke: var(--gold); flex-shrink: 0; }

.financiacion-sep {

  color: var(--border-gold);

  font-size: 0.8rem;

}



/* ─── RENDER CTA ─── */

.render-cta {

  display: flex;

  align-items: center;

  gap: 1rem;

  margin-top: 1.25rem;

  padding: 0.9rem 1.1rem;

  border: 0.5px solid var(--border-gold);

  border-radius: 4px;

  background: rgba(200,146,74,0.04);

  text-decoration: none;

  transition: background 0.25s, border-color 0.25s;

  cursor: pointer;

}

.render-cta:hover {

  background: rgba(200,146,74,0.09);

  border-color: rgba(200,146,74,0.45);

}

.render-cta-icon {

  flex-shrink: 0;

  width: 36px;

  height: 36px;

  border-radius: 50%;

  border: 0.5px solid var(--border-gold);

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gold);

}

.render-cta-body {

  display: flex;

  flex-direction: column;

  gap: 0.2rem;

  flex: 1;

}

.render-cta-title {

  font-family: 'Montserrat', sans-serif;

  font-size: 0.78rem;

  font-weight: 500;

  color: var(--cream);

  letter-spacing: 0.02em;

}

.render-cta-sub {

  font-family: 'Montserrat', sans-serif;

  font-size: 0.63rem;

  font-weight: 300;

  color: var(--cream-dim);

  letter-spacing: 0.04em;

}

.render-cta-btn {

  flex-shrink: 0;

  font-family: 'Montserrat', sans-serif;

  font-size: 0.62rem;

  font-weight: 500;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--gold);

  border: 0.5px solid var(--gold-dim);

  padding: 0.4rem 0.8rem;

  border-radius: 2px;

  white-space: nowrap;

  transition: background 0.2s, color 0.2s;

}

.render-cta:hover .render-cta-btn {

  background: var(--gold);

  color: var(--black);

}

@media (max-width: 600px) {

  .precio-table-header,
  .precio-table-row { grid-template-columns: 60px repeat(3, 1fr); padding: 0.6rem 0.5rem; }

  .precio-col-name { font-size: 0.55rem; }

  .precio-col-val { font-size: 0.85rem; }

  .render-cta { flex-wrap: wrap; }

  .render-cta-btn { width: 100%; text-align: center; padding: 0.5rem; }

}

/* ═══════════════════════════════════════════════════════
   MEJORA 1 — Selector de modelo + precio dinámico
═══════════════════════════════════════════════════════ */

/* Model selector buttons */
.model-selector {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.model-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  border: 0.5px solid var(--border);
  padding: 9px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.model-btn:hover {
  border-color: var(--border-gold);
  color: var(--cream);
}

.model-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Size pill disabled state */
.size-pill.disabled {
  opacity: 0.28;
  pointer-events: none;
  cursor: not-allowed;
}

/* Precio display */
.precio-display {
  margin-top: 1.6rem;
  padding: 1.4rem 1.6rem;
  border: 0.5px solid var(--border);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
  min-height: 80px;
  display: flex;
  align-items: center;
}

/* Precio prompt — horizontal banner elegante */
.precio-prompt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border: 0.5px solid var(--border-gold);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(200,146,74,0.08) 0%, rgba(200,146,74,0.02) 100%);
  width: 100%;
}

.precio-prompt-pulse {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  animation: pricePulse 2s ease-in-out infinite;
}

.precio-prompt-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  animation: pricePulseRing 2s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

@keyframes pricePulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.precio-prompt-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.precio-prompt-text em {
  font-style: italic;
  color: var(--gold-light);
}
.precio-result {
  width: 100%;
}

.precio-result-amount {
  display: block;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  line-height: 1;
}

.precio-financiacion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.financiacion-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.financiacion-sep {
  font-size: 0.7rem;
  color: var(--border);
}

/* ═══════════════════════════════════════════════════════
   MEJORA 2 — Carrusel de testimonios
═══════════════════════════════════════════════════════ */

#testimonios {
  overflow: hidden;
}

.testimonios-carousel {
  width: 100%;
  position: relative;
}

.testimonios-track {
  display: flex;
  gap: 1.6rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonios-track .testimonio {
  flex: 0 0 calc((100% - 3.2rem) / 3);
  min-width: 0;
  /* reset reveal classes for carousel items */
  opacity: 1 !important;
  transform: none !important;
}

.testimonios-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.tc-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  background: transparent;
  border: 0.5px solid var(--border-gold);
  width: 38px;
  height: 38px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, color 0.22s;
  flex-shrink: 0;
}

.tc-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.tc-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.tc-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .testimonios-track .testimonio {
    flex: 0 0 100%;
  }

  .testimonios-track {
    gap: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   MEJORA 3 — Instagram gradient button
═══════════════════════════════════════════════════════ */

.btn-instagram {
  background: linear-gradient(135deg,
    #405DE6, #5851DB, #833AB4, #C13584,
    #E1306C, #FD1D1D, #F56040, #F77737,
    #FCAF45, #FFDC80) !important;
  border-color: transparent !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.btn-instagram:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 53, 132, 0.30);
  border-color: transparent !important;
  color: #fff !important;
}


/*/* ═══════════════════════════════════════════════════════
   SECCIÓN: LA MARCA
═══════════════════════════════════════════════════════ */

#marca {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}

#marca::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, var(--gold-glow), transparent);
  pointer-events: none;
}

.marca-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.marca-header { max-width: 720px; }

.marca-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-top: 1.4rem;
}

/* Pillars — horizontal grid */
.marca-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 760px) {
  .marca-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.pilar {
  padding: 1.8rem 1.6rem;
  border: 0.5px solid var(--border);
  border-top: 2px solid var(--gold-dim);
  background: var(--gold-glow);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: border-top-color 0.3s, background 0.3s;
}

.pilar:hover {
  border-top-color: var(--gold);
  background: rgba(200,146,74,0.07);
}

.pilar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.pilar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

.pilar-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-dim);
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN: FAQ (Acordeón)
═══════════════════════════════════════════════════════ */

#faq {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  background: var(--black-soft);
  position: relative;
}

#faq::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, var(--gold-glow), transparent);
  pointer-events: none;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.faq-header {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 0.5px solid var(--border);
}

.faq-item:first-child {
  border-top: 0.5px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.25s;
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-question[aria-expanded="true"] {
  color: var(--gold-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 0.5px solid var(--border-gold);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.35s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.35s, opacity 0.35s;
}

.faq-icon::before {
  width: 8px; height: 0.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 0.5px; height: 8px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
}

.faq-answer p strong {
  font-weight: 500;
  color: var(--cream);
}



/* ═══════════════════════════════════════════════════════
   FOOTER PROFESIONAL (reemplaza footer anterior)
═══════════════════════════════════════════════════════ */

#footer {
  background: var(--black-mid);
  border-top: 0.5px solid var(--border);
  position: relative;
}

#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  pointer-events: none;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 5rem);
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.25s;
}

.footer-logo span { color: var(--gold); font-style: italic; }
.footer-logo:hover { color: var(--gold-light); }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream-dim);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream-dim);
  transition: color 0.25s;
}

.footer-social-link:hover { color: var(--gold-light); }

.footer-social-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.footer-social-link:hover svg { opacity: 1; }

.footer-social-link span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.2rem;
}

#footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

#footer .footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(237,232,223,0.45);
  text-decoration: none;
  transition: color 0.22s;
}

#footer .footer-links a:hover { color: var(--gold-light); }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-email,
.footer-whatsapp {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.22s;
}

.footer-email:hover,
.footer-whatsapp:hover { color: var(--gold-light); }

.footer-address {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(237,232,223,0.28);
  margin-top: 0.2rem;
}

.footer-material-badge {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 0.5px solid var(--border-gold);
  border-radius: 2px;
  background: var(--gold-glow);
  width: fit-content;
}

.footer-material-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.35);
}

.footer-material-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.20);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.28);
  text-decoration: none;
  transition: color 0.22s;
}

.footer-legal a:hover { color: var(--gold-dim); }

.footer-legal-sep {
  font-size: 10px;
  color: rgba(237,232,223,0.15);
}



/* ═══════════════════════════════════════════════════════
   MOBILE OPTIMIZACIÓN COMPLETA
   Breakpoints: 768px (tablet) · 480px (phone) · 360px (small phone)
═══════════════════════════════════════════════════════ */

/* ── GLOBAL mobile ── */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
    line-height: 1.15;
  }

  .section-label-text {
    font-size: 8px;
    letter-spacing: 0.22em;
  }

  .divider { margin: 0; }
}

/* ── NAV mobile ── */
@media (max-width: 480px) {
  nav {
    padding: 0 1.2rem;
    height: 60px;
  }

  .nav-logo { font-size: 1.15rem; }

  .nav-cta {
    font-size: 8px;
    padding: 0.45rem 0.9rem;
  }
}

/* ── HERO mobile ── */
@media (max-width: 768px) {
  #hero {
    align-items: center;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding: 0 1.4rem 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow { justify-content: center; margin-bottom: 1.1rem; }
  .hero-title { line-height: 1.15; margin-bottom: 1.3rem; }
  .hero-sub { margin-bottom: 2rem; line-height: 1.9; font-size: 0.78rem; }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 320px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.95rem 1rem;
  }

  .hero-overlay-left { display: none; }
}

/* ── CATÁLOGO mobile ── */
@media (max-width: 768px) {
  #catalogo {
    padding: 3.5rem 1.2rem 3rem;
  }

  .catalogo-header {
    flex-direction: column;
    gap: 1rem;
  }

  .catalogo-intro {
    font-size: 0.78rem;
    line-height: 1.75;
  }
}

/* ── BANNER STATS mobile ── */
@media (max-width: 480px) {
  #banner-mid { padding: 3.5rem 1.4rem; }

  .banner-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-around;
    align-items: center;
  }

  .stat-sep { display: block; }

  .stat-num { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  .stat-label { font-size: 7px; letter-spacing: 0.14em; }
}

/* ── ESPECIFICACIONES mobile ── */
@media (max-width: 768px) {
  #especificaciones {
    padding: 3rem 1.2rem;
  }

  /* Imagen estática (sin sticky) — aparece debajo del texto en móvil */
  .spec-image-wrap {
    position: relative !important;
    top: auto !important;
    aspect-ratio: 16/9 !important;
    max-height: 260px;
    margin-bottom: 0.5rem;
    order: 2;
  }
  .spec-inner > div:not(.spec-image-wrap) { order: 1; }

  .spec-image-label {
    bottom: -1.6rem;
    font-size: 7px;
  }

  .spec-intro {
    font-size: 0.75rem;
    margin-bottom: 1.4rem;
  }

  /* Model selector — full width pills */
  .model-selector {
    gap: 0.4rem;
    margin-top: 1.4rem;
    margin-bottom: 1rem;
  }

  .model-btn {
    flex: 1;
    font-size: 0.58rem;
    padding: 8px 10px;
    text-align: center;
  }

  /* Size pills — stacked row */
  .sizes-display {
    gap: 0.5rem;
  }

  .size-pill {
    flex: 1;
    min-width: 0;
    padding: 0.8rem 0.5rem;
  }

  .size-pill-num { font-size: 1.4rem; }

  .size-pill-label { font-size: 0.5rem; letter-spacing: 0.05em; }

  .size-pill-badge {
    font-size: 0.45rem;
    padding: 0.2rem 0.4rem;
  }

  /* Precio prompt */
  .precio-display { margin-top: 1.2rem; }

  .precio-prompt {
    padding: 1rem 1rem;
    gap: 0.7rem;
  }

  .precio-prompt-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .precio-result-amount {
    font-size: 1.8rem !important;
  }

  /* Render CTA */
  .render-cta {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.8rem 0.9rem;
  }

  .render-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── TESTIMONIOS mobile ── */
@media (max-width: 768px) {
  #testimonios {
    padding: 3.5rem 1.2rem;
  }

  .testimonio {
    padding: 1.4rem 1.2rem;
  }

  .testimonio-text {
    font-size: 0.8rem;
    line-height: 1.75;
  }

  .testimonios-controls {
    margin-top: 1.6rem;
  }
}

/* ── CONTACTO mobile ── */
@media (max-width: 768px) {
  #contacto {
    padding: 3.5rem 1.2rem;
  }

  .contacto-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
  }

  .contacto-sub {
    font-size: 0.78rem;
    line-height: 1.75;
  }

  .contacto-actions {
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
  }

  .btn-whatsapp,
  .btn-instagram {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-size: 0.65rem;
  }

  .info-row {
    gap: 0.7rem;
    padding: 0.9rem 0;
  }

  .info-label {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .info-value {
    font-size: 0.72rem;
    line-height: 1.7;
  }
}

/* ── LA MARCA mobile ── */
@media (max-width: 768px) {
  #marca {
    padding: 3.5rem 1.2rem;
  }

  .marca-lead {
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .pilar {
    padding: 1.4rem 1.2rem;
  }

  .pilar-num { font-size: 1.6rem; }

  .pilar-title { font-size: 0.62rem; }

  .pilar-text { font-size: 0.7rem; }
}

/* ── FAQ mobile ── */
@media (max-width: 768px) {
  #faq {
    padding: 3.5rem 1.2rem;
  }

  .faq-question {
    font-size: 0.78rem;
    padding: 1.2rem 0;
    gap: 1rem;
    line-height: 1.5;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }

  .faq-answer p {
    font-size: 0.75rem;
    line-height: 1.8;
  }
}

/* ── FOOTER mobile ── */
@media (max-width: 768px) {
  .footer-top {
    padding: 2.8rem 1.4rem;
    gap: 2rem;
  }

  .footer-tagline { font-size: 0.85rem; }

  .footer-social-link span {
    font-size: 0.6rem;
  }

  .footer-bottom {
    padding: 1.2rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ── FLOATING WA BUTTON position ── */
@media (max-width: 480px) {
  .wa-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
  }
}

/* ── SMALL PHONES (360px) ── */
@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem) !important;
  }

  .nav-logo { font-size: 1rem; }

  .model-btn { padding: 7px 7px; font-size: 0.54rem; }

  .size-pill-num { font-size: 1.2rem; }

  .footer-legal {
    flex-direction: column;
    gap: 0.3rem;
  }
}

