/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Paleta de Colores: Minimalista, Calma y Confianza */
    --color-bg: #F9F9F7;
    /* Warm off-white */
    --color-text: #2C3333;
    /* Soft rich black */
    --color-primary: #8CA3A3;
    /* Sage Green - Calma/Salud */
    --color-primary-dark: #7A9292;
    --color-secondary: #E0D8D3;
    /* Sand/Beige - Calidez */
    --color-accent: #D4A373;
    /* Muted Gold/Earth - Vitalidad sutil */

    /* Tipografía */
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Espaciado */
    --container-width: 1200px;
    --header-height: 80px;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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


body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* opacity: 0;  REMOVED: Handled by JS for Progressive Enhancement (Graceful Degradation) */
    /* visibility: hidden; REMOVED */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    margin-top: 0;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================
   2. UTILIDADES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 163, 163, 0.3);
}

.btn-outline {
    border: 1px solid var(--color-text);
    color: var(--color-text);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: white;
}

section {
    padding: 80px 0;
}

#empatia {
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f3 100%);
}

/* Clases para animación con GSAP */
/* Clases para animación con GSAP */
/* REMOVED: Opacity handled entirely by JS for visibility safety. */

/* =========================================
   3. HEADER & NAVEGACIÓN
   ========================================= */
.site-header {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(249, 249, 247, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    z-index: 1002;
    /* Por encima del menú móvil */
    position: relative;
}

.header-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo-img {
    width: 220px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

/* Navegación Desktop */
.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

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

/* Dropdown de servicios (Desktop) */
.nav-services {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-services-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-services-trigger::after {
    content: "▾";
    font-size: 0.65rem;
    line-height: 1;
    transform: translateY(1px);
    transition: transform 0.25s ease;
}

.nav-services-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid rgba(44, 51, 51, 0.13);
    border-radius: 14px;
    padding: 10px;
    display: grid;
    gap: 5px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1005;
}

.nav-services:hover .nav-services-menu,
.nav-services:focus-within .nav-services-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-services:hover .nav-services-trigger::after,
.nav-services:focus-within .nav-services-trigger::after {
    transform: translateY(1px) rotate(180deg);
}

.nav-services-item {
    font-family: var(--font-main);
    font-size: 0.92rem;
    color: #2f3838;
    padding: 9px 11px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-services-item:hover {
    background: rgba(140, 163, 163, 0.15);
    color: #1f2a2a;
}

/* Botón Hamburguesa (Móvil) */
.mobile-toggle {
    display: none;
    /* Oculto en desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Menú Móvil (Overlay) */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #bac2b4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    /* Debajo del logo y toggle */
    visibility: hidden;
    opacity: 0;
    /* GSAP controlará la animación */
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(44, 51, 51, 0.2);
    background: rgba(255, 255, 255, 0.75);
    color: var(--color-text);
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-nav-close:hover {
    background: #fff;
    border-color: rgba(44, 51, 51, 0.35);
    transform: scale(1.03);
}

.mobile-nav-logo {
    width: 220px;
    max-width: 80vw;
    height: auto;
    margin: 0 auto 28px;
    display: block;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.mobile-services-disclosure {
    width: min(320px, 82vw);
    margin: 0 auto;
}

.mobile-services-summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text);
}

.mobile-services-summary::-webkit-details-marker {
    display: none;
}

.mobile-services-summary::after {
    content: "▾";
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

.mobile-services-disclosure[open] .mobile-services-summary::after {
    transform: rotate(180deg);
}

.mobile-services-links {
    margin-top: 14px;
    display: grid;
    gap: 9px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(44, 51, 51, 0.18);
    border-radius: 12px;
    padding: 12px;
}

.mobile-service-link {
    display: block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.35;
    color: #2a3333;
    padding: 9px 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-service-link::after {
    display: none;
}

.mobile-service-link:hover {
    background: #fff;
    color: #1f2626;
}

body.thanks-page .mobile-services-summary {
    color: #fff;
}

.mobile-cta {
    width: min(300px, 82vw);
    margin: 0 auto;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 999px;
    padding: 13px 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.mobile-nav-list .mobile-cta.btn-outline {
    border-color: rgba(44, 51, 51, 0.7);
    color: #2c3333;
    background: rgba(255, 255, 255, 0.38);
}

.mobile-nav-list .mobile-cta.btn-outline:hover {
    background: #2c3333;
    color: #fff;
}

/* =========================================
   4. SECCIONES PRINCIPALES
   ========================================= */

/* Hero */
.hero-section {
    text-align: center;
    padding: calc(var(--header-height) + 100px) 0 100px;
    background-image: url('../img/bg-paula.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(207, 183, 152, 0.62) 0%, rgba(207, 183, 152, 0.56) 45%, rgba(207, 183, 152, 0.66) 100%);
    z-index: -1;
}

.hero-section-dark::before {
    background: linear-gradient(180deg, rgba(207, 183, 152, 0.78) 0%, rgba(207, 183, 152, 0.72) 45%, rgba(207, 183, 152, 0.82) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #f3f3ee;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 14px;
    border-radius: 999px;
}

.hero-title {
    font-size: 3.5rem;
    margin: 0 auto 25px;
    max-width: 900px;
    line-height: 1.1;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-text {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.94);
    text-align: center;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
}

.hero-section .btn-outline:hover {
    background: #fff;
    color: #1d2323;
}

/* Empatía / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-large {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Constelación destacada */
.constelacion-spotlight {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(140, 163, 163, 0.24), transparent 42%),
        radial-gradient(circle at 92% 82%, rgba(212, 163, 115, 0.22), transparent 36%),
        linear-gradient(180deg, #fdfcf9 0%, #f2f4f1 100%);
    border-top: 1px solid rgba(44, 51, 51, 0.08);
    border-bottom: 1px solid rgba(44, 51, 51, 0.08);
}

.constelacion-spotlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.constelacion-copy,
.constelacion-panel {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(44, 51, 51, 0.12);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.06);
}

.constelacion-copy {
    padding: 38px 34px;
}

.constelacion-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(140, 163, 163, 0.2);
    border: 1px solid rgba(122, 146, 146, 0.34);
    color: #566868;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.72rem;
    font-weight: 700;
}

.constelacion-copy h2 {
    margin: 0 0 14px;
    font-size: 2.45rem;
    line-height: 1.1;
    color: #232b2b;
}

.constelacion-copy p {
    margin: 0 0 14px;
    color: #555f5f;
    line-height: 1.8;
}

.constelacion-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 26px;
}

.constelacion-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(122, 146, 146, 0.28);
    background: rgba(140, 163, 163, 0.16);
    color: #516262;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
}

.constelacion-cta {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.constelacion-panel {
    padding: 32px 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}

.constelacion-panel h3 {
    margin: 0 0 14px;
    font-family: var(--font-main);
    font-size: 1.18rem;
    color: #2a3232;
    font-weight: 600;
}

.constelacion-panel ul {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.constelacion-panel li {
    position: relative;
    padding-left: 28px;
    color: #5a5a5a;
    line-height: 1.7;
}

.constelacion-panel li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 0.95rem;
}

.constelacion-link {
    font-weight: 600;
    color: #4f6767;
    border-bottom: 1px solid rgba(79, 103, 103, 0.35);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.constelacion-link:hover {
    color: #2f3c3c;
    border-color: rgba(47, 60, 60, 0.55);
}

/* Servicios */
/* Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.service-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    /* Más redondo */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Sombra suave base */
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Sombra profunda al hover */
    border-color: rgba(0, 0, 0, 0.02);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 25px;
}

.badge {
    padding: 8px 16px;
    font-size: 0.7rem;
    border-radius: 100px;
    /* Pill shape completo */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.badge-primary {
    background: rgba(140, 163, 163, 0.15);
    /* Transparencia para blending */
    color: var(--color-primary-dark);
}

.badge-secondary {
    background: rgba(212, 163, 115, 0.15);
    color: #b5804c;
    /* Accent más oscuro legible */
}

/* Feature Lists inside Cards */
.service-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--color-text);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Sobre Mí */
.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 500px;
    position: relative;
}

.img-frame {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-text);
    top: 20px;
    left: 20px;
    z-index: 1;
    border-radius: 8px;
}

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f3 100%);
}

.faq-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
    color: #626262;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.faq-item {
    margin-bottom: 0;
    background: #fff;
    border: 1px solid rgba(44, 51, 51, 0.12);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 163, 163, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-family: var(--font-main);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    cursor: default;
}

.faq-question::before {
    content: "?";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(140, 163, 163, 0.2);
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-answer {
    margin: 0;
    color: #626262;
    line-height: 1.75;
}

/* Cómo llegar */
.location-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f3 100%);
    border-top: 1px solid rgba(44, 51, 51, 0.08);
    overflow: hidden;
}

.location-section::before,
.location-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.location-section::before {
    width: 340px;
    height: 340px;
    top: -140px;
    right: -100px;
    background: rgba(140, 163, 163, 0.16);
    animation: locationFloat 9s ease-in-out infinite;
}

.location-section::after {
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: -120px;
    background: rgba(212, 163, 115, 0.18);
    animation: locationFloat 11s ease-in-out infinite reverse;
}

@keyframes locationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.location-section .container {
    position: relative;
    z-index: 1;
}

.location-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.location-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(140, 163, 163, 0.17);
    border: 1px solid rgba(122, 146, 146, 0.3);
    color: #5f7272;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.location-head .section-title {
    margin-bottom: 12px;
}

.location-intro {
    margin: 0 auto;
    max-width: 640px;
    color: #5d5d5d;
    line-height: 1.75;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    align-items: stretch;
}

.location-info {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(44, 51, 51, 0.14);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.location-info::before {
    content: "";
    position: absolute;
    left: 52px;
    top: 66px;
    bottom: 122px;
    width: 2px;
    background: linear-gradient(180deg, rgba(140, 163, 163, 0.55), rgba(212, 163, 115, 0.45));
}

.location-item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.location-item+.location-item {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px dashed rgba(44, 51, 51, 0.15);
}

.location-pin {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-primary), #6f8f8f);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(122, 146, 146, 0.35);
    position: relative;
}

.location-pin::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(140, 163, 163, 0.45);
    animation: locationPinPulse 2.2s ease-out infinite;
}

.location-pin-alt {
    background: linear-gradient(145deg, var(--color-accent), #b7824f);
    box-shadow: 0 10px 18px rgba(180, 130, 79, 0.35);
}

@keyframes locationPinPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.16);
        opacity: 0;
    }

    100% {
        transform: scale(1.16);
        opacity: 0;
    }
}

.location-copy h3 {
    font-family: var(--font-main);
    margin: 1px 0 6px;
    font-size: 1.05rem;
    font-weight: 600;
}

.location-copy p {
    margin: 0 0 10px;
    color: #555;
    line-height: 1.65;
}

.location-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(140, 163, 163, 0.16);
    color: #556868;
    border: 1px solid rgba(122, 146, 146, 0.28);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.2px;
    font-weight: 600;
}

.location-actions {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-actions .btn {
    flex: 1 1 220px;
}

.location-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(44, 51, 51, 0.12);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.09);
    background: #fff;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.location-map-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.12);
}

.location-map-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #f5f6f4 0%, #ecefeb 100%);
    border-bottom: 1px solid rgba(44, 51, 51, 0.1);
}

.location-map-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.location-map-topbar span:nth-child(1) {
    background: #ff6e6e;
}

.location-map-topbar span:nth-child(2) {
    background: #ffcb66;
}

.location-map-topbar span:nth-child(3) {
    background: #66ce87;
}

.location-map-topbar p {
    margin: 0 0 0 8px;
    font-size: 0.82rem;
    color: #677070;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.location-map {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 400px;
    flex: 1;
}

/* Agenda */
.booking-main {
    position: relative;
    padding: calc(var(--header-height) + 42px) 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f5f3 0%, #eef1ee 100%);
}

.booking-main::before,
.booking-main::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.booking-main::before {
    width: 360px;
    height: 360px;
    top: -170px;
    left: -130px;
    background: rgba(140, 163, 163, 0.2);
}

.booking-main::after {
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -150px;
    background: rgba(212, 163, 115, 0.18);
}

.booking-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 30px;
    align-items: start;
}

.booking-intro {
    background: #ffffff;
    border: 1px solid rgba(44, 51, 51, 0.12);
    border-radius: 22px;
    padding: 36px 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.booking-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #5d7474;
    border: 1px solid rgba(122, 146, 146, 0.35);
    background: rgba(140, 163, 163, 0.18);
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 16px;
}

.booking-title {
    font-size: 2.35rem;
    color: #212a2a;
    margin: 0 0 14px;
    line-height: 1.15;
}

.booking-copy {
    margin: 0 0 28px;
    color: #5a5a5a;
    line-height: 1.75;
}

.booking-points {
    display: grid;
    gap: 14px;
}

.booking-point {
    background: #f9f9f7;
    border: 1px solid rgba(44, 51, 51, 0.1);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
}

.booking-point-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--color-primary), #6f8f8f);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(122, 146, 146, 0.28);
}

.booking-point h3 {
    margin: 1px 0 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: #2d3434;
}

.booking-point p {
    margin: 0;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
}

.booking-note {
    margin-top: 18px;
    background: rgba(212, 163, 115, 0.14);
    border: 1px solid rgba(180, 130, 79, 0.3);
    border-radius: 12px;
    padding: 14px 16px;
    color: #66492f;
    line-height: 1.6;
    font-size: 0.9rem;
}

.booking-widget-card {
    background: #fff;
    border: 1px solid rgba(44, 51, 51, 0.15);
    border-radius: 22px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}

.booking-widget-head {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(44, 51, 51, 0.1);
    background: linear-gradient(180deg, #f9faf8 0%, #f2f4f1 100%);
}

.booking-widget-eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.72rem;
    color: #738080;
    font-weight: 700;
}

.booking-widget-head h2 {
    margin: 0 0 6px;
    color: #253030;
    font-size: 1.65rem;
}

.booking-widget-head p {
    margin: 0;
    color: #6a6a6a;
    font-size: 0.95rem;
}

.booking-widget-shell {
    padding: 12px;
}

.booking-widget-shell .calendly-inline-widget {
    min-width: 320px;
    height: 740px;
}

/* Footer */
.footer-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-info {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.social-link:hover {
    color: var(--color-accent);
    opacity: 1;
    transform: translateY(-3px);
}

.social-icon {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 30px;
}

/* =========================================
   5. RESPONSIVE MEDIA QUERIES
   ========================================= */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .container {
        padding: 0 30px;
    }

    .constelacion-spotlight-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-wrap {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Header & Nav */
    .desktop-nav {
        display: none;
        /* Ocultar menú normal */
    }

    .mobile-toggle {
        display: flex;
        /* Mostrar hamburguesa */
    }

    .header-logo-img {
        height: 50px;
    }

    /* Layout Stacking */
    .features-grid,
    .services-grid,
    .footer-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        /* Columna única */
        gap: 30px;
    }

    /* Hero Adjustments */
    .hero-section {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .constelacion-copy {
        padding: 30px 20px;
    }

    .constelacion-copy h2 {
        font-size: 2rem;
    }

    .constelacion-panel {
        padding: 24px 20px;
    }

    .constelacion-cta {
        width: 100%;
    }

    .constelacion-cta .btn {
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
        box-sizing: border-box;
    }

    /* About Section */
    .about-container {
        flex-direction: column-reverse;
        /* Texto arriba en móvil? No, texto abajo suele ser mejor, o imagen arriba. Dejemos standard column */
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        height: 350px;
        width: 100%;
    }

    /* Servicios */
    /* Servicios */
    .service-card {
        padding: 30px 20px;
        /* Reducir padding lateral drásticamente */
    }

    .service-card .btn {
        white-space: normal;
        /* Permitir que el texto baje si es muy largo */
        height: auto;
        padding: 12px 10px;
        /* Menos padding lateral si es necesario */
        line-height: 1.3;
    }

    .faq-item {
        padding: 20px 18px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-head {
        margin-bottom: 24px;
    }

    .location-kicker {
        font-size: 0.68rem;
        letter-spacing: 1.3px;
        padding: 7px 12px;
    }

    .location-intro {
        font-size: 0.95rem;
    }

    .location-info {
        padding: 24px 20px;
    }

    .location-info::before {
        left: 37px;
        top: 64px;
        bottom: 150px;
    }

    .location-item {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .location-pin {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }

    .location-copy h3 {
        font-size: 0.98rem;
    }

    .location-copy p {
        font-size: 0.94rem;
    }

    .location-actions .btn {
        flex: 1 1 100%;
    }

    .location-map-wrap,
    .location-map {
        min-height: 340px;
    }

    .booking-main {
        padding: calc(var(--header-height) + 28px) 0 64px;
    }

    .booking-intro {
        padding: 26px 20px;
    }

    .booking-title {
        font-size: 2rem;
    }

    .booking-point {
        grid-template-columns: 36px 1fr;
    }

    .booking-point-icon {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }

    .booking-widget-head {
        padding: 20px 18px 16px;
    }

    .booking-widget-head h2 {
        font-size: 1.35rem;
    }

    .booking-widget-shell {
        padding: 8px;
    }

    .booking-widget-shell .calendly-inline-widget {
        min-width: 100%;
        height: 700px;
    }
}

/* =========================================
   6. ESTILOS DE FORMULARIO (CONSULTA DIGITAL)
   ========================================= */
.form-page-main {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f3f4f2 0%, #ecf0ed 100%);
}

.form-page-main::before,
.form-page-main::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.form-page-main::before {
    width: 360px;
    height: 360px;
    top: -160px;
    left: -130px;
    background: rgba(140, 163, 163, 0.18);
}

.form-page-main::after {
    width: 280px;
    height: 280px;
    bottom: -120px;
    right: -100px;
    background: rgba(212, 163, 115, 0.18);
}

.form-page-wrap {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
}

.form-page-hero {
    max-width: 960px;
    margin: 0 auto 30px;
    background: #fff;
    border: 1px solid rgba(44, 51, 51, 0.12);
    border-radius: 20px;
    padding: 34px 34px 30px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.form-page-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #5d7474;
    border: 1px solid rgba(122, 146, 146, 0.3);
    background: rgba(140, 163, 163, 0.17);
}

.form-page-hero h1 {
    margin: 0 0 10px;
    font-size: 2.6rem;
    color: #222b2b;
}

.form-page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #5f5f5f;
    line-height: 1.75;
}

.form-stepper {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.form-step-item {
    background: #f8f9f7;
    border: 1px solid rgba(44, 51, 51, 0.1);
    border-radius: 12px;
    padding: 12px 10px;
}

.form-step-item span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--color-primary), #6f8f8f);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 7px;
}

.form-step-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #5f5f5f;
    line-height: 1.35;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-container-enhanced {
    max-width: 960px;
    border: 1px solid rgba(44, 51, 51, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
    padding: 34px;
}

.form-top-disclaimer {
    margin-bottom: 22px;
    border-radius: 10px;
}

.form-container-enhanced #consultaForm {
    display: grid;
    gap: 20px;
}

.form-section-card {
    background: #fdfdfc;
    border: 1px solid rgba(44, 51, 51, 0.1);
    border-radius: 16px;
    padding: 24px 22px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e9ece7;
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 1.35rem;
}

.form-section-title span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(140, 163, 163, 0.18);
    color: var(--color-primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-section-desc {
    margin: -6px 0 20px;
    color: #666;
    font-size: 0.92rem;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid-two {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-sublabel {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    margin-top: -4px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    /* Asegura que el padding no rompa el ancho */
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(140, 163, 163, 0.2);
}

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

.form-textarea-lg {
    min-height: 300px;
}

.form-textarea-md {
    min-height: 110px;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.char-counter.warning {
    color: #D4A373;
    /* Accent color */
}

.char-counter.limit {
    color: #d9534f;
    /* Red for limit */
}

.form-error-msg {
    display: none;
    font-size: 0.85rem;
    color: #d9534f;
    margin-top: 5px;
}

.form-control.error {
    border-color: #d9534f;
}

.form-control.error+.form-error-msg {
    display: block;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input {
    margin-top: 3px;
}

.form-consent-card {
    background: #f9f9f7;
}

.form-consent-list {
    margin-bottom: 0;
    display: grid;
    gap: 12px;
}

.form-submit-btn {
    width: 100%;
    margin-top: 6px;
    font-size: 1.08rem;
    padding: 15px 24px;
    border-radius: 12px;
    letter-spacing: 0.2px;
}

.disclaimer-box {
    background-color: #fff8e1;
    /* Amarillo suave alerta */
    border-left: 4px solid #fec107;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    border-radius: 4px;
}


/* Grid Para Quién Es (Responsive) */
.content-illu-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-col {
    flex: 1;
}

.illu-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.abstract-circle {
    width: 300px;
    height: 300px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 35px rgba(44, 51, 51, 0.18),
        0 0 0 12px rgba(140, 163, 163, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.abstract-circle:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 45px rgba(44, 51, 51, 0.24),
        0 0 0 14px rgba(140, 163, 163, 0.24);
}

.reasons-list {
    margin-top: 20px;
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .content-illu-grid {
        flex-direction: column-reverse;
        /* Imagen arriba o abajo, aquí elegi abajo para priorizar texto */
        gap: 30px;
        text-align: center;
    }

    .reasons-list {
        text-align: left;
        /* Mantener lista legible */
        padding-left: 20px;
        display: inline-block;
        /* Centrar bloque de lista */
    }

    .abstract-circle {
        width: 200px;
        height: 200px;
        /* Más pequeño en mobile */
    }
}

.format-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    background: #f0f4f4;
    padding: 5px;
    border-radius: 8px;
    width: fit-content;
}

.toggle-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-btn.active {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.input-container {
    display: none;
    /* Ocultos por defecto, JS activa uno */
}

.input-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* File Upload */
.file-upload-wrapper {
    border: 2px dashed #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.file-upload-wrapper:hover {
    border-color: var(--color-primary);
    background: #f0f4f4;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-text {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.file-upload-text span {
    font-size: 0.8rem;
    color: #999;
}

.file-name-display {
    margin-top: 10px;
    font-weight: 500;
    color: var(--color-primary);
}

/* Grabadora de Voz */
.recorder-separator {
    text-align: center;
    margin: 20px 0;
    color: #999;
    font-size: 0.9rem;
    position: relative;
}

.recorder-separator::before,
.recorder-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.recorder-separator::before {
    left: 0;
}

.recorder-separator::after {
    right: 0;
}

.recorder-ui {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
}

.record-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FF5252;
    color: white;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.record-btn:hover {
    transform: scale(1.1);
    background: #ff3b3b;
}

.record-btn.recording {
    background: #fff;
    color: #FF5252;
    border: 2px solid #FF5252;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

.timer {
    font-family: monospace;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.recording-status {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.audio-preview {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.audio-preview audio {
    width: 100%;
}

.btn-delete-audio {
    background: transparent;
    border: 1px solid #d9534f;
    color: #d9534f;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-delete-audio:hover {
    background: #ffeeee;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

@media (max-width: 1024px) {
    .form-page-wrap {
        padding-top: 114px;
        padding-bottom: 74px;
    }

    .form-page-hero h1 {
        font-size: 2.3rem;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-page-main::before {
        width: 240px;
        height: 240px;
        top: -120px;
        left: -100px;
    }

    .form-page-main::after {
        width: 190px;
        height: 190px;
        right: -70px;
        bottom: -90px;
    }

    .form-page-wrap {
        padding-top: 104px;
        padding-bottom: 56px;
    }

    .form-page-hero {
        padding: 26px 20px 22px;
        border-radius: 16px;
    }

    .form-page-hero h1 {
        font-size: 2rem;
    }

    .form-stepper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-container-enhanced {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .form-section-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .form-section-title {
        font-size: 1.18rem;
    }

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

    .form-submit-btn {
        font-size: 1rem;
    }
}

/* =========================================
   BOTON FLOTANTE WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px 9px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(11, 39, 89, 0.12);
    box-shadow: 0 12px 28px rgba(11, 39, 89, 0.18);
    color: #123161;
    text-decoration: none;
    animation: waFloat 4s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 34px rgba(11, 39, 89, 0.24);
    background: #ffffff;
    outline: none;
}

.whatsapp-float__icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2ed874 0%, #1ea855 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    flex-shrink: 0;
}

.whatsapp-float__icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(46, 216, 116, 0.34);
    animation: waGlow 2.3s infinite;
}

.whatsapp-float__text {
    max-width: 215px;
    font-size: 0.84rem;
    line-height: 1.25;
    font-weight: 500;
}

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

@keyframes waGlow {
    0% {
        opacity: 0.9;
        transform: scale(0.84);
    }
    70% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        gap: 8px;
        padding: 7px 10px 7px 7px;
    }

    .whatsapp-float__icon {
        width: 36px;
        height: 36px;
        font-size: 0.74rem;
    }

    .whatsapp-float__text {
        max-width: 160px;
        font-size: 0.76rem;
    }
}

@media (max-width: 520px) {
    .whatsapp-float {
        padding: 7px;
    }

    .whatsapp-float__text {
        display: none;
    }

    .whatsapp-float__icon {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}
