:root {
    --primary: #d61053;
    --secondary: #7b1e1e;

    --text: #252423;

    --light: #f1f1f1;
    --dark: #1a1a1a;

    --white: #ffffff;
}

body {
    /*background: #f1f1f1;*/
    font-family: "Roboto Condensed", sans-serif;
    color: var(--text);
    font-size: 1rem;
    overflow-x: hidden;
}

a {
    color: var(--primary);
}

#logotipo {
    margin: 0;
}

h1#logotipo a {
    text-indent: -9999em;
    background-image: url(/imagenes/logos/logo.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;

    outline: none;

    height: 100px;
    width: 400px; /* ajusta al ancho real del logo */

    display: inline-block;

    margin: 0.5em 0;
    padding: 0;
}
body input + label {
    position: fixed;
    top: 10px;
    right: 20px;
    height: 20px;
    width: 15px;
    z-index: 80;
}

body input + label.custom-control-label {
    width: auto;
    top: auto;
    right: auto;
}

body input + label span {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: #020304;
    transition: 0.5s;
}

body input + label span:first-child {
    top: 3px;
}

body input + label span:last-child {
    top: 16px;
}

body label:hover {
    cursor: pointer;
}

body input:checked + label span {
    opacity: 0;
    top: 50%;
}

body input:checked + label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
}

body input:checked + label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
}

body input ~ nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s;
    transition-delay: 0.3s;
    overflow: hidden;
    background-color: #f1f1f1;
    opacity: 0;
}

body input ~ nav > ul {
    text-align: center;
    position: absolute;
    top: 5%;
    left: 0%;
    right: 0%;
    list-style: none;
    padding: 0px;
    font-family: "Arimo", sans-serif;
}

body input ~ nav > ul > li {
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0s;
}

body input ~ nav > ul > li > a {
    text-decoration: none;
    text-transform: uppercase;
    /*color: #020304;*/
    color: #9fc1dd;
    font-weight: 500;
    display: block;
    padding: 1rem;
    font-size: 2em;
}

.menu-icon {
    width: 1em;
    height: 1em;
    object-fit: contain;
    vertical-align: middle;
}

.menu-burger{
    z-index: 9999;
}

body input ~ nav > ul > li > a.active {
    font-weight: 700;
    color: #627687;
}

body input ~ nav > ul > li > a:hover {
    text-decoration: none;
    color: #627687;
}

body input:checked ~ nav {
    height: 100%;
    transition-delay: 0.5s;
    opacity: 1;
    -webkit-transition: 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: 0.5s;
    transition-delay: 0s;
}

body input:checked ~ nav > ul > li {
    opacity: 1;
    transition-delay: 0.5s;
}

ul.submenu {
    text-align: center;
    top: 20%;
    left: 0%;
    right: 0%;
    list-style: none;
    padding: 0px;
}

nav.scroll {
    color: #eef;
}

body input ~ nav.scroll > ul > li > a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    padding: 30px;
    font-size: 1.5em;
}

.idioma {
    text-transform: uppercase;
    font-size: 0.8em;
    /*position: absolute;*/
    position: fixed;
    top: 10px;
    z-index: 1000;
    right: 50px;
}

.idioma a {
    padding: 0rem 0.2rem;
    color: #252423;
}

.idioma a:hover {
    color: #252423;
    font-weight: 600;
}

.idioma a.active {
    font-weight: 600;
}

/*//////// BANNER  /////////*/

.carousel-fade .carousel-inner .carousel-imagen {
    transition-duration: 1s;
}

.carousel-imagen {
    height: 100vh;
    min-height: 300px;
    background: no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transition:
        transform 2s ease,
        opacity 0.5s ease-out;
}

/*//////// MIGAS  /////////*/

.migas {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    text-transform: uppercase;
    font-family: "Arimo", sans-serif;
}

.migas.active {
    color: #6c757d;
}

.migas-item + .migas-item {
    padding-left: 0.5rem;
}

.migas-item + .migas-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

/*//////// PRODUCTOS  /////////*/

.texto-producto {
    position: absolute;
    bottom: 0;
    top: auto;
    text-align: center;
}

.texto-producto h5 {
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.texto-producto p {
    text-transform: uppercase;
    font-weight: 100;
    margin-bottom: 0.5em;
}
.texto-producto hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.custom-underline {
    padding-bottom: 1.625rem;
    font-size: 0.8125rem;
    line-height: 1.625rem;
    letter-spacing: 1.5px;
    color: #000;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    padding: 0;
}

.custom-underline,
.custom-underline:hover,
.custom-underline:focus,
.custom-underline:active {
    color: #000;
    text-decoration: none;
}

.custom-underline::after {
    content: "";
    position: absolute;
}

.box-c .custom-underline::after {
    top: 100%;
    height: 2px !important;
    width: 40%;
    left: 30%;
    background-color: rgb(177, 35, 25);
    transition: 0.4s ease-out all 0.1s;
}

.box-c:hover .custom-underline::after {
    width: 90%;
    left: 5%;
    transition: 0.5s ease all;
}

.ficha {
    background: #eaeaea;
    padding: 1em;
    margin-bottom: 2em;
}

.ficha h5 {
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid;
    margin-bottom: 0.5em;
    padding-bottom: 0.3em;
}

.ficha h5 span {
    font-size: 0.85em;
    text-transform: uppercase;
    font-weight: 300;
}

.ficha p {
    margin-top: 0;
    margin-bottom: 0.2em;
}

.ficha p span {
    text-transform: uppercase;
    font-weight: 600;
    padding-right: 0.3em;
}

#archivos p {
    padding-right: 15px;
}

.example_d {
    color: rgb(177, 35, 25) !important;
    text-transform: uppercase;
    background: #ffffff;
    padding: 0.5em;
    border: 2px solid rgb(177, 35, 25) !important;
    border-radius: 0px;
    display: inline-block;
    transition: all 0.3s ease 0s;
    margin: 0.8em;
    font-size: 0.8em;
}

.example_d:hover {
    color: #494949 !important;
    border-radius: 50px;
    border-color: #494949 !important;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

.botones {
    text-align: center;
}
.button_cont {
    display: inline;
    text-align: center;
}

p.compartir {
    text-transform: uppercase;
    font-family: "Arimo", sans-serif;
    margin-top: 2em;
    font-weight: 600;
    font-size: 0.8em;
}

.volver a {
    font-family: "Arimo", sans-serif;
    font-weight: 100;
    font-size: 0.8em;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0px;
    text-transform: uppercase;
    text-decoration: none;
    color: #252423;
}

.volver a:hover {
    text-decoration: none;
    color: #252423;
}

#marcasoficiales img {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.12);
}

.menu-productos .filter-button.filtro-activo {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

/*//////// VIDEO  /////////*/

.fullscreen-bg {
    position: fixed;
    top: 125px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 767px) {
    .fullscreen-bg {
        background: url("/imagenes/paginas/index/portada.jpg") center center /
            cover no-repeat;
    }
    .fullscreen-bg__video {
    }
}

.content-video {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
    height: 100%;
    top: 125px;
}

.centrado {
    padding: 5% 2rem;
    background-color: transparent;
}

.content-video h1 {
    font-family: "Arimo", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 3em;
}

.content-video p {
    font-weight: 100;
}

.content-video a {
    color: #f1f1f1;
}

.content-video a:hover {
    color: #f1f1f1;
    text-decoration: none;
}

.borde {
    border-right: 1px solid #ffffff;
}

/*//////// VIDEO  /////////*/

.menu-productos {
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
}

.menu-productos h3 {
    font-family: "Arimo", sans-serif;
    font-weight: 600;
    font-size: 1.4em;
    padding: 0.375rem 0;
    margin-bottom: 0px;
}

/* Botones */

.boton-principal,
.boton-outline-principal {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
    border: 2px solid;
    cursor: pointer;
    min-width: 140px;
}

/* Botón principal */
.boton-principal {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.boton-principal:hover {
    background: var();
    border-color: #cb0a4a;
    transform: translateY(-2px);
}

/* Botón outline */
.boton-outline-principal {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.boton-outline-principal:hover {
    background: #cb0a4a;
    color: white;
    transform: translateY(-2px);
}

/* separación entre botones */
.boton-principal + .boton-outline-principal {
    margin-left: 12px;
}

/* móvil */
@media (max-width: 768px) {
    .boton-principal,
    .boton-outline-principal {
        width: 100%;
        margin: 0;
    }

    .boton-outline-principal {
        margin-top: 12px;
    }
}

.menu-productos button {
    text-transform: uppercase;
    font-size: 1.2em;
}

.menu-productos .btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    color: #111827;
    line-height: 1.2;
    padding: 0.55rem 0.55rem;
}

.menu-productos .btn:hover,
.menu-productos .btn:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.menu-productos .dropdown-menu {
    border-radius: 4px;
    margin-top: 0;
    min-width: 200px;
    padding: 0.55rem 0;
}

button.submenu {
    text-transform: uppercase;
    font-size: 1em;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    text-align: left;
}

.boton-audio {
    position: absolute;
    bottom: 3em;
    left: 3em;
    z-index: 100;
}

.boton-audio a {
    border: 1px solid #fff;
    color: #fff;
    padding: 1em;
    background: #0006;
    text-transform: uppercase;
    font-size: 0.9em;
    text-decoration: none;
}

/* LOGO BOOKING */
.award-link {
    display: inline-block;
}

.award-img {
    max-height: 200px;
    width: auto;
    height: 200px;
    object-fit: contain;
    box-shadow:
        2px 2px 15px rgba(0, 0, 0, 0.65),
        20px 20px 25px rgba(0, 0, 0, 0.2);
}

/*//////// PIE  /////////*/

.copyright {
    font-size: 0.9em;
}

@media (max-width: 575.98px) {
    body input ~ nav > ul > li > a {
        font-size: 1.5em;
    }

    .content-video h1 {
        letter-spacing: 0.1em;
        font-size: 2em;
    }

    .menu-productos {
        display: inherit;
        margin-top: 2em;
    }
}

@media (max-width: 767.98px) {
    .borde {
        border-right: none;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 2em;
        padding-bottom: 1em;
    }
}

/* ============================================================
PRIMARY STRUCTURE
============================================================ */
.parallax-container {
    max-width: 960px;
    margin: 0 auto;
}

/* ============================================================
SECTIONS
============================================================ */
section.module:last-child {
    margin-bottom: 0;
}

section.module h2 {
    margin-bottom: 40px;
    font-size: 1.5em;
}

section.module p {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 300;
}

section.module p:last-child {
    margin-bottom: 0;
}

section.module.content {
    padding: 40px 0;
    background-color: rgba(207, 216, 220, 0.5);
}

section.module.content:last-child {
    margin-bottom: 60px;
}

section.module.parallax {
    padding: 240px 0;
    background-position: 0 0;
}

section.module.parallax h1 {
    color: #ffffff;
    font-size: 2em;
    font-family: "Arimo", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
}

section.module.parallax h5 {
    color: #ffffff;
    font-weight: 300;
    font-size: 1.2em;
}

section.module.parallax-1 {
    background-image: url("/imagenes/paginas/descubrenos/parallax-1.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(16, 16, 16, 0.48);
    background-blend-mode: overlay;
}

section.module.parallax-calidad-1 {
    background-image: url("/imagenes/paginas/calidad/parallax-calidad-1.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(16, 16, 16, 0.48);
    background-blend-mode: overlay;
}

section.module.parallax-turismo-1 {
    background-image: url("/imagenes/paginas/turismo/parallax-1.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(16, 16, 16, 0.48);
    background-blend-mode: overlay;
}

section.module.parallax-2 {
    background-image: url("/imagenes/paginas/descubrenos/parallax-2.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(132, 78, 78, 0.4);
    background-blend-mode: luminosity;
}

section.module.parallax-calidad-2 {
    background-image: url("/imagenes/paginas/calidad/parallax-calidad-2.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(16, 16, 16, 0.2);
    background-blend-mode: luminosity;
}

section.module.parallax-turismo-2 {
    background-image: url("/imagenes/paginas/turismo/parallax-2.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(16, 16, 16, 0.48);
    background-blend-mode: overlay;
}

section.module.parallax-3 {
    background-image: url("/imagenes/paginas/descubrenos/parallax-3.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(72, 78, 71, 0.79);
    background-blend-mode: lighten;
}

section.module.parallax-turismo-3 {
    background-image: url("/imagenes/paginas/turismo/parallax-3.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(16, 16, 16, 0.48);
    background-blend-mode: overlay;
}

section.module.parallax-turismo-4 {
    background-image: url("/imagenes/paginas/turismo/parallax-4.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(16, 16, 16, 0.66);
    background-blend-mode: overlay;
}

section.module.parallax-4 {
    background-image: url("/imagenes/paginas/descubrenos/parallax-4.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(147, 121, 91, 0.79);
    background-blend-mode: darken;
}

section.module.parallax-5 {
    background-image: url("/imagenes/paginas/descubrenos/parallax-5.jpg");
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(147, 121, 91, 0.79);
    background-blend-mode: darken;
}

@media all and (min-width: 600px) {
    section.module h2 {
        font-size: 2em;
    }

    section.module p {
        font-size: 20px;
    }

    section.module.parallax {
        padding: 300px 0;
    }

    section.module.parallax h1 {
        font-size: 96px;
    }
}

@media all and (min-width: 960px) {
    section.module.parallax h1 {
        font-size: 6em;
    }
}
/* wiper */
.swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.swiper {
    width: 100%;

    height: 500px;

    position: relative;
}

.swiper-slide {
    display: flex;

    justify-content: center;

    align-items: center;
}

.parallax-bg {
    position: absolute;

    left: 0;

    top: 0;

    width: 130%;

    height: 100%;

    background-size: cover;

    background-position: center;
}

.texto-calidad {
    max-width: 900px;

    padding: 40px;

    color: white;

    font-size: 1.2rem;

    text-align: center;

    z-index: 2;
}

.texto-calidad {
    margin: 20%;
    font-size: 1.3em;
    font-weight: 100;
}

.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

/* ============================================================
CONTACTO
============================================================ */

#ubicacion .mapa-google {
    width: 100%;
    height: 370px;
}
/* ============================================================
NAVBAR
============================================================ */
#header-booking-btn {
    z-index: 200;

    background-color: var(--secondary);
    color: #fff !important;

    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 0.78rem;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    padding: 10px 18px;
    border-radius: 4px;

    text-decoration: none !important;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition:
        background-color 0.2s,
        transform 0.15s;
}

.boton-reservar-nav{
    position: absolute;
    right: 1rem;
    top: 5rem;
    background-color: var(--primary);
    margin-bottom: 1rem;
    border: none;
    font-size: 1.1rem;
}

.boton-cta-final{
    font-size: 1.1rem  ;
    font-weight: 400 !important;
}

.boton-reservar-nav:hover{
    background-color: var(--secondary);
}

/* Móvil: solo icono para no tapar el burger */
@media (max-width: 480px) {
    .btn-reservar-texto {
        display: none;
    }
    #header-booking-btn {
        padding: 8px 11px;
        font-size: 1rem;
    }
}

/* ============================================================
FOOTER
============================================================ */

#pie-principal {
    background-color: #232323;
    color: #b8b8b8;
    font-size: 0.85rem;
}

.pie-titulo {
    color: #f2f2f2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #4a4a4a;
    padding-bottom: 0.4rem;
}

.pie-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pie-lista li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.pie-lista a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.15s;
}

.pie-lista a:hover {
    color: #e5e5e5;
}

.pie-icon {
    color: #8d8fa4;
    margin-right: 6px;
    width: 14px;
    text-align: center;
}

.pie-icon-sm {
    color: #9b8b84;
    font-size: 0.65rem;
    margin-right: 5px;
}

.pie-cta {
    display: inline-block;
    background-color: #8d8fa4;
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.pie-cta:hover {
    background-color: #7b6860;
    color: #fff !important;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #8d8fa4;
    color: #fff !important;
    font-size: 0.9rem;
    margin-right: 6px;
    text-decoration: none !important;
    transition: background-color 0.2s, transform 0.15s;
}

.social-icon:hover {
    background-color: #7b6860;
    transform: translateY(-2px);
}

.pie-booking{
    max-height: 130px;
    width: auto;
    opacity: 0.85;
}

.pie-sello {
    max-height: 60px;
    width: auto;
    opacity: 0.85;
}

.pie-sellos-wrap {
    border-top: 1px solid #3a3a3a;
    padding-top: 1.5rem;
}

.pie-feder {
    font-size: 0.72rem;
    color: #8a8a8a;
    margin-bottom: 0.3rem;
}

.pie-copyright {
    border-top: 1px solid #3a3a3a;
    font-size: 0.75rem;
    color: #8a8a8a;
}

/* ============================================================
CTA FINAL
============================================================ */
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1.4rem;
    background: #25D366;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-whatsapp-cta:hover {
    background: #1ebe5d;
    color: #fff;
}


/* ============================================================
WHATSAPP BUTTON
============================================================ */

#whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background-color: #25d366;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
    animation: wa-pulse 10s infinite;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
#whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
}
@keyframes wa-pulse {
    0% {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
    }
    90% {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
    }
    93% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.25);
    }
    96% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
    }
}
/* Móvil: ligeramente más pequeño */
@media (max-width: 576px) {
    #whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 16px;
    }
}
