 /* ==========================================================================
           RESET & BASIC STYLES
           ========================================================================== */
        :root {
            --primary-blue: #0d2c54;
            --accent-blue: #1d5288;
            --btn-blue: #1665d8;
            --text-dark: #222222;
            --text-muted: #555555;
            --bg-light: #f9f9f9;
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        
.aparece-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.aparece-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

        /* ==========================================================================
           HEADER & NAVIGATION
           ========================================================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
            color: #fff;
            transition: background 0.3s ease;
        }

        header.scrolled {
            background: rgba(13, 44, 84, 0.95);
            padding: 15px 50px;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .logo {
            text-align: center;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .logo span {
            display: block;
            font-size: 0.6rem;
            letter-spacing: 5px;
            font-family: var(--font-body);
        }

        /* ==========================================================================
           HERO SECTION (CON VIDEO DE FONDO)
           ========================================================================== */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

       .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            object-fit: cover;
            object-position: center; /* Asegura que el centro del video siempre esté enfocado */
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 55px;
            font-weight: 400;
            letter-spacing: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 300;
            max-width: 650px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--btn-blue);
            color: #fff;
            padding: 14px 32px;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
            border-radius: 5px;
        }

        .btn-primary:hover {
            background-color: #0e48a1;
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        /* ==========================================================================
           SECCIÓN NUESTRA ESENCIA
           ========================================================================== */
        .section-esencia {
            padding: 106px 8% 20px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            background-color: #fff;
        }

        .esencia-content .section-tag {
            font-size: 14px;
            color: #00A3B4;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .esencia-content h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--accent-blue);
            margin-bottom: 30px;
            font-weight: 500;
            letter-spacing: 2px;
        }

        .esencia-content p {
            /* color: var(--text-muted); */
            color: #000;
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.8;
            font-weight: 400;
            text-align: justify;
        }

        .esencia-img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 2px;
        }

        /* ==========================================================================
           BANNER INTERMEDIO
           ========================================================================== */
        .banner-intermedio {
            width: 100%;
            height: 350px;
            overflow: hidden;
        }

        .banner-intermedio img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ==========================================================================
           PAQUETES (6 DÍAS / 5 NOCHES & 5 DÍAS / 4 NOCHES)
           ========================================================================== */
        .section-paquetes {
            padding: 80px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background-color: #fff;
        }

        .card-paquete {
            position: relative;
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 50px 30px 40px;
            border-radius: 4px;
            border: 8px solid transparent;
            border-image: linear-gradient(to bottom, #d4af37, #8a7322) 1;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 600px;
        }

        .card-paquete::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85));
            z-index: 1;
        }

        .card-paquete > * {
            position: relative;
            z-index: 2;
        }

        .paquete-subtitle {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .paquete-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            color: #f1d38a;
            margin: 10px 0 5px;
            letter-spacing: 2px;
        }

        .paquete-desc {
            font-size: 1.2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .icon-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .icon-item {
            font-size: 0.65rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .icon-item span {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .price-box {
            border-top: 1px solid rgba(255,255,255,0.2);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding: 15px 0;
          
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .price-val {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: #fff;
        }

        .price-sub {
            font-size: 0.65rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-align: left;
            color: #ddd;
        }

        .btn-outline {
            display: inline-block;
            border: 1px solid #fff;
            padding: 10px 25px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            transition: 0.3s;
        }

        .btn-outline:hover {
            background-color: #fff;
            color: #000;
        }

        /* ==========================================================================
           HABITACIONES (SANTUARIO DE DESCANSO - SLIDER/CAROUSEL)
           ========================================================================== */
        .section-habitaciones {
            padding: 80px 8%;
            text-align: center;
            background-color: #fff;
            position: relative;
        }

        .section-habitaciones h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--accent-blue);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .section-habitaciones .sub-head {
            font-size: 0.85rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 50px;
        }

        .carousel-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .carousel-container {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            padding: 10px 0;
        }

        .carousel-container::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .room-card {
            min-width: 31%;
            flex: 0 0 auto;
            text-align: left;
            background-color: #fff;
        }

        .room-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .room-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--accent-blue);
            margin-bottom: 10px;
        }

        .room-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .room-capacity {
            font-size: 0.75rem;
            font-weight: 600;
            color: #444;
            margin-bottom: 15px;
        }

        .room-includes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            font-size: 0.7rem;
            color: var(--text-muted);
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .carousel-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid #ddd;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .carousel-btn.prev { left: -20px; }
        .carousel-btn.next { right: -20px; }

        /* ==========================================================================
           EXPERIENCIA & TARJETAS
           ========================================================================== */
        .section-experiencia {
            position: relative;
            padding: 100px 8% 180px;            
            color: #fff;
            text-align: center;
        }

        .section-experiencia h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .section-experiencia p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            font-weight: 300;
        }

        .cards-overlay-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 8%;
            margin-top: -100px;
            position: relative;
            z-index: 5;
        }

        .overlay-card {
            position: relative;
            height: 380px;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .overlay-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .overlay-card:hover img {
            transform: scale(1.05);
        }

        .card-text-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            color: #fff;
            text-align: left;
        }

        .card-text-content h4 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .card-text-content p {
            font-size: 0.75rem;
            color: #ddd;
            line-height: 1.4;
        }

/* ==========================================================================
   SECCIÓN DE VIDEO REDUCIDO / CENTRADO
   ========================================================================== */

/* Contenedor padre: Da el espacio/margen respecto a los lados y otras secciones */
.video-section-container {
    width: 100%;
    padding: 40px 20px; /* Margen superior/inferior y a los costados */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* La tarjeta/marco que limita el tamaño del video */
.video-card {
    position: relative;
    width: 100%;
    max-width: 900px; /* Ancho máximo del contenedor en PC */
    height: 550px;     /* Alto fijo que tendrá el bloque en PC */
    border-radius: 16px; /* Bordes redondeados elegantes */
    overflow: hidden;  /* Evita que el video se salga de las esquinas redondeadas */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Sombra suave para darle profundidad */
}

/* El video dentro del marco */
.video-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Ajuste responsive para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    .video-section-container {
        padding: 20px 15px; /* Menos margen en móviles */
    }
    .video-card {
        height: 700px; /* Alto más reducido para pantallas chicas */
        border-radius: 12px;
    }
}


        /* ==========================================================================
           RESTAURANTE CIELO AZUL & GALERÍA
           ========================================================================== */
        .section-restaurante {
            padding: 20px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            background-color: #fff;
        }

        .restaurante-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .restaurante-content h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--accent-blue);
            margin-bottom: 20px;
        }

        .restaurante-content p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.8;
            text-align: justify;
        }

        .section-galeria-azul {
            background-color: var(--primary-blue);
            color: #fff;
            padding: 80px 8%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .galeria-info .brand {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            letter-spacing: 2px;
        }

        .galeria-info .sub-brand {
            font-size: 14px;
            letter-spacing: 3px;
            color: #4da6ff;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .galeria-info h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .galeria-info p {
            font-size: 0.85rem;
            color: #ccc;
            line-height: 1.8;
            font-weight: 300;
        }

        .grid-galeria {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .grid-galeria img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        /* ==========================================================================
           FOOTER & CTA FINAL
           ========================================================================== */
        .cta-final {
            position: relative;
            padding: 120px 20px;
            text-align: center;
            color: #fff;           
        }

        .cta-final h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            max-width: 700px;
            margin: 0 auto 30px;
            font-weight: 400;
            line-height: 1.3;
        }

        footer {
            background-color: var(--primary-blue);
            color: #fff;
            padding: 60px 8% 30px;
            font-size: 0.8rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #00A3B4;
        }

        .footer-col p, .footer-col a {
            color: #bbb;
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-bottom {
            text-align: center;
            color: #fff;
            font-size: 14px;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 25px;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 1000;
        }

        .img-logo-footer{
            width: 200px;
            margin-bottom: 15px;
        }

        .logo{
            text-align: center; 
            margin-bottom: 20px;
        }
        .logo-footer{
            text-align: left; 
            margin-bottom: 20px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .section-esencia, .section-paquetes, .section-restaurante, .section-galeria-azul, .footer-grid {
                grid-template-columns: 1fr;
            }
            .cards-overlay-container {
                grid-template-columns: 1fr;
                margin-top: 20px;
            }
            .room-card {
                min-width: 80%;
            }
            .hero-title {
                font-size: 2.2rem;
            }

             .footer-grid {
                text-align: center;              
               
            }
            .logo {
                flex-direction: column; /* Apila la imagen arriba y el texto abajo */
                justify-content: center; /* Centra verticalmente */
                align-items: center;     /* Centra horizontalmente */
                text-align: center;      /* Asegura que el texto esté centrado */
            }
            .logo-footer {
                flex-direction: column; /* Apila la imagen arriba y el texto abajo */
                justify-content: center; /* Centra verticalmente */
                align-items: center;     /* Centra horizontalmente */
                text-align: center;      /* Asegura que el texto esté centrado */
            }

            .img-logo-footer {
                margin: 0 auto; /* Garantiza el centrado de la imagen si tiene block */
                margin-bottom: 15px;
            }
        }

/* ==========================================================================
           INDEX PRINCIPAL
========================================================================== */

    .mapdiv {   
    width: 100%;
    height: 400px;   
    display: flex;              /* activa flexbox */
    justify-content: center;    /* centra horizontal */
    align-items: center;        /* centra vertical */
    position: relative;         /* ya no fixed */
    padding: 10px;
   
} 

.map {
    width: 100%;
    max-width: 100%;            /* que se adapte en pantallas pequeñas */
    height: 100%;
    border: 0;
    border-radius: 12px;
}
 .hero-video-bg {
  background: url('elementos/fotos/poster.webp') center/cover no-repeat;
}


/* Tarjetas de experiencias */
.cards-overlay-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 8%;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.overlay-card {
    position: relative;
    height: 380px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #111;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

/* Slider */
.card-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.6s ease;
    z-index: 1;
}

.card-slider img.active {
    opacity: 1;
    z-index: 2;
}

.overlay-card:hover .card-slider img.active {
    transform: scale(1.05);
}

/* Texto overlay */
.card-text-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3) 70%, transparent);
    color: #fff;
    text-align: left;
    z-index: 10;
    pointer-events: none;
}

.card-text-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.card-text-content p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.4;
    text-align: justify;
}

/* Imagen esencia */
.esencia-container {  
    width: 100%;
    height: 550px; 
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.esencia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.esencia-img:hover {
    transform: scale(1.1);
}

/* Imagen restaurante */
.restaurant-container {  
    width: 100%;
    height: 400px; 
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.restaurant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.restaurant-img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
    .cards-overlay-container {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .section-esencia {
        padding: 100px 3% 20px 3%;        
    }

    .section-paquetes {
        padding: 20px 3% 20px 3%;
           
    }
}









/* ==========================================================================
           FOOTER
========================================================================== */
 /* --- ESTILOS PARA EL BOTÓN FLOTANTE --- */
        .whatsapp-float {
            position: fixed;        /* Fijo en la pantalla */
            bottom: 30px;           /* Distancia desde el pie de página */
            right: 30px;            /* Distancia desde el lado derecho */
            width: 60px;            /* Ancho del botón */
            height: 60px;           /* Alto del botón */
            background-color: #25d366; /* Color verde oficial de WhatsApp */
            color: #fff;            /* Color del icono (blanco) */
            border-radius: 50%;     /* Botón circular */
            text-align: center;     /* Centrar el icono */
            font-size: 35px;        /* Tamaño del icono */
            box-shadow: 2px 2px 6px rgba(0,0,0,0.3); /* Sombra suave de tarjeta */
            z-index: 1000;          /* Asegurar que esté por encima de todo */
            text-decoration: none;  /* Quitar subrayado del enlace */
            
            /* Contenedor flex para centrar perfectamente el icono */
            display: flex;
            align-items: center;
            justify-content: center;
            
            /* --- 2. CONFIGURACIÓN DE LA ANIMACIÓN DE DESTELLO --- */
            /* La animación 'whatsapp-pulse' dura 10 segundos y se repite infinitamente */
            animation: whatsapp-pulse 10s ease-out infinite;
        }

        /* --- 3. DEFINICIÓN DE LA ANIMACIÓN DE DESTELLO SUAVE --- */
        @keyframes whatsapp-pulse {
            /* Durante la mayor parte del tiempo (del 0% al 90%), el botón está quieto */
            0%, 90% {
                box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
                transform: scale(1);
            }
            /* En el 95%, ocurre un destello y el botón crece ligeramente */
            95% {
                box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.5); /* Destello verde suave */
                transform: scale(1.1); /* Ligero movimiento suave hacia el frente */
            }
            /* Al 100%, vuelve a su estado normal */
            100% {
                box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
                transform: scale(1);
            }
        }

        /* --- 4. ESTILOS PARA EL MENSAJE FLOTANTE AL COSTADO --- */
        .whatsapp-tooltip {
            position: absolute;     /* Posicionado relativo al botón */
            right: 80px;            /* A la izquierda del botón (60px botón + 20px espacio) */
            top: 50%;               /* Centrado verticalmente */
            transform: translateY(-50%); /* Ajuste fino de centrado vertical */
            background-color: #fff; /* Fondo blanco */
            color: #333;            /* Color de texto oscuro */
            padding: 10px 20px;     /* Espaciado interno */
            border-radius: 8px;     /* Bordes redondeados */
            font-size: 14px;        /* Tamaño de fuente */
            white-space: nowrap;    /* Evitar que el texto se rompa en líneas */
            box-shadow: 2px 2px 10px rgba(0,0,0,0.1); /* Sombra suave para el mensaje */
            font-family: Arial, sans-serif;
            pointer-events: none;   /* El mensaje no interfiere con los clics */
            
            /* --- ESTADO INICIAL DEL MENSAJE (Oculto) --- */
            opacity: 0;             /* Invisible por defecto */
            visibility: hidden;     /* Oculto para accesibilidad */
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; /* Transición suave */
            transform: translateY(-50%) translateX(10px); /* Un poco desplazado a la derecha */
        }

        /* Pequeño triángulo que apunta al botón */
        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            left: 100%;            /* Al final del mensaje */
            top: 50%;               /* Centrado vertical */
            margin-top: -5px;       /* Ajuste de centrado */
            border-width: 5px;      /* Tamaño del triángulo */
            border-style: solid;
            border-color: transparent transparent transparent #fff; /* Triángulo blanco */
        }

        /* --- 5. MOSTRAR EL MENSAJE AL PONER EL CURSOR (HOVER) --- */
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;             /* Se vuelve visible */
            visibility: visible;    /* Se vuelve interactivo */
            transform: translateY(-50%) translateX(0px); /* Se mueve suavemente a su posición final */
        }