/* =========================================
   EUPHORIA FIT — Landing Page Styles
   ─────────────────────────────────────────
   Sitio: https://www.euphoriafitspa.com
   Metodología: BEM (Block__Element--Modifier)
   
   Paleta de colores:
     Primary green:  #009B7A  (CTA, acentos, íconos)
     Accent green:   #00e6a0  (hover, detalles)
     Cream bg:       #F5F2EC  (fondo principal)
     Warm gray bg:   #C7C3B8  (fondos alternativos)
     Dark green txt: #2F4F46  (texto principal)

   Tipografía:
     Títulos: Playfair Display (serif)
     Cuerpo:  Lato (sans-serif)

   Breakpoints (mobile-first):
     >= 1200px  Desktop grande
     <= 768px   Tablet / móvil landscape
     <= 480px   Móvil
     <= 360px   Móvil pequeño

   Índice:
     1. Skip Link (accesibilidad)
     2. Loader (pantalla de carga)
     3. Reset & Base
     4. Utilidades (.container, .section-tagline, etc.)
     5. Botones (.btn, .btn--primary, etc.)
     6. Header (nav, logo, hamburguesa)
     7. Hero Carousel (slides, overlay, arrows, dots)
     8. About / Nosotros
     9. Services / Servicios
    10. Testimonials / Testimonios
    11. Franchise / Clínica
    12. Contact / Contacto (form, mapa, info)
    13. Footer
    14. Chatbot (ventana, mensajes, tooltip)
    15. Promo Bar
    16. Results (Antes/Después)
    17. Pricing / Paquetes
    18. FAQ (acordeón)
    19. Booking Modal (calendario, slots, form)
    20. Discount Popup
    21. Cookie Banner
    22. Scroll Animations
    23. Social Strip
    24. Legal Pages
    25. Print Styles
    26. Responsive (1200px → 768px → 480px → 360px)
   ========================================= */

/* ---------- SKIP LINK (Accessibility) ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9100;
    padding: 12px 24px;
    background: #009B7A;
    color: #fff;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ---------- LOADER ---------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: #F5F2EC;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0s 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader__icon {
    font-size: 2.6rem;
    color: #009B7A;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1.08); }
}

.loader__brand {
    overflow: hidden;
}

.loader__text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2F4F46;
    display: block;
    animation: loaderSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.loader__text span {
    color: #009B7A;
}

@keyframes loaderSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.loader__bar {
    width: 120px;
    height: 2px;
    background: rgba(47, 79, 70, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader__bar-fill {
    height: 100%;
    width: 0%;
    background: #009B7A;
    border-radius: 2px;
    animation: loaderBar 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes loaderBar {
    from { width: 0%; }
    to { width: 100%; }
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    color: #2F4F46;
    background-color: #F5F2EC;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
}

:focus-visible {
    outline: 2px solid #009B7A;
    outline-offset: 2px;
}

img {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ---------- UTILITY ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #009B7A;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2F4F46;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: #009B7A;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #2F4F46;
    opacity: 0.75;
    max-width: 600px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: #009B7A;
    color: #F5F2EC;
    border-color: #009B7A;
}

.btn--primary:hover {
    background-color: #007d62;
    border-color: #007d62;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 155, 122, 0.3);
}

.btn--outline {
    background: transparent;
    color: #009B7A;
    border-color: #009B7A;
}

.btn--outline:hover {
    background-color: #009B7A;
    color: #F5F2EC;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 242, 236, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease, top 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(47, 79, 70, 0.08);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1002;
}

.header__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.header__logo-icon {
    font-size: 1.5rem;
    color: #009B7A;
}

.header__logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F4F46;
}

.header__logo-text span {
    color: #009B7A;
}

.header__nav-list {
    display: flex;
    gap: 32px;
}

.header__nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2F4F46;
    position: relative;
    padding: 4px 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #009B7A;
    transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: #009B7A;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 1002;
}

.header__nav-cta {
    display: none;
}

.header__toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #009B7A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1a1a;
}

/* --- Carousel slides --- */
.hero__carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
    z-index: 1;
}

.hero__slide-media {
    position: absolute;
    inset: 0;
}

.hero__slide-media img,
.hero__slide-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* --- Overlay via pseudo-element (below text, above image) --- */
.hero__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.03) 40%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    transition: background 0.5s ease;
}

/* Desktop: show on hover (only for devices with fine pointer — excludes touch) */
@media (hover: hover) and (pointer: fine) {
    .hero:hover .hero__slide.active::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.55) 100%
        );
    }
}

/* Click/tap toggle */
.hero.content-visible .hero__slide.active::after {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

/* --- Content per slide (hover/click reveal, above overlay) --- */
.hero__slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
    margin: 0 auto;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
    .hero:hover .hero__slide.active .hero__slide-content {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero.content-visible .hero__slide.active .hero__slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* --- Tap hint (mobile only) --- */
.hero__tap-hint {
    display: none;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    gap: 6px;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: tapPulse 2s ease-in-out infinite;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.hero__tap-hint svg {
    flex-shrink: 0;
}

.hero.content-visible .hero__tap-hint {
    opacity: 0;
}

@keyframes tapPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-4px); }
}

.hero__tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.4);
}

.hero__title span {
    color: #00e6a0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 24px rgba(0, 155, 122, 0.5);
}

.hero__description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 32px;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.3);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Outline light button for hero */
.btn--outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* --- Navigation arrows --- */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.hero__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero__arrow--prev {
    left: 24px;
}

.hero__arrow--next {
    right: 24px;
}

/* --- Dots / indicators --- */
.hero__dots {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* --- Scroll indicator --- */
.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero__scroll a {
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    transition: color 0.3s;
}

.hero__scroll a:hover {
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========================================
   ABOUT / NOSOTROS
   ======================================== */
.about {
    padding: 100px 0;
    background-color: #F5F2EC;
    overflow: hidden;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image-placeholder {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(47, 79, 70, 0.1);
}

/* Foto real + logo overlay */
.about__image-branded {
    position: relative;
}

.about__branded-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about__branded-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 79, 70, 0.38);
    border-radius: 20px;
}

.about__branded-logo {
    width: 55%;
    max-width: 220px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
    opacity: 0.92;
}

.about__text {
    font-size: 1.05rem;
    margin-bottom: 16px;
    opacity: 0.85;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.about__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 155, 122, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #2F4F46;
    margin-bottom: 2px;
}

.about__feature p {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ========================================
   SERVICES / SERVICIOS
   ======================================== */
.services {
    padding: 100px 0;
    background-color: #C7C3B8;
    overflow: hidden;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__header .section-subtitle {
    margin: 0 auto;
}

.services__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.services__grid > .service-card {
    width: calc((100% - 60px) / 3);
}

.services__dots {
    display: none;
}

.service-card {
    position: relative;
    background: #F5F2EC;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(47, 79, 70, 0.12);
}

.service-card__image {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

/* Video preview overlay */
.service-card__video-preview {
    position: relative;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-card__video-preview img,
.service-card__video-preview > svg:first-child {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
    line-height: 0;
}

.service-card__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.service-card__video-preview.is-playing .service-card__play-btn {
    opacity: 0;
    pointer-events: none;
}

.service-card__video-preview video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    padding: 28px;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 155, 122, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2F4F46;
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card__benefits {
    margin-bottom: 20px;
}

.service-card__benefits li {
    font-size: 0.85rem;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    opacity: 0.8;
}

.service-card__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #009B7A;
    font-weight: 700;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #009B7A;
    transition: gap 0.3s ease;
}

.service-card__link:hover {
    gap: 12px;
}

/* ========================================
   TESTIMONIALS / TESTIMONIOS
   ======================================== */
.testimonials {
    padding: 120px 0;
    background-color: #F5F2EC;
    overflow: hidden;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials__header .section-subtitle {
    margin: 0 auto;
}

.testimonials__content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* Crossfade card area — cards stacked */
.testimonials__card-area {
    position: relative;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
    pointer-events: none;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s;
    pointer-events: auto;
}

.testimonial-card__inner {
    padding: 0 20px;
}

/* Decorative quote mark */
.testimonial-card__quote {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    line-height: 0.8;
    color: rgba(0, 155, 122, 0.1);
    margin-bottom: -16px;
    user-select: none;
}

.testimonial-card__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.85;
    color: #2F4F46;
    font-style: italic;
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
}

.testimonial-card__divider {
    width: 48px;
    height: 1px;
    background: rgba(0, 155, 122, 0.25);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #009B7A;
    color: #F5F2EC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.95rem;
    color: #2F4F46;
    text-align: left;
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: #009B7A;
    font-weight: 500;
    text-align: left;
    display: block;
}

/* Navigation */
.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(47, 79, 70, 0.15);
    color: #2F4F46;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__btn:hover {
    border-color: #009B7A;
    color: #009B7A;
}

.testimonials__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(47, 79, 70, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0;
}

.testimonials__dot.active {
    background: #009B7A;
    width: 24px;
    border-radius: 3px;
}

/* ========================================
   FRANCHISE / FRANQUICIAS
   ======================================== */
.franchise {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #2F4F46 0%, #1a3a32 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
    max-width: 100vw;
}

.franchise__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.franchise__bg svg {
    width: 100%;
    height: 100%;
}

.franchise__container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.franchise .section-tagline {
    color: #00e6a0;
}

.franchise__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.franchise__title span {
    color: #00e6a0;
}

.franchise__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 600px;
}

.franchise__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 820px;
}

.franchise__highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: background 0.3s, border-color 0.3s;
}

.franchise__highlight:hover {
    background: rgba(0, 230, 160, 0.08);
    border-color: rgba(0, 230, 160, 0.2);
}

.franchise__highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 160, 0.1);
    border-radius: 10px;
}

.franchise__highlight strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.franchise__highlight p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

.franchise__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #00e6a0;
    padding: 15px 32px;
    border-radius: 50px;
    border: 2px solid #00e6a0;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.franchise__cta:hover {
    background: #00e6a0;
    color: #1a3a32;
    transform: translateY(-2px);
}

/* ========================================
   CONTACT / CONTACTO
   ======================================== */
.contact {
    padding: 100px 0;
    background-color: #C7C3B8;
    overflow: hidden;
}

.contact__header {
    text-align: center;
    margin-bottom: 60px;
}

.contact__header .section-subtitle {
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact__form-wrapper {
    position: relative;
}

.contact__form {
    background: #F5F2EC;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(47, 79, 70, 0.08);
}

.contact__form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2F4F46;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #2F4F46;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #C7C3B8;
    border-radius: 12px;
    background: #fff;
    color: #2F4F46;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #009B7A;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-error {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 4px;
    display: block;
    min-height: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: #009B7A;
}

.form-group--checkbox label {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0;
}

.form-group--checkbox label a {
    color: #009B7A;
    text-decoration: underline;
}

.contact__form-success {
    position: absolute;
    inset: 0;
    background: #F5F2EC;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    gap: 16px;
}

.contact__form-success.visible {
    display: flex;
    animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.contact__form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #009B7A;
}

.contact__form-success p {
    color: #2F4F46;
    opacity: 0.8;
}

/* Map & Info */
.contact__map {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(47, 79, 70, 0.1);
}

.contact__map-link {
    display: block;
    position: relative;
    cursor: pointer;
}

.contact__map-link iframe {
    pointer-events: none;
    display: block;
    border: 0;
    border-radius: 16px;
}

.contact__map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(to top, rgba(47, 79, 70, 0.7), transparent);
    color: #F5F2EC;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact__map-link:hover .contact__map-overlay {
    opacity: 1;
}

.contact__image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(47, 79, 70, 0.08);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #F5F2EC;
    padding: 16px 20px;
    border-radius: 14px;
}

.contact__detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail strong {
    font-size: 0.85rem;
    display: block;
    color: #2F4F46;
}

.contact__detail p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #2F4F46;
    color: #F5F2EC;
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.1);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer .header__logo-text {
    color: #F5F2EC;
}

.footer .header__logo-icon {
    color: #009B7A;
}

.footer__desc {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 242, 236, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F2EC;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: #009B7A;
    transform: translateY(-3px);
}

.footer__col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #F5F2EC;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    opacity: 0.65;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
    color: #009B7A;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    opacity: 0.65;
}

.footer__contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer__back-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #F5F2EC;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__back-top:hover {
    opacity: 1;
    color: #009B7A;
}

/* ========================================
   CHATBOT
   ======================================== */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1002;
    transition: opacity 0.4s ease;
}

.chatbot__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #009B7A;
    color: #F5F2EC;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 155, 122, 0.4);
    transition: all 0.3s ease;
}

.chatbot__toggle:hover,
.chatbot__toggle:focus-visible {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 155, 122, 0.5);
    outline: none;
}

.chatbot__icon-close {
    display: none;
}

.chatbot.active .chatbot__icon-open {
    display: none;
}

.chatbot.active .chatbot__icon-close {
    display: block;
}

.chatbot__window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 380px;
    max-height: min(520px, calc(100vh - 120px));
    background: #F5F2EC;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(47, 79, 70, 0.2);
    flex-direction: column;
    overflow: hidden;
    display: none;
}

.chatbot__window.open {
    display: flex;
    animation: chatSlideUp 0.3s ease;
}

.chatbot__window.closing {
    display: flex;
    animation: chatSlideDown 0.25s ease forwards;
}

@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chatSlideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.chatbot__header {
    background: #009B7A;
    color: #F5F2EC;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot__header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(245, 242, 236, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.chatbot__header-info strong {
    display: block;
    font-size: 0.9rem;
}

.chatbot__status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chatbot__close {
    color: #F5F2EC;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.chatbot__close:hover {
    opacity: 1;
}

.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 260px;
    max-height: 300px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
    animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message--bot {
    background: #fff;
    color: #2F4F46;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message--user {
    background: #009B7A;
    color: #F5F2EC;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message--typing {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    display: flex;
    gap: 4px;
    padding: 14px 20px;
}

.chat-message--typing span {
    width: 8px;
    height: 8px;
    background: #C7C3B8;
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.chat-message--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-message--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.chatbot__quick-actions {
    padding: 8px 16px 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    max-height: 72px;
    overflow-y: auto;
}

.chatbot__action {
    padding: 5px 11px;
    border: 1.5px solid #009B7A;
    border-radius: 20px;
    font-size: 0.72rem;
    color: #009B7A;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.chatbot__action:hover {
    background: #009B7A;
    color: #F5F2EC;
}

.chatbot__input-area {
    display: flex;
    padding: 12px 16px;
    gap: 8px;
    border-top: 1px solid rgba(199, 195, 184, 0.4);
}

.chatbot__input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #C7C3B8;
    border-radius: 12px;
    background: #fff;
    outline: none;
    font-size: 0.88rem;
    color: #2F4F46;
    transition: border-color 0.3s;
}

.chatbot__input:focus {
    border-color: #009B7A;
}

.chatbot__send {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #009B7A;
    color: #F5F2EC;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chatbot__send:hover {
    background: #007d62;
}

/* ========================================
   CHATBOT TOOLTIP
   ======================================== */
.chatbot__tooltip {
    position: absolute;
    bottom: 8px;
    right: 72px;
    background: #fff;
    color: #2F4F46;
    padding: 10px 18px;
    border-radius: 12px 12px 0 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(47, 79, 70, 0.15);
    opacity: 0;
    transform: translateX(10px) scale(0.9);
    animation: tooltipAppear 15s ease 2s forwards;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chatbot:not(.active):hover .chatbot__tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: none;
}

.chatbot__tooltip::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.chatbot.active .chatbot__tooltip {
    display: none;
}

@keyframes tooltipAppear {
    0% { opacity: 0; transform: translateX(10px) scale(0.9); }
    6% { opacity: 1; transform: translateX(0) scale(1); }
    90% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 0; transform: translateX(10px) scale(0.9); }
}

/* ========================================
   PROMO BAR
   ======================================== */
.promo-bar {
    background: #2F4F46;
    color: #F5F2EC;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    font-size: 0.85rem;
    text-align: center;
    transition: transform 0.4s ease;
}

.promo-bar.hidden {
    transform: translateY(-100%);
}

.promo-bar__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.promo-bar p {
    margin: 0;
    opacity: 0.9;
}

.promo-bar a {
    color: #009B7A;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.promo-bar a:hover {
    color: #F5F2EC;
}

.promo-bar__short {
    display: none;
}

.promo-bar__close {
    color: #F5F2EC;
    opacity: 0.6;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.promo-bar__close:hover {
    opacity: 1;
}

body.promo-active .header {
    top: var(--promo-height, 40px);
}

body.promo-active .hero__slide-content {
    padding-top: calc(120px + var(--promo-height, 40px));
}

/* ========================================
   TEAM (inside About)
   ======================================== */
.about__team {
    margin-top: 60px;
    text-align: center;
}

.about__team-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2F4F46;
    margin-bottom: 32px;
}

.about__team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 4px;
    box-shadow: 0 4px 15px rgba(0, 155, 122, 0.15);
}

.team-card strong {
    font-size: 0.95rem;
    color: #2F4F46;
}

.team-card__role {
    font-size: 0.82rem;
    color: #009B7A;
    font-weight: 600;
}

.team-card__exp {
    font-size: 0.78rem;
    opacity: 0.6;
}

/* ========================================
   RESULTS (Antes/Después)
   ======================================== */
.results {
    padding: 80px 0;
    background-color: #F5F2EC;
    overflow: hidden;
}

.results__header {
    text-align: center;
    margin-bottom: 48px;
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    text-align: center;
}

.result-card__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.result-card__before,
.result-card__after {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.result-card__before img,
.result-card__after img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.result-card__label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(47, 79, 70, 0.8);
    color: #F5F2EC;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.result-card__after .result-card__label {
    background: rgba(0, 155, 122, 0.85);
}

.result-card__caption {
    font-size: 0.88rem;
    font-weight: 600;
    color: #2F4F46;
    opacity: 0.8;
}

/* ========================================
   PRICING / PAQUETES
   ======================================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #009B7A 0%, #2F4F46 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: pricingShimmer 8s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
}

@keyframes pricingShimmer {
    0%, 100% { transform: translate(-20%, -20%); }
    50% { transform: translate(20%, 20%); }
}

.pricing__header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing__header .section-tagline {
    color: rgba(245, 242, 236, 0.7);
}

.pricing__header .section-title {
    color: #F5F2EC;
}

.pricing__header .section-title span {
    color: #F5F2EC;
    text-decoration: underline;
    text-decoration-color: rgba(245, 242, 236, 0.3);
    text-underline-offset: 6px;
}

.pricing__header .section-subtitle {
    color: #F5F2EC;
    margin: 0 auto;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(245, 242, 236, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 242, 236, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 242, 236, 0.25);
}

.pricing-card--featured {
    background: rgba(245, 242, 236, 0.12);
    border-color: rgba(0, 155, 122, 0.4);
    transform: scale(1.04);
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F5F2EC;
    color: #009B7A;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 16px;
}

.pricing-card__tagline {
    font-size: 0.82rem;
    font-weight: 600;
    color: #7DDFBE;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pricing-card__header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #F5F2EC;
    margin-bottom: 12px;
}

.pricing-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F5F2EC;
    line-height: 1;
}

.pricing-card__price small {
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    opacity: 0.7;
    display: block;
    margin-top: 6px;
}

.pricing-card__features {
    margin-bottom: 32px;
    flex: 1;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: #F5F2EC;
    opacity: 0.85;
    border-bottom: 1px solid rgba(245, 242, 236, 0.06);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li strong {
    color: #7DDFBE;
    opacity: 1;
}

.pricing-card .btn--outline {
    color: #F5F2EC;
    border-color: rgba(245, 242, 236, 0.3);
}

.pricing-card .btn--outline:hover {
    background: #F5F2EC;
    color: #009B7A;
    border-color: #F5F2EC;
}

.pricing__dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.pricing__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 242, 236, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0;
}

.pricing__dot.active {
    background: #F5F2EC;
    width: 28px;
    border-radius: 4px;
}

/* ========================================
   GOOGLE REVIEWS BADGE
   ======================================== */
.testimonials__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 20px;
    box-shadow: 0 2px 15px rgba(47, 79, 70, 0.08);
}

.testimonials__google-info {
    text-align: left;
}

.testimonials__google-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.testimonials__google-stars span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2F4F46;
    margin-left: 6px;
}

.testimonials__google-count {
    font-size: 0.72rem;
    color: #2F4F46;
    opacity: 0.6;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 80px 0;
    background-color: #F5F2EC;
}

.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(199, 195, 184, 0.3);
    transition: border-color 0.3s ease;
}

.faq__item.active {
    border-color: #009B7A;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2F4F46;
    text-align: left;
    transition: color 0.3s ease;
    gap: 16px;
}

.faq__question:hover {
    color: #009B7A;
}

.faq__question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #009B7A;
}
.faq__item.active .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
    color: #2F4F46;
}

/* ========================================
   CONTACT EXTRAS
   ======================================== */
.contact__calendly-link {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.contact__calendly-link a {
    color: #009B7A;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ========================================
   BOOKING MODAL
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal[hidden] {
    display: none;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 79, 70, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: #F5F2EC;
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(47, 79, 70, 0.3);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F4F46;
    transition: background 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.modal__close:hover {
    background: rgba(47, 79, 70, 0.08);
}

.modal__header {
    text-align: center;
    margin-bottom: 24px;
}

.modal__header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2F4F46;
    margin-bottom: 8px;
}

.modal__header p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Booking Steps */
.booking-step[hidden] { display: none; }

/* Calendar */
.booking-calendar__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.booking-calendar__nav button {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F4F46;
    transition: background 0.2s;
}

.booking-calendar__nav button:hover {
    background: rgba(47, 79, 70, 0.08);
}

.booking-calendar__month {
    font-weight: 700;
    font-size: 1.05rem;
    color: #2F4F46;
    text-transform: capitalize;
}

.booking-calendar__grid,
.booking-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.booking-calendar__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(47, 79, 70, 0.5);
    padding: 8px 0;
    text-transform: uppercase;
}

.booking-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2F4F46;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-calendar__day:hover:not(:disabled) {
    background: rgba(0, 155, 122, 0.1);
}

.booking-calendar__day--today {
    border: 2px solid #009B7A;
    font-weight: 700;
}

.booking-calendar__day--selected {
    background: #009B7A !important;
    color: #fff !important;
    font-weight: 700;
}

.booking-calendar__day:disabled {
    opacity: 0.25;
    cursor: default;
}

.booking-calendar__day--empty {
    visibility: hidden;
}

/* Time Slots */
.booking-slots__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.booking-slot {
    padding: 12px 8px;
    border: 2px solid rgba(199, 195, 184, 0.4);
    border-radius: 12px;
    background: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2F4F46;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.booking-slot:hover {
    border-color: #009B7A;
    background: rgba(0, 155, 122, 0.05);
}

.booking-slot--selected {
    border-color: #009B7A;
    background: #009B7A;
    color: #fff;
}

.booking-loading {
    text-align: center;
    padding: 40px 20px;
    color: rgba(47, 79, 70, 0.6);
}

.booking-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 155, 122, 0.2);
    border-top-color: #009B7A;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.booking-slots__empty {
    text-align: center;
    padding: 30px 20px;
    opacity: 0.6;
}

.booking-back {
    display: block;
    margin-top: 16px;
    background: none;
    border: none;
    color: #009B7A;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 0;
}

.booking-back:hover { text-decoration: underline; }

/* Summary */
.booking-summary {
    background: rgba(0, 155, 122, 0.06);
    border: 1px solid rgba(0, 155, 122, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #2F4F46;
}

/* Booking Form */
.booking-form__group {
    margin-bottom: 14px;
}

.booking-form__group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2F4F46;
    margin-bottom: 6px;
}

.booking-form__group input,
.booking-form__group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(199, 195, 184, 0.5);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #2F4F46;
    background: #fff;
    min-height: 44px;
    transition: border-color 0.2s;
}

.booking-form__group input:focus,
.booking-form__group select:focus {
    outline: none;
    border-color: #009B7A;
    box-shadow: 0 0 0 3px rgba(0, 155, 122, 0.12);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn--full { width: 100%; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--wa {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.btn--wa:hover { background: #1fb855; }

/* Success */
.booking-success {
    text-align: center;
    padding: 20px 0;
}

.booking-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2F4F46;
    margin: 16px 0 8px;
}

.booking-success p {
    font-size: 0.9rem;
    color: rgba(47, 79, 70, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Booking modal responsive */
@media (max-width: 480px) {
    .modal__content {
        padding: 24px 20px;
        border-radius: 20px;
        max-height: 85vh;
    }
    .modal { padding: 12px; }
    .booking-slots__grid { grid-template-columns: repeat(2, 1fr); }
    .booking-form__row { grid-template-columns: 1fr; }
}

/* ========================================
   DISCOUNT POPUP
   ======================================== */
.popup-discount {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.popup-discount[hidden] {
    display: none;
}

.popup-discount__overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 79, 70, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.popup-discount__content {
    position: relative;
    background: #F5F2EC;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(47, 79, 70, 0.3);
    animation: modalIn 0.3s ease;
}

.popup-discount__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F4F46;
    transition: background 0.3s;
}

.popup-discount__close:hover {
    background: rgba(47, 79, 70, 0.08);
}

.popup-discount__icon {
    font-size: 2.5rem;
    color: #009B7A;
    margin-bottom: 8px;
}

.popup-discount__content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2F4F46;
    margin-bottom: 10px;
}

.popup-discount__content > p {
    font-size: 0.92rem;
    opacity: 0.75;
    margin-bottom: 24px;
    line-height: 1.6;
}

.popup-discount__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-discount__form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #C7C3B8;
    border-radius: 12px;
    background: #fff;
    font-size: 1rem;
    color: #2F4F46;
    outline: none;
    transition: border-color 0.3s;
}

.popup-discount__form input:focus {
    border-color: #009B7A;
}

.popup-discount__note {
    display: block;
    margin-top: 14px;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ========================================
   CHATBOT WA ACTION
   ======================================== */
.chatbot__action--wa {
    border-color: #25D366;
    color: #25D366;
}

.chatbot__action--wa:hover {
    background: #25D366;
    color: #fff;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #2F4F46;
    color: #F5F2EC;
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
    transition: transform 0.4s ease-in;
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.cookie-banner__icon {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.cookie-banner__text p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.cookie-banner__text a {
    color: #009B7A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
    color: #F5F2EC;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.cookie-banner__btn--accept {
    background: #009B7A;
    color: #F5F2EC;
}

.cookie-banner__btn--accept:hover {
    background: #F5F2EC;
    color: #2F4F46;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: #F5F2EC;
    border: 1px solid rgba(245, 242, 236, 0.25);
}

.cookie-banner__btn--reject:hover {
    border-color: #F5F2EC;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hero children inherit visibility from parent .hero__content on hover */

/* Section header reveal */
.section-tagline,
.section-title,
.section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-tagline.visible,
.section-title.visible,
.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title.visible {
    transition-delay: 0.1s;
}

.section-subtitle.visible {
    opacity: 0.75;
    transition-delay: 0.2s;
}

/* Premium hover glow on service cards */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 40px rgba(0, 155, 122, 0.15);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* Testimonial card entrance */
.testimonials__content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials__content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer link hover underline */
.footer__links a {
    position: relative;
}

.footer__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #009B7A;
    transition: width 0.3s ease;
}

.footer__links a:hover::after {
    width: 100%;
}

/* Contact detail hover */
.contact__detail {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__detail:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(47, 79, 70, 0.08);
}

/* Pulse animation on chatbot toggle */
.chatbot__toggle {
    animation: chatPulse 3s ease-in-out 3s 5;
}

.chatbot.active .chatbot__toggle {
    animation: none;
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(0, 155, 122, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(0, 155, 122, 0.65); }
}

/* Content visibility for below-fold sections (performance) */
.services,
.results,
.pricing,
.testimonials,
.faq,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* ========================================
   RESPONSIVE — 1200px
   ======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .header__nav-list {
        gap: 24px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services__grid > .service-card {
        width: calc((100% - 30px) / 2);
    }

    .results__grid {
        gap: 20px;
    }

    .pricing__grid {
        max-width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* ========================================
   CHATBOT — Desktop: ventana al lado del botón
   ======================================== */
@media (min-width: 769px) {
    .chatbot__window {
        bottom: 0;
        right: 72px;
        max-height: min(520px, calc(100vh - 120px));
    }

    @keyframes chatSlideUp {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes chatSlideDown {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(20px);
        }
    }
}

/* ========================================
   RESPONSIVE — 768px
   ======================================== */
@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(245, 242, 236, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        clip-path: circle(0% at calc(100% - 40px) 32px);
        visibility: hidden;
        transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s 0.6s;
    }

    .header__nav.open {
        clip-path: circle(150% at calc(100% - 40px) 32px);
        visibility: visible;
        transition: clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0s;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .header__nav-link {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                    color 0.3s ease;
    }

    .header__nav.open .header__nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .header__nav.open .header__nav-link:nth-child(1) { transition-delay: 0.15s; }
    .header__nav.open .header__nav-link:nth-child(2) { transition-delay: 0.22s; }
    .header__nav.open .header__nav-link:nth-child(3) { transition-delay: 0.29s; }
    .header__nav.open .header__nav-link:nth-child(4) { transition-delay: 0.36s; }
    .header__nav.open .header__nav-link:nth-child(5) { transition-delay: 0.43s; }

    .header__nav-cta {
        display: inline-flex;
        margin-top: 0;
        background: none;
        border: none;
        color: #009B7A;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 0;
        border-radius: 0;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                    color 0.3s ease;
        position: relative;
    }

    .header__nav-cta::after {
        content: '→';
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .header__nav-cta:hover {
        background: none;
        color: #007d62;
        transform: translateY(0);
        box-shadow: none;
    }

    .header__nav-cta:hover::after {
        transform: translateX(4px);
    }

    .header__nav.open .header__nav-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.50s;
    }

    .header__cta {
        display: none;
    }

    .header__toggle {
        display: flex;
    }

    /* Hero — tap to reveal content on mobile */
    .hero {
        height: 100svh;
        min-height: 480px;
        max-height: 750px;
    }

    /* Force-disable hover reveal on touch devices */
    .hero:hover .hero__slide.active .hero__slide-content {
        opacity: 0;
        transform: translateY(18px);
    }

    .hero:hover .hero__slide.active::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.25) 100%
        );
    }

    .hero__slide-content {
        opacity: 0;
        transform: translateY(18px);
        padding: 100px 24px 70px;
    }

    body.promo-active .hero__slide-content {
        padding-top: calc(100px + var(--promo-height, 40px));
    }

    /* Only show content via JS toggle (content-visible class) */
    .hero.content-visible .hero__slide.active .hero__slide-content {
        opacity: 1;
        transform: translateY(0);
    }

    .hero__slide::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.25) 100%
        ) !important;
        transition: background 0.4s ease;
    }

    .hero.content-visible .hero__slide.active::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.6) 100%
        ) !important;
    }

    .hero__tap-hint {
        display: flex;
    }

    .hero__slide-media img,
    .hero__slide-media video {
        object-position: center center;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero__arrow {
        width: 36px;
        height: 36px;
    }

    .hero__arrow--prev {
        left: 10px;
    }

    .hero__arrow--next {
        right: 10px;
    }

    .hero__dots {
        bottom: 56px;
    }

    /* About */
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-col {
        text-align: center;
    }

    .about__image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__content-col {
        text-align: center;
    }

    .about__text {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .about__features {
        align-items: center;
    }

    .about__feature {
        text-align: left;
        max-width: 400px;
    }

    .about__content-col .btn {
        margin: 0 auto;
    }

    .services {
        overflow: visible;
    }

    .services__header {
        margin-bottom: 32px;
    }

    /* Services — Carousel */
    .services__grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 8px 8px 24px;
        scrollbar-width: none;
        margin: 0 -8px;
        align-items: flex-start;
    }

    .services__grid::-webkit-scrollbar {
        display: none;
    }

    .services__grid .service-card {
        width: auto;
        min-width: calc(100% - 16px);
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(47, 79, 70, 0.08);
    }

    .services__grid .service-card:hover {
        transform: none;
        box-shadow: none;
    }

    .services__grid .service-card::after {
        display: none;
    }

    .service-card__image:not(.service-card__video-preview) {
        display: none;
    }

    .service-card__video-preview {
        display: block;
    }

    .service-card__play-btn svg {
        width: 40px;
        height: 40px;
    }

    .service-card__content {
        padding: 24px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-card__icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        margin-bottom: 14px;
    }

    .service-card__title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-card__desc {
        max-width: 340px;
        font-size: 0.88rem;
    }

    .service-card__benefits {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .services__dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 24px;
    }

    .services__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 155, 122, 0.2);
        border: none;
        cursor: pointer;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        padding: 0;
    }

    .services__dot.active {
        background: #009B7A;
        width: 28px;
        border-radius: 4px;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-card__quote {
        font-size: 5rem;
    }

    .testimonial-card__text {
        font-size: 1.1rem;
        line-height: 1.75;
    }

    .testimonial-card__inner {
        padding: 0 10px;
    }

    .testimonials__btn {
        width: 40px;
        height: 40px;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .footer__col--brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer__logo-img {
        height: 70px;
        margin: 0 auto;
    }

    .footer__col--brand .footer__social {
        justify-content: center;
    }

    .footer__col--brand .footer__desc {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__col {
        text-align: center;
    }

    .footer__col:last-child {
        grid-column: 1 / -1;
    }

    .footer__contact li {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Chatbot */
    .chatbot__window {
        width: min(360px, calc(100vw - 48px));
        right: 0;
        max-height: 480px;
    }

    .chatbot__messages {
        min-height: 220px;
        max-height: 260px;
    }

    .chatbot__quick-actions {
        padding: 6px 14px 8px;
        gap: 5px;
        max-height: 64px;
    }

    .chatbot__action {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    /* Promo bar */
    .promo-bar {
        font-size: 0.78rem;
        padding: 8px 0;
    }

    /* Team */
    .about__team-grid {
        gap: 20px;
    }

    /* Results */
    .results {
        padding: 60px 0;
    }

    .results__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 32px;
    }

    /* Pricing — Carousel */
    .pricing {
        padding: 80px 0;
    }

    .pricing__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding-top: 16px;
        padding-bottom: 8px;
        scrollbar-width: none;
        max-width: 100%;
        margin: 0 auto;
    }

    .pricing__grid::-webkit-scrollbar {
        display: none;
    }

    .pricing__grid .pricing-card {
        min-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 16px;
        transform: none;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }

    .pricing__dots {
        display: flex;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq__question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .faq__answer p {
        padding: 0 20px 16px;
    }

    /* Franchise */
    .franchise {
        padding: 60px 0;
    }

    .franchise__highlights {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ========================================
   RESPONSIVE — 480px
   ======================================== */
@media (max-width: 480px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
    }

    /* Promo bar */
    .promo-bar__long {
        display: none;
    }

    .promo-bar__short {
        display: inline;
    }

    /* Team */
    .about__team {
        margin-top: 40px;
    }

    .about__team-title {
        font-size: 1.3rem;
    }

    .about__team-grid {
        gap: 16px;
    }

    .team-card__avatar {
        width: 64px;
        height: 64px;
    }

    .team-card strong {
        font-size: 0.82rem;
    }

    .team-card__role {
        font-size: 0.72rem;
    }

    .team-card__exp {
        font-size: 0.68rem;
    }

    /* Pricing */
    .pricing {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card__price {
        font-size: 2rem;
    }

    /* FAQ */
    .faq {
        padding: 50px 0;
    }

    .faq__question {
        padding: 14px 16px;
        font-size: 0.88rem;
    }

    .faq__answer p {
        padding: 0 16px 14px;
        font-size: 0.85rem;
    }

    /* Modal & Popup */
    .modal__content,
    .popup-discount__content {
        padding: 32px 24px;
    }

    .popup-discount__content h3 {
        font-size: 1.3rem;
    }

    /* Google badge */
    .testimonials__google-badge {
        padding: 8px 14px;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero__slide-content {
        padding: 90px 24px 65px;
    }

    body.promo-active .hero__slide-content {
        padding-top: calc(90px + var(--promo-height, 40px));
    }

    .hero__description {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 260px;
    }

    .hero__scroll {
        display: none;
    }

    .hero__dots {
        bottom: 20px;
    }

    .hero__arrow {
        width: 34px;
        height: 34px;
    }

    .hero__arrow--prev {
        left: 6px;
    }

    .hero__arrow--next {
        right: 6px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about,
    .services,
    .testimonials,
    .contact,
    .franchise {
        padding: 60px 0;
    }

    .contact__form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .chatbot__window {
        max-height: 450px;
    }

    .chatbot__messages {
        min-height: 200px;
        max-height: 220px;
    }

    .chatbot__tooltip {
        right: 62px;
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .chatbot {
        bottom: 16px;
        right: 16px;
    }

    .chatbot__toggle {
        width: 54px;
        height: 54px;
    }
}

/* ========================================
   RESPONSIVE — 360px
   ======================================== */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hero {
        min-height: 420px;
        max-height: 650px;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__description {
        font-size: 0.82rem;
    }

    .hero__slide-content {
        padding: 80px 20px 60px;
    }

    body.promo-active .hero__slide-content {
        padding-top: calc(80px + var(--promo-height, 40px));
    }

    .hero__tap-hint {
        font-size: 0.72rem;
        padding: 6px 14px;
        bottom: 80px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn--lg {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .service-card__content {
        padding: 20px;
    }

    .testimonial-card__quote {
        font-size: 4rem;
    }

    .testimonial-card__text {
        font-size: 0.95rem;
    }

    .chatbot__window {
        width: calc(100vw - 32px);
        right: 0;
    }

    .contact__form {
        padding: 20px;
    }

    .footer {
        padding-top: 50px;
    }
}

/* ========================================
   SOCIAL STRIP
   ======================================== */
.social-strip {
    background: #F5F2EC;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(47, 79, 70, 0.08);
}

.social-strip__label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #2F4F46;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-strip__icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-strip__icons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: #fff;
    color: #2F4F46;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(47, 79, 70, 0.12);
    transition: all 0.3s ease;
}

.social-strip__icons a:hover {
    background: #009B7A;
    color: #fff;
    border-color: #009B7A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 155, 122, 0.25);
}

.social-strip__icons a svg {
    flex-shrink: 0;
    width: 22px;
    min-width: 22px;
    height: 22px;
    min-height: 22px;
    display: inline-block;
    max-width: none;
}

.footer__social a svg {
    flex-shrink: 0;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    display: inline-block;
    max-width: none;
}

/* Social strip responsive (debe ir después de las reglas base) */
@media (max-width: 480px) {
    .social-strip__icons a span {
        display: none;
    }

    .social-strip__icons a {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal { padding: 120px 0 80px; background: #F5F2EC; }
.legal h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #2F4F46; margin-bottom: 8px; }
.legal .legal__date { font-size: 0.85rem; color: #009B7A; margin-bottom: 40px; }
.legal h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #2F4F46; margin: 32px 0 12px; }
.legal h3 { font-size: 1.1rem; color: #2F4F46; margin: 20px 0 8px; }
.legal p, .legal li { font-size: 0.95rem; line-height: 1.8; color: #2F4F46; opacity: 0.85; }
.legal ul, .legal ol { padding-left: 20px; margin: 12px 0; }
.legal ul li { list-style: disc; margin-bottom: 6px; }
.legal ol li { margin-bottom: 6px; }
.legal a { color: #009B7A; text-decoration: underline; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; font-weight: 700; color: #009B7A; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal table th, .legal table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #C7C3B8; font-size: 0.88rem; }
.legal table th { background: #C7C3B8; color: #2F4F46; font-weight: 700; }
.legal table td { opacity: 0.85; }

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .loader, .promo-bar, .header, .hero, .chatbot, .cookie-banner,
    .popup-discount, .modal, .footer__bottom, .contact__map,
    .skip-link, .btn, .chatbot__window {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }

    a[href^="#"]::after,
    a[href^="javascript"]::after {
        content: "";
    }

    section {
        page-break-inside: avoid;
    }
}
