/*
Theme Name: Rentaloya
Theme URI: https://www.rentaloya.cl
Author: Rentaloya
Description: Theme a medida para rentaloya.cl — hospedaje de corta estadia en Santiago y Valparaiso.
Version: 1.0
Text Domain: rentaloya
*/

/* ============================================================
   RENTALOYA.CL — STYLESHEET
   Paleta nueva identidad de marca:
   Coral #FF5C35 · Verde #00C271 · Marino #1A2E44 · Blanco cálido #FAFAF8
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {

  /* — Verde: disponibilidad, acción positiva, WhatsApp — */
  --verde-vivo:    #00C271;
  --verde-hover:   #00A85F;
  --verde-suave:   #E0F7EE;
  --verde-texto:   #006E3F;

  /* — Coral: urgencia amigable, CTA principal — */
  --naranja-vivo:  #FF5C35;
  --naranja-hover: #E84820;
  --naranja-suave: #FFF0EC;
  --naranja-texto: #C03418;

  /* — Marino: credibilidad, fondos oscuros — */
  --azul-marino:   #1A2E44;
  --azul-medio:    #243D57;
  --azul-suave:    #2E4E6C;
  --azul-muted:    #6B7E91;

  /* — Fondos cálidos — */
  --crema:         #FAFAF8;
  --crema-oscuro:  #F0EDE8;
  --crema-zona:    #E2DDD7;
  --crema-texto:   #1A2E44;
  --crema-muted:   #6B7E91;

  /* — Neutros — */
  --blanco:        #FFFFFF;
  --gris-borde:    #C8D4DF;
  --negro-suave:   #0D1B29;

  /* — Tipografía — */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* — Espaciado — */
  --section-v:   100px;
  --container:   1160px;

  /* — Forma — */
  --radius:      6px;
  --radius-lg:   14px;
  --radius-pill: 100px;

  /* — Sombras — */
  --shadow-sm:   0 2px 12px rgba(26,46,68,0.10);
  --shadow-md:   0 6px 28px rgba(26,46,68,0.16);
  --shadow-lg:   0 16px 56px rgba(26,46,68,0.24);
  --shadow-naranja: 0 8px 28px rgba(255,92,53,0.24);
  --shadow-verde:   0 8px 28px rgba(0,194,113,0.28);

  /* — Transición — */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      0.18s var(--ease);
  --t-med:       0.32s var(--ease);
  --t-slow:      0.55s var(--ease);
}


/* ============================================================
   2. RESET Y BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--crema-texto);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
}


/* ============================================================
   3. UTILIDADES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-v) 0;
}

.section--dark {
  background: var(--blanco);
  color: var(--blanco);
}

.section--zona {
  background: var(--crema-zona);
  color: var(--crema-texto);
}

.section--crema {
  background: var(--crema);
}

.section--crema-oscuro {
  background: var(--crema-oscuro);
}

/* Eyebrow — etiqueta pequeña sobre títulos */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-vivo);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--verde-vivo);
  flex-shrink: 0;
}

/* Títulos de sección */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--blanco);
}

.section--crema .section-title,
.section--crema-oscuro .section-title,
.section--zona .section-title {
  color: var(--crema-texto);
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--naranja-vivo);
}

.section-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--azul-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

.section--crema .section-lead,
.section--crema-oscuro .section-lead,
.section--zona .section-lead {
  color: var(--crema-muted);
}


/* ============================================================
   4. BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-med);
  white-space: nowrap;
  line-height: 1;
}

/* Naranja — CTA principal */
.btn--primary {
  background: var(--naranja-vivo);
  color: var(--blanco);
  border-color: var(--naranja-vivo);
}

.btn--primary:hover {
  background: var(--naranja-hover);
  border-color: var(--naranja-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-naranja);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Verde — WhatsApp / disponibilidad */
.btn--wsp {
  background: var(--verde-vivo);
  color: var(--blanco);
  border-color: var(--verde-vivo);
}

.btn--wsp:hover {
  background: var(--verde-hover);
  border-color: var(--verde-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-verde);
}

/* Outline claro — sobre fondos oscuros */
.btn--outline {
  background: transparent;
  /**color: var(--naranja-suave);
  border-color: rgba(255,255,255,0.3);**/
  color: var(--azul-marino);
  border-color: var(--azul-marino);
}

.btn--outline:hover {
  border-color: var(--azul-suave);
  color: var(--azul-muted);
  transform: translateY(-2px);
}

/* Outline oscuro — sobre fondos claros */
.btn--outline-dark {
  background: transparent;
  color: var(--azul-marino);
  border-color: var(--azul-marino);
}

.btn--outline-dark:hover {
  background: var(--blanco);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* Tamaños */
.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}


/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  justify-content: space-between;
  background: var(--blanco);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 194, 113, 0.15);
  transition: background var(--t-med), border-color var(--t-med);
}

.navbar.scrolled {
  background: var(--blanco);
  border-bottom-color: rgba(0, 194, 113, 0.25);
}

/* Logo */
.navbar__logo {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.navbar__logo .logo-rental { color: var(--azul-marino); font-weight: 700; }
.navbar__logo .logo-ya     { color: var(--naranja-vivo); font-weight: 700; }
.navbar__logo .logo-tld    { color: var(--naranja-vivo); font-style: italic; font-weight: 400; }

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  /**text-transform: uppercase;**/
  color: var(--azul-medio);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--t-fast), background var(--t-fast);
}

.navbar__nav a:hover {
  color: var(--verde-vivo);
  background: rgba(0,194,113,0.08);
}

/* CTA en navbar */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--verde-vivo);
  color: var(--blanco) !important;
  font-size: 0.82rem !important;
  font-weight: 500;
  letter-spacing: 0 !important;
  text-transform: none !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast) !important;
}

.navbar__cta:hover {
  background: var(--verde-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-verde) !important;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: var(--t-med);
}

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


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--crema-oscuro);
  padding-top: 68px;
}

/* Capas de fondo */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 85% 35%, rgba(0,194,113,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 5%  75%, rgba(255,92,53,0.05)  0%, transparent 65%),
    linear-gradient(145deg, #F0EDE8 0%, #EDE8E2 55%, #F0EDE8 100%);
}

/* Grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px;
}

/* Panel diagonal derecho */
.hero__panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(145deg, transparent 30%, rgba(0,194,113,0.04) 100%);
  border-left: 1px solid rgba(0,194,113,0.1);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Línea decorativa horizontal */
.hero__divider {
  position: absolute;
  bottom: 120px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,194,113,0.15) 30%, rgba(0,194,113,0.15) 70%, transparent);
}

/* Contenido */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 60px 0 160px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-vivo);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--verde-vivo);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--crema-texto);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--naranja-vivo);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: var(--crema-muted);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.7s 0.45s forwards;
}

.hero__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(61, 53, 48, 0.70);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s 0.58s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.72s forwards;
}

/* Stats */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid rgba(0,194,113,0.12);
  opacity: 0;
  animation: fadeUp 0.7s 0.9s forwards;
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: true;
}

.hero__stat {
  padding: 28px 32px;
  border-right: 1px solid rgba(0,194,113,0.1);
}

.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--verde-vivo);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--crema-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}


/* ============================================================
   7. CARDS DE ZONA
   ============================================================ */
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.zona-card {
  background: var(--azul-medio);
  border: 1px solid rgba(127,163,190,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--t-med),
    box-shadow var(--t-med),
    border-color var(--t-med);
}

.zona-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(26,46,68,0.4), 0 0 0 1px rgba(255,92,53,0.25);
  border-color: rgba(255,92,53,0.35);
}

/* Mapa SVG */
.zona-card__map {
  height: 176px;
  background: var(--azul-suave);
  position: relative;
  overflow: hidden;
}

.zona-card__map svg {
  width: 100%;
  height: 100%;
}

/* Badge de unidades */
.zona-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--verde-vivo);
  color: var(--negro-suave);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

/* Body de la card */
.zona-card__body {
  padding: 22px 22px 24px;
}

.zona-card__region {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-vivo);
  margin-bottom: 6px;
}

.zona-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blanco);
  line-height: 1.25;
  margin-bottom: 10px;
}

.zona-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--azul-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* POIs */
.zona-card__pois {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}

.poi-tag {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(127,163,190,0.9);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(127,163,190,0.15);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Ratings */
.zona-card__ratings {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: center;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  color: var(--azul-muted);
}

.rating-badge__score {
  font-weight: 600;
  color: var(--blanco);
}

.rating-badge__icon {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* CTA de la card */
.zona-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(127,163,190,0.1);
}

.zona-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--naranja-vivo);
  transition: gap var(--t-fast), color var(--t-fast);
}

.zona-card:hover .zona-card__link {
  gap: 13px;
  color: var(--naranja-hover);
}

.zona-card__airbnb-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: rgba(127,163,190,0.6);
  font-weight: 400;
}

.zona-card__airbnb-badge svg {
  opacity: 0.5;
}


/* ============================================================
   8. FEATURES (Por qué elegirnos)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0,194,113,0.08);
  border: 1px solid rgba(0,194,113,0.12);
}

.feature {
  background: var(--crema);
  padding: 44px 36px;
  transition: background var(--t-med);
}

.feature:hover {
  background: var(--crema-oscuro);
}

.feature__icon {
  width: 48px;
  height: 48px;
  background: var(--verde-suave);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--verde-texto);
  transition: background var(--t-med), color var(--t-med);
}

.feature:hover .feature__icon {
  background: var(--verde-vivo);
  color: var(--blanco);
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--crema-texto);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--crema-muted);
  line-height: 1.75;
}


/* ============================================================
   9. FAQ
   ============================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gris-borde);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--crema-texto);
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--naranja-vivo); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--verde-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-texto);
  margin-top: 1px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-med);
}

.faq-item.open .faq-icon {
  background: var(--naranja-vivo);
  color: var(--blanco);
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  padding: 0 0 22px 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--crema-muted);
  line-height: 1.8;
}


/* ============================================================
   10. SECCIÓN CTA FINAL
   ============================================================ */
.cta-section {
  background: var(--blanco);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.cta-section__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(0,194,113,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 80% 20%, rgba(255,92,53,0.05) 0%, transparent 60%);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  /**color: var(--blanco);**/
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-section__title em {
  font-style: italic;
  color: var(--verde-vivo);
}

.cta-section__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--azul-muted);
  margin-bottom: 48px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  background: var(--crema);
  color: var(--crema-muted);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.footer__logo .logo-rental { color: var(--azul-marino); font-weight: 700; }
.footer__logo .logo-ya     { color: var(--naranja-vivo); font-weight: 700; }
.footer__logo .logo-tld    { color: var(--naranja-vivo); font-style: italic; font-weight: 400; }

.footer__desc {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--naranja-vivo);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--crema-muted);
  transition: color var(--t-fast);
}

.footer__links a:hover { color: var(--verde-vivo); }

.footer__bottom {
  border-top: 1px solid rgba(61, 53, 48, 0.12);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__copy {
  font-size: 0.78rem;
  font-weight: 300;
}

.footer__legal {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(61, 53, 48, 0.35);
}


/* ============================================================
   12. FLOTANTE WHATSAPP
   ============================================================ */
.wsp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 300;
  width: 56px;
  height: 56px;
  background: var(--verde-vivo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,194,113,0.45);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: pulseWsp 2.8s ease-in-out infinite;
}

.wsp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(0,194,113,0.6);
  animation: none;
}


/* ============================================================
   13. ANIMACIONES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes pulseWsp {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,194,113,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(0,194,113,0.70); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }


/* ============================================================
   14. RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .zonas-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { border-right: none !important; }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(0,194,113,0.1) !important; }
}

/* Mobile grande */
@media (max-width: 768px) {
  :root { --section-v: 64px; }

  .navbar__nav    { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(26, 46, 68, 0.99);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,194,113,0.12);
    backdrop-filter: blur(14px);
  }

  .navbar__nav.open a {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .zonas-grid    { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }

  .hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__content { padding-bottom: 200px; }

  .cta-section { padding: 80px 0; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* Mobile pequeño */
@media (max-width: 480px) {
  :root { --section-v: 56px; }

  .hero__title { font-size: 2.6rem; }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }

  .btn { padding: 12px 20px; font-size: 0.85rem; }
  .btn--lg { padding: 14px 28px; font-size: 0.92rem; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .wsp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }

  .feature { padding: 32px 24px; }
  .zona-card__body { padding: 18px 18px 20px; }
}
