/* ============================================================
   BYE BYE LICE — Design System
   byebyelice.es
   ============================================================
   1.  CSS Custom Properties
   2.  Reset & Base
   3.  Typography
   4.  Layout
   5.  Header & Navigation
   6.  Hero
   7.  Buttons
   8.  Cards
   9.  Sections & Structure
   10. Process Steps
   11. Trust / Stats
   12. Pricing
   13. FAQ Accordion
   14. Blog
   15. Local Landings
   16. Contact
   17. Map
   18. Footer
   19. WhatsApp Floating Button
   20. Cookie Banner
   21. Reveal Animations
   22. Utilities
   23. Responsive
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --c-primary:        #3BBFD4;
  --c-primary-dark:   #2B9FB8;
  --c-primary-deeper: #1D7F96;
  --c-primary-light:  #E5F8FB;
  --c-primary-glow:   rgba(59, 191, 212, 0.18);

  --c-secondary:      #F0ED96;
  --c-secondary-dark: #D9D660;

  --c-whatsapp:       #25D366;
  --c-whatsapp-dark:  #1DA851;

  /* Neutrals */
  --c-white:    #FFFFFF;
  --c-text:     #1C2B3A;
  --c-text-md:  #4A5E72;
  --c-text-sm:  #7A90A4;
  --c-bg:       #FFFFFF;
  --c-surface:  #F5FAFB;
  --c-surface-2:#EEF6F8;
  --c-border:   #D8ECF0;

  /* Typography */
  --font-display: 'Nunito', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  2rem;       /* 32px */
  --text-4xl:  2.5rem;     /* 40px */
  --text-5xl:  3.25rem;    /* 52px */

  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  --fw-normal:    400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;
  --fw-black:     900;

  /* Spacing */
  --sp-1:   0.25rem;  /* 4px  */
  --sp-2:   0.5rem;   /* 8px  */
  --sp-3:   0.75rem;  /* 12px */
  --sp-4:   1rem;     /* 16px */
  --sp-5:   1.25rem;  /* 20px */
  --sp-6:   1.5rem;   /* 24px */
  --sp-8:   2rem;     /* 32px */
  --sp-10:  2.5rem;   /* 40px */
  --sp-12:  3rem;     /* 48px */
  --sp-16:  4rem;     /* 64px */
  --sp-20:  5rem;     /* 80px */
  --sp-24:  6rem;     /* 96px */
  --sp-32:  8rem;     /* 128px */

  /* Border Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-primary: 0 6px 24px rgba(59, 191, 212, 0.30);
  --shadow-wa:      0 4px 16px rgba(37, 211, 102, 0.35);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;

  /* Layout */
  --max-w:        1140px;
  --max-w-narrow: 760px;
  --max-w-wide:   1300px;
  --header-h:     72px;
}


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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  line-height: var(--leading-tight);
  color: var(--c-text);
}

p {
  line-height: var(--leading-normal);
}

address {
  font-style: normal;
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
/* Google Fonts loaded via HTML <link> */

.display-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: var(--fw-bold);
}

h4, .h4 {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
}

h5, .h5 {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
}

.text-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--c-text-md);
  font-weight: var(--fw-normal);
}

.text-sm   { font-size: var(--text-sm); }
.text-xs   { font-size: var(--text-xs); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }

.text-primary  { color: var(--c-primary); }
.text-muted    { color: var(--c-text-md); }
.text-white    { color: var(--c-white); }
.text-center   { text-align: center; }
.text-left     { text-align: left; }

.fw-bold    { font-weight: var(--fw-bold); }
.fw-medium  { font-weight: var(--fw-medium); }

/* Section label */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

/* Highlight underline */
.highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--c-secondary);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.8;
}


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--wide {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-20);
}

.section--sm {
  padding-block: var(--sp-12);
}

.section--lg {
  padding-block: var(--sp-32);
}

.section--alt {
  background: var(--c-surface);
}

/* Sección con fondo amarillo crema de marca */
.section--yellow {
  background: #F5EFB6;
}

/* Aplicado automáticamente vía CSS a secciones con proceso o precios */
.section:has(.steps),
.section:has(.pricing-grid) {
  background: #F5EFB6;
}

.section:has(.steps) .card,
.section:has(.pricing-grid) .card,
.section:has(.steps) .feature-card {
  background: var(--c-white);
  border-color: rgba(0,0,0,0.08);
}

.section:has(.steps) .card:hover,
.section:has(.pricing-grid) .card:hover {
  border-color: var(--c-primary);
}

.section:has(.steps) .section-label,
.section:has(.pricing-grid) .section-label {
  background: rgba(255,255,255,0.7);
}

.section--primary {
  background: var(--c-primary);
  color: var(--c-white);
}

.section--primary h1,
.section--primary h2,
.section--primary h3 {
  color: var(--c-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header p {
  max-width: 600px;
  margin-inline: auto;
  margin-top: var(--sp-4);
  color: var(--c-text-md);
}

.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { flex-direction: column; }
.gap-4       { gap: var(--sp-4); }
.gap-6       { gap: var(--sp-6); }
.gap-8       { gap: var(--sp-8); }


/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.site-header.is-sticky {
  border-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--c-text);
  line-height: 1;
}

.site-logo__text span {
  color: var(--c-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text-md);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-base), background var(--t-base);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--c-primary);
  background: var(--c-primary-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  transition: all var(--t-base);
}

.nav-phone:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-border);
  gap: 5px;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Page offset for fixed header */
.page-content {
  padding-top: var(--header-h);
}


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--c-surface);
  overflow: hidden;
  padding-block: var(--sp-20) var(--sp-16);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--c-primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 237, 150, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-primary-light);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-primary-darker, var(--c-primary-deep));
  margin-bottom: var(--sp-5);
}

.hero h1 {
  margin-bottom: var(--sp-5);
  color: var(--c-text);
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--c-text-md);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--c-text-md);
  font-weight: var(--fw-medium);
}

.hero-trust-item svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

.hero-trust-sep {
  width: 4px;
  height: 4px;
  background: var(--c-border);
  border-radius: 50%;
}

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

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-image-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: var(--c-primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 24px;
  flex-shrink: 0;
}

.hero-image-badge .badge-text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--fw-extrabold);
  color: var(--c-text);
}

.hero-image-badge .badge-text span {
  font-size: var(--text-xs);
  color: var(--c-text-sm);
}

/* Hero for inner pages */
.hero--page {
  padding-block: var(--sp-16) var(--sp-12);
  background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-primary-light) 100%);
}

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

.hero--page .hero-content {
  max-width: 720px;
  margin-inline: auto;
}

.hero--page .hero-actions {
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--c-text-sm);
  margin-bottom: var(--sp-4);
  justify-content: center;
}

.breadcrumb a {
  color: var(--c-primary);
  font-weight: var(--fw-medium);
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb-sep { color: var(--c-border); }


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  line-height: 1;
  border-radius: var(--r-full);
  padding: var(--sp-3) var(--sp-6);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Primary */
.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59, 191, 212, 0.40);
}

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

/* Secondary / Outline */
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn--outline:hover {
  background: var(--c-primary-light);
  transform: translateY(-2px);
}

/* Ghost */
.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.40);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.60);
}

/* WhatsApp */
.btn--wa {
  background: var(--c-whatsapp);
  color: var(--c-white);
  border-color: var(--c-whatsapp);
  box-shadow: var(--shadow-wa);
}

.btn--wa:hover {
  background: var(--c-whatsapp-dark);
  border-color: var(--c-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.40);
}

/* Phone */
.btn--phone {
  background: var(--c-white);
  color: var(--c-text);
  border-color: var(--c-border);
}

.btn--phone:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
}

/* Sizes */
.btn--sm {
  font-size: var(--text-sm);
  padding: var(--sp-2) var(--sp-4);
}

.btn--lg {
  font-size: var(--text-lg);
  padding: var(--sp-4) var(--sp-8);
}

.btn--xl {
  font-size: var(--text-xl);
  padding: var(--sp-4) var(--sp-10);
}

/* Block (full width) */
.btn--block {
  width: 100%;
}

/* CTA Group */
.cta-group {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}


/* ============================================================
   8. CARDS
   ============================================================ */
.card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  padding: var(--sp-8);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
  transform: translateY(-3px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--c-primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 28px;
  margin-bottom: var(--sp-5);
}

.card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}

.card__body {
  color: var(--c-text-md);
  line-height: var(--leading-loose);
  font-size: var(--text-base);
}

/* Feature card */
.feature-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--c-primary-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 22px;
}

.feature-card__content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}

.feature-card__content p {
  font-size: var(--text-sm);
  color: var(--c-text-md);
  line-height: var(--leading-loose);
}


/* ============================================================
   9. SECTIONS & STRUCTURE
   ============================================================ */
/* Divider wave */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
}

/* Two-col layout for content pages */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-12);
  align-items: start;
}

.content-layout--reverse {
  grid-template-columns: 340px 1fr;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}

.sidebar-widget {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.sidebar-widget:last-child { margin-bottom: 0; }

.sidebar-widget__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-primary-light);
}

.sidebar-widget--cta {
  background: var(--c-primary);
  color: var(--c-white);
  text-align: center;
}

.sidebar-widget--cta h3 {
  color: var(--c-white);
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}

.sidebar-widget--cta p {
  opacity: 0.9;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-5);
}

/* Richtext content */
.richtext h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}

.richtext h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.richtext p {
  margin-bottom: var(--sp-4);
  color: var(--c-text-md);
  line-height: var(--leading-loose);
}

.richtext ul, .richtext ol {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-6);
}

.richtext ul { list-style: disc; }
.richtext ol { list-style: decimal; }

.richtext li {
  margin-bottom: var(--sp-2);
  color: var(--c-text-md);
  line-height: var(--leading-loose);
}

.richtext strong {
  font-weight: var(--fw-bold);
  color: var(--c-text);
}

.richtext a {
  color: var(--c-primary);
  text-decoration: underline;
}

.richtext a:hover {
  color: var(--c-primary-dark);
}


/* ============================================================
   10. PROCESS STEPS
   ============================================================ */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  margin-inline: auto;
  margin-bottom: var(--sp-4);
  border: 4px solid var(--c-white);
  box-shadow: var(--shadow-primary);
}

.step__title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

.step__desc {
  font-size: var(--text-sm);
  color: var(--c-text-md);
  line-height: var(--leading-loose);
}


/* ============================================================
   11. TRUST / STATS
   ============================================================ */
.trust-bar {
  background: var(--c-primary);
  color: var(--c-white);
  padding-block: var(--sp-5);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}

.trust-item svg {
  opacity: 0.9;
  flex-shrink: 0;
}

.trust-item-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.stat-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-card__label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text-md);
}

/* Review stars */
.stars {
  display: inline-flex;
  gap: 2px;
  color: #F59E0B;
  font-size: var(--text-xl);
}

.review-snippet {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-xs);
}

.review-snippet .stars {
  font-size: var(--text-sm);
}

.review-snippet strong {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
}

.review-snippet span {
  font-size: var(--text-xs);
  color: var(--c-text-sm);
}


/* ============================================================
   12. PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  max-width: 720px;
  margin-inline: auto;
}

.pricing-card {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  position: relative;
  transition: all var(--t-base);
}

.pricing-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--c-primary);
  background: var(--c-primary-light);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: var(--c-white);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.pricing-name {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.pricing-price {
  margin-bottom: var(--sp-5);
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  color: var(--c-primary);
  line-height: 1;
}

.pricing-price .currency {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  vertical-align: top;
  margin-top: var(--sp-2);
  display: inline-block;
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--sp-6);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--c-text-md);
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--c-border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-radius: 50%;
  font-weight: var(--fw-black);
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.pricing-note {
  font-size: var(--text-sm);
  color: var(--c-text-sm);
  text-align: center;
  margin-top: var(--sp-6);
  line-height: var(--leading-loose);
}


/* ============================================================
   13. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item.is-open {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-white);
  cursor: pointer;
  text-align: left;
  transition: background var(--t-base);
}

.faq-question:hover {
  background: var(--c-surface);
}

.faq-item.is-open .faq-question {
  background: var(--c-primary-light);
}

.faq-question-text {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--c-text);
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--c-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: var(--text-lg);
  font-weight: var(--fw-black);
  transition: transform var(--t-base), background var(--t-base);
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-primary);
  color: var(--c-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.faq-answer-inner {
  padding: var(--sp-5) var(--sp-6);
  padding-top: 0;
  color: var(--c-text-md);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  background: var(--c-primary-light);
  border-top: 1px solid var(--c-border);
}

.faq-answer-inner p + p {
  margin-top: var(--sp-3);
}

.faq-answer-inner a {
  color: var(--c-primary);
  text-decoration: underline;
}


/* ============================================================
   14. BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--c-primary-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__image-placeholder {
  font-size: 3rem;
  opacity: 0.4;
}

.blog-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: 2px var(--sp-2);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.blog-card__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  line-height: var(--leading-snug);
  margin-bottom: var(--sp-3);
  color: var(--c-text);
  transition: color var(--t-base);
}

.blog-card:hover .blog-card__title {
  color: var(--c-primary);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--c-text-md);
  line-height: var(--leading-loose);
  flex: 1;
  margin-bottom: var(--sp-4);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--c-text-sm);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

.blog-card__read-more {
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
}

/* Article page */
.article-header {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--c-text-sm);
  margin-top: var(--sp-4);
}

.article-meta-sep { width: 4px; height: 4px; background: var(--c-border); border-radius: 50%; }

.article-image {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-10);
  aspect-ratio: 21/9;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   15. LOCAL LANDINGS
   ============================================================ */
.local-hero {
  background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-primary-light) 60%);
  padding-block: var(--sp-16) var(--sp-12);
}

.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.nearby-city-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  background: var(--c-primary-light);
  border: 1px solid var(--c-border);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}

.nearby-city-link:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}


/* ============================================================
   16. CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--c-border);
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--c-primary-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 20px;
}

.contact-info-content strong {
  display: block;
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-sm);
  margin-bottom: var(--sp-1);
}

.contact-info-content a, .contact-info-content p {
  font-size: var(--text-base);
  color: var(--c-text);
  font-weight: var(--fw-medium);
}

.contact-info-content a:hover {
  color: var(--c-primary);
}

/* Contact form */
.contact-form {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  color: var(--c-text);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-glow);
  background: var(--c-white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-sm);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--c-text-sm);
  margin-top: var(--sp-2);
}

/* Schedule */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table td {
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--c-border);
}

.schedule-table tr:last-child td { border-bottom: none; }

.schedule-table .day {
  font-weight: var(--fw-semibold);
  color: var(--c-text);
}

.schedule-table .hours {
  text-align: right;
  color: var(--c-text-md);
}

.status-open {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--c-whatsapp-dark);
}

.status-open::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--c-whatsapp);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}


/* ============================================================
   17. MAP
   ============================================================ */
.map-wrap {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 380px;
  background: var(--c-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  color: var(--c-text-md);
  font-size: var(--text-sm);
}


/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.8);
  padding-top: var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--sp-4);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-5);
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
  transition: all var(--t-base);
}

.footer-social a:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--t-base);
}

.footer-links a:hover {
  color: var(--c-primary);
}

.footer-contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}

.footer-contact-icon {
  color: var(--c-primary);
  font-size: var(--text-base);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item p, .footer-contact-item a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: var(--leading-normal);
}

.footer-contact-item a:hover {
  color: var(--c-primary);
}

.footer-bottom {
  padding-block: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--t-base);
}

.footer-legal-links a:hover {
  color: var(--c-primary);
}


/* ============================================================
   19. WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}

.wa-float__btn {
  width: 56px;
  height: 56px;
  background: var(--c-whatsapp);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wa);
  transition: all var(--t-base);
  position: relative;
}

.wa-float__btn:hover {
  background: var(--c-whatsapp-dark);
  transform: scale(1.1);
}

.wa-float__btn svg {
  width: 28px;
  height: 28px;
}

.wa-float__pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #F59E0B;
  border-radius: 50%;
  border: 2px solid var(--c-white);
  animation: pulse 2s ease-in-out infinite;
}

.wa-float__tooltip {
  background: var(--c-text);
  color: var(--c-white);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-base);
  pointer-events: none;
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Menú expandible del wa-float en móvil */
.wa-float__expand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.wa-float.is-open .wa-float__expand {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wa-float__opt {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: transform var(--t-base);
}

.wa-float__opt:active { transform: scale(0.95); }
.wa-float__opt--reservar { background: var(--c-text); }
.wa-float__opt--wa       { background: var(--c-whatsapp); }
.wa-float__opt--phone    { background: var(--c-primary); }

/* Mobile sticky bar — desactivada, sustituida por FAB */
.mobile-sticky-bar {
  display: none !important;
}

/* ============================================================
   MOBILE FAB (Floating Action Button)
   Solo visible en móvil. Escritorio no se ve.
   ============================================================ */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: 400;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}

/* Botón principal — logo dentro */
.mobile-fab__trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-primary);
  border: none;
  box-shadow: 0 4px 20px rgba(59,191,212,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
  padding: 0;
  color: var(--c-white);
  position: relative;
  z-index: 2;
}

.mobile-fab__trigger:active {
  transform: scale(0.93);
}

/* Indicador de pulsar */
.mobile-fab__trigger::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  opacity: 0;
  animation: fab-ring 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fab-ring {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.5); }
}

/* Menú de acciones */
.mobile-fab__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
  /* Estado cerrado */
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.mobile-fab.is-open .mobile-fab__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Cada acción */
.mobile-fab__action {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  cursor: pointer;
}

.mobile-fab__action-label {
  background: var(--c-text);
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.mobile-fab__action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.mobile-fab__action-btn:active {
  transform: scale(0.9);
}

.mobile-fab__action-btn--wa {
  background: var(--c-whatsapp);
  color: var(--c-white);
}

.mobile-fab__action-btn--phone {
  background: var(--c-primary);
  color: var(--c-white);
}

.mobile-fab__action-btn--reservar {
  background: var(--c-text);
  color: var(--c-white);
}

/* Backdrop para cerrar al pulsar fuera */
.mobile-fab__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mobile-fab.is-open ~ .mobile-fab__backdrop,
.mobile-fab__backdrop.is-visible {
  display: block;
}


/* ============================================================
   20. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  max-width: 520px;
  z-index: 300;
  background: var(--c-text);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xl);
  flex-direction: column;
  gap: var(--sp-4);
}

.cookie-banner p {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.8);
}

.cookie-banner a {
  color: var(--c-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.btn--cookie-accept {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  font-size: var(--text-sm);
  padding: var(--sp-2) var(--sp-5);
}

.btn--cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
  font-size: var(--text-sm);
  padding: var(--sp-2) var(--sp-5);
}


/* ============================================================
   21. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-24px);
}
.reveal--left.is-revealed { transform: translateX(0); }

.reveal--right {
  transform: translateX(24px);
}
.reveal--right.is-revealed { transform: translateX(0); }

/* Stagger */
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.anim-float {
  animation: float 4s ease-in-out infinite;
}


/* ============================================================
   22. UTILITIES
   ============================================================ */
.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: var(--sp-2); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }

.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }

.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }

.w-full   { width: 100%; }
.mx-auto  { margin-inline: auto; }
.d-none   { display: none; }
.d-block  { display: block; }

.rounded-full { border-radius: var(--r-full); }
.shadow-md    { box-shadow: var(--shadow-md); }

.bg-white    { background: var(--c-white); }
.bg-surface  { background: var(--c-surface); }
.bg-primary  { background: var(--c-primary); }

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  transition: gap var(--t-base);
}

.link-arrow:hover {
  gap: var(--sp-3);
}


/* ============================================================
   23. RESPONSIVE
   ============================================================ */

/* Large desktop */
@media (min-width: 1200px) {
  .nav-phone { display: flex; }
}

/* Tablet & below */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

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

  .hero-content {
    max-width: 600px;
    margin-inline: auto;
  }

  .hero-actions, .hero-trust {
    justify-content: center;
  }

  .hero-image {
    max-width: 480px;
    margin-inline: auto;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .content-layout,
  .content-layout--reverse {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--sp-2);
    padding: var(--sp-5) var(--sp-5) var(--sp-10);
    overflow-y: auto;
    z-index: 9999;
    border-top: 2px solid var(--c-primary);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    font-size: var(--text-base);
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--r-md);
    border-bottom: 1px solid var(--c-border);
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding-block: var(--sp-12) var(--sp-10);
  }

  .hero-image-wrap {
    aspect-ratio: 16/10;
  }

  .hero-image-badge {
    bottom: -12px;
    left: -8px;
  }

  /* Grids */
  .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }

  .trust-item-sep {
    width: 30px;
    height: 1px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-brand {
    max-width: 100%;
  }

  /* WhatsApp float — visible en móvil */
  .wa-float {
    display: flex;
  }

  /* Ocultar tooltip en móvil — no hay hover en táctil */
  .wa-float__tooltip {
    display: none;
  }

  /* FAB desactivado — se usa el wa-float */
  .mobile-fab {
    display: none !important;
  }

  /* Sections */
  .section {
    padding-block: var(--sp-12);
  }

  .section--lg {
    padding-block: var(--sp-16);
  }

  /* Cookie */
  .cookie-banner {
    left: var(--sp-3);
    right: var(--sp-3);
    bottom: var(--sp-3);
  }

  /* Nearby cities scrollable */
  .nearby-cities {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--sp-2);
    scrollbar-width: none;
  }
  .nearby-cities::-webkit-scrollbar { display: none; }
  .nearby-city-link { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-4);
  }

  .btn--xl {
    font-size: var(--text-base);
    padding: var(--sp-3) var(--sp-6);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-bar-inner {
    gap: var(--sp-3);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card {
    padding: var(--sp-6);
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
