/* ============================================================
   GLEY Nail Designers — Exclusividad en tus manos
   Design System & Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Palette */
  --primary-dark: #233B39;
  --primary-medium: #345650;
  --secondary-gold: #BDB58A;
  --highlight-gold: #DEB77C;
  --white: #FAFAF5;
  --off-white: #F0EDE4;
  --text-body: #D6D2C4;
  --text-dark: #1A1A1A;
  --overlay: rgba(35, 59, 57, 0.85);

  /* Typography */
  --font-heading: 'Oswald', 'Roboto Condensed', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--primary-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility Classes --- */
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.gold-text { color: var(--highlight-gold); }
.sand-text { color: var(--secondary-gold); }

.section-pretitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--secondary-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--highlight-gold);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 680px;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background-color: rgba(35, 59, 57, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 75px; /* Gran presencia inicial */
  width: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}

.nav-logo:hover .brand-logo {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(222, 183, 124, 0.25);
}

/* Reducir tamaño levemente al hacer scroll */
.nav.scrolled .brand-logo {
  height: 55px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-body);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--highlight-gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--highlight-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 12px 28px;
  border: 1.5px solid var(--highlight-gold);
  color: var(--highlight-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-nav:hover {
  background: var(--highlight-gold);
  color: var(--primary-dark);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--highlight-gold);
  transition: all 0.3s var(--ease);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(35, 59, 57, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-body);
}

.nav-mobile-overlay a:hover { color: var(--highlight-gold); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2f2d 50%, var(--primary-medium) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(222, 183, 124, 0.08) 0%, transparent 60%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--secondary-gold);
  border: 1px solid rgba(189, 181, 138, 0.3);
  padding: 8px 20px;
  margin-bottom: 28px;
}

.hero-slogan {
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--highlight-gold);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-slogan strong {
  font-weight: 500;
  font-style: normal;
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 16px 36px;
  background: var(--highlight-gold);
  color: var(--primary-dark);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-primary:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(222, 183, 124, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 28px;
  background: transparent;
  color: var(--highlight-gold);
  border: 1px solid rgba(222, 183, 124, 0.4);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--highlight-gold);
  background: rgba(222, 183, 124, 0.08);
}

.hero-micro {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--secondary-gold);
  margin-top: 20px;
  font-style: italic;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 630px;
  height: 780px;
  border-radius: 8px; /* Elegant subtle rounding */
  box-shadow: 0 15px 40px rgba(0,0,0,0.4); /* Depth to make it pop */
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05); /* Slightly brighter for typical nail photos */
  transition: transform 3s var(--ease);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03); /* Slow subtle zoom on hover for a premium feel */
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(222, 183, 124, 0.4); /* Stronger gold border */
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--primary-dark);
  border: 1px solid rgba(189, 181, 138, 0.3);
  padding: 16px 24px;
  z-index: 3;
}

.hero-image-badge .badge-number {
  font-family: var(--font-accent);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--highlight-gold);
  line-height: 1;
}

.hero-image-badge .badge-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary-gold);
}

/* ============================================================
   PILARES (3-Column Benefits)
   ============================================================ */
.pilares {
  background: var(--primary-medium);
  padding: var(--section-pad) 0;
}

.pilares .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pilar-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid rgba(189, 181, 138, 0.12);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.pilar-card:hover {
  border-color: rgba(222, 183, 124, 0.3);
  transform: translateY(-4px);
}

.pilar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  stroke: var(--highlight-gold);
}

.pilar-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--highlight-gold);
  margin-bottom: 16px;
}

.pilar-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   TUS EXPERIENCIAS (Accordion Menu)
   ============================================================ */
.experiencias {
  background: var(--primary-dark);
  padding: var(--section-pad) 0;
}

.experiencias .section-title {
  text-align: center;
}

.experiencias .section-body {
  text-align: center;
  margin: 0 auto 60px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(189, 181, 138, 0.15);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.accordion-header:hover {
  color: var(--highlight-gold);
}

.accordion-header h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--highlight-gold);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.35s var(--ease);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--secondary-gold);
  transition: transform 0.35s var(--ease);
}

.accordion-icon::before {
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
}

.accordion-icon::after {
  width: 1px;
  height: 20px;
  left: 50%;
  top: 0;
}

.accordion-item.open .accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}

.accordion-item.open .accordion-body {
  max-height: 600px;
  padding-bottom: 24px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(189, 181, 138, 0.06);
}

.service-item:last-child { border-bottom: none; }

.service-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-body);
  max-width: 65%;
}

.service-name small {
  display: block;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(214, 210, 196, 0.6);
  margin-top: 4px;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--highlight-gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.experiencias-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   QUIÉN SOY (About / Authority)
   ============================================================ */
.about {
  background: var(--primary-medium);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 460px;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.02);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(222, 183, 124, 0.15);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: -16px;
  background: var(--primary-dark);
  border: 1px solid rgba(189, 181, 138, 0.25);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.about-badge-icon {
  width: 32px;
  height: 32px;
  stroke: var(--highlight-gold);
}

.about-badge-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-gold);
}

.about-badge-text strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--highlight-gold);
  text-transform: none;
  letter-spacing: 0;
}

.about-content .section-body {
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(189, 181, 138, 0.1);
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  stroke: var(--highlight-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--highlight-gold);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS (Social Proof)
   ============================================================ */
.testimonials {
  background: var(--primary-dark);
  padding: var(--section-pad) 0;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(52, 86, 80, 0.35);
  border: 1px solid rgba(189, 181, 138, 0.1);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(222, 183, 124, 0.25);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 2.4rem;
  color: rgba(222, 183, 124, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-gold);
}

/* ============================================================
   FAQ / OBJECTIONS
   ============================================================ */
.faq {
  background: var(--primary-medium);
  padding: var(--section-pad) 0;
}

.faq .section-title { text-align: center; }
.faq .section-body { text-align: center; margin: 0 auto 50px; }

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

.faq-item {
  border-bottom: 1px solid rgba(189, 181, 138, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-body);
  transition: color 0.3s var(--ease);
}

.faq-question:hover { color: var(--highlight-gold); }

.faq-arrow {
  width: 14px;
  height: 14px;
  stroke: var(--secondary-gold);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

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

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ============================================================
   RESERVA / CTA FINAL
   ============================================================ */
.reserva {
  background: var(--primary-dark);
  padding: var(--section-pad) 0;
  position: relative;
}

.reserva::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--secondary-gold));
}

.reserva .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reserva-content { max-width: 520px; }

.reserva-steps {
  margin: 32px 0;
}

.reserva-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-gold);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--highlight-gold);
}

.step-text h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--highlight-gold);
  margin-bottom: 4px;
}

.step-text p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-body);
}

.reserva-scarcity {
  background: rgba(222, 183, 124, 0.06);
  border-left: 2px solid var(--highlight-gold);
  padding: 16px 20px;
  margin-top: 28px;
}

.reserva-scarcity p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}

.reserva-scarcity strong { color: var(--highlight-gold); }

/* Contact Form */
.reserva-form-wrapper {
  background: rgba(52, 86, 80, 0.3);
  border: 1px solid rgba(189, 181, 138, 0.12);
  padding: 48px 40px;
}

.reserva-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--highlight-gold);
  margin-bottom: 8px;
}

.reserva-form-wrapper > p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(35, 59, 57, 0.6);
  border: 1px solid rgba(189, 181, 138, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color 0.3s var(--ease);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--highlight-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(214, 210, 196, 0.4);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23BDB58A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-form {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 16px;
  background: var(--highlight-gold);
  color: var(--primary-dark);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-form:hover {
  background: var(--secondary-gold);
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a2c2a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(189, 181, 138, 0.08);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-body);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary-gold);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 10px;
}

.footer-links a:hover { color: var(--highlight-gold); }

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(189, 181, 138, 0.15);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--highlight-gold);
  background: rgba(222, 183, 124, 0.08);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(189, 181, 138, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(214, 210, 196, 0.5);
}

.footer-bottom a { color: var(--secondary-gold); }
.footer-bottom a:hover { color: var(--highlight-gold); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ============================================================
   EXIT-INTENT POPUP (Lead Magnet)
   ============================================================ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.popup-overlay.active { display: flex; }

.popup-box {
  background: var(--primary-dark);
  border: 1px solid rgba(189, 181, 138, 0.2);
  max-width: 520px;
  width: 90%;
  padding: 48px 40px;
  position: relative;
  animation: popupIn 0.4s var(--ease);
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.popup-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary-gold);
  transition: stroke 0.3s var(--ease);
}

.popup-close:hover svg { stroke: var(--highlight-gold); }

.popup-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--highlight-gold);
  margin-bottom: 12px;
}

.popup-box > p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.popup-form {
  display: flex;
  gap: 12px;
}

.popup-form input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(52, 86, 80, 0.4);
  border: 1px solid rgba(189, 181, 138, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.popup-form input:focus { border-color: var(--highlight-gold); }

.popup-form button {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 24px;
  background: var(--highlight-gold);
  color: var(--primary-dark);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease);
}

.popup-form button:hover { background: var(--secondary-gold); }

.popup-privacy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(214, 210, 196, 0.4);
  margin-top: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  :root { --section-pad: 72px; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta-group { justify-content: center; }
  .hero-visual { display: none; }

  .pilares-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image { order: -1; }
  .about-image-wrapper { max-width: 360px; margin: 0 auto; }
  .about-badge { left: auto; right: -10px; }
  .about-content .section-body { margin: 0 auto 32px; }
  .about-features { max-width: 440px; margin: 32px auto 0; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .reserva .container { grid-template-columns: 1fr; }
  .reserva-content { max-width: 100%; }
  .reserva-form-wrapper { padding: 36px 28px; }

  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 90vh; }
  .hero .container { padding-top: 100px; }

  .about-features { grid-template-columns: 1fr; }

  .popup-form { flex-direction: column; }

  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
}
