
.grecaptcha-badge {
	left: 20px !important;
	right: auto !important;
	bottom: -90px !important;
	width: 70px !important;
	overflow: hidden !important;
	transition: bottom .35s ease;
	z-index: 9999;
}

body.show-form-badge .grecaptcha-badge {
	bottom: 20px !important;
}


        :root {
            --toyota-red: #15ac6b;
            --black: #000000;
            --white: #ffffff;
            --gray-bg: #f5f5f5;
            --container-width: 1200px;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden; 
        }

        html {
            scroll-behavior: smooth;

            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--black);
            background-color: var(--white);
        }

        
        
    .m-1 { margin: 0.25rem !important; }
    .m-3 { margin: 1rem !important; }
    .m-5 { margin: 3rem !important; }
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

        
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%; 
}

/* --- HERO & NAV --- */
.hero {
    position: relative;
    width: 100%;
    height: 100svh; /* height: 100dvh; */
    background-color: var(--black);
    overflow: hidden;
}

.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; 
    
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
    padding: clamp(10px, 2vh, 20px) 2%;
    z-index: 10;
    pointer-events: none;

    
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

.logo-marca {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  pointer-events: auto;
}

.logo-modelo {
  max-height: 80px; 
  width: auto;
  object-fit: contain;
  pointer-events: auto;
}


@media (max-width: 768px) {
  .logo-modelo {
    max-height: 55px;
  }

  .logo-marca {
    max-height: 40px;
  }
  .hero-nav{
    height: 65px; 
  }
}


.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p {
    margin: 0;
    padding: 0;
}
        
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    display: flex;
    align-items: center; 
    z-index: 5;

    inset: 0;
}

.container-hero {
    width: 100%;
    
    margin: 0 auto;

    
    padding: 0 4%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
}


.content-logo-modelo {
    
    width: clamp(250px, 60vw, 500px);
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    /* margin: 0; */
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    /* margin-bottom: 1rem; */
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: clamp(1.5rem, 4vw, 2rem);
    max-width: 400px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    margin-bottom: 5rem;
}

/* --- BOTÓN TOYOTA --- */
.btn-toyota {
    display: inline-block;
    background-color: var(--toyota-red);
    color: white;
    text-decoration: none;

    /* padding: 18px 45px; */
    padding: 22px 60px;

    font-weight: bold;

    /* font-size: 0.9rem; */
    font-size: 1.2rem;

    letter-spacing: 1px;
    border-radius: 2px; 

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* box-shadow: 0 4px 15px rgba(235, 10, 30, 0.2); */

    cursor: pointer;
    text-transform: uppercase;
}

 
/* --- ANIMACIONES DE ENTRADA--- */
@keyframes entradaIzquierda {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.content-logo-modelo,
.hero-title,
.hero-subtitle,
.hero-text,
.btn-toyota {
    opacity: 0; 
    animation: entradaIzquierda 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.content-logo-modelo { animation-delay: 0.5s; }
.hero-title { animation-delay: 0.9s; }
.hero-subtitle { animation-delay: 0.9s; }
.hero-text { animation-delay: 0.9s; }
.btn-toyota { animation-delay: 1.3s; }


.btn-toyota:hover {
    background-color: #0f8653; 
    transform: translateY(-15px);
}


.btn-toyota:active {
    transform: translateY(-3px);
    background-color: #0c7c4c;
}

.logo {
    height: clamp(25px, 4vw, 40px); 
    width: auto;
    pointer-events: auto;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100svh; /* match the hero */
    width: 100%;
    /* height: 100%; */

    object-fit: cover;
    object-position: center;

    opacity: 0;
    animation: fadeInVideo 1.5s ease-out forwards;

    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}       

@keyframes fadeInVideo {
    to {
        opacity: 1;
    }
}

/* --- SECCIONES --- */
section {
    width: 100%;
    padding: 100px 0;
    display: block;
}

@media (max-width: 900px) {
    section {
    
    padding: 50px 0;
    
}
}

.boxed-section {
    background-color: #eee; 
}

.boxed-section .container {
    background-color: #fff; 
    min-height: 300px;
    border: 1px dashed var(--toyota-red); 
    padding-top: 40px;
    padding-bottom: 40px;
}


.full-width-section-1 {
    background-color: var(--black);
    color: var(--white);
}

.full-width-section-2 {
    background-color: var(--toyota-red);
    color: var(--white);
}

footer {
    padding: 50px 0;
    background: #111;
    color: white;
    text-align: center;
}

/* sec 1 */


/* Izq */
.title-black {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.05;
}

.subtitle-red {
    color: #a80715;
    font-size: 1.88rem; /* font-size: 2rem; */
    margin-top: 5px;
}

.text-description {
    font-size: 1.1rem;
    margin: 20px 0 10px;
    max-width: 400px;
}

.text-slogan {
    font-weight: bold;
    font-size: 2.2rem;
}

@media (max-width: 900px) {
.text-slogan {

font-size: 1.2rem;
}   
}

/* nuevo form sescc */
.section-form {
    background-color: #fff;
    width: 100%;
}




.form-wrapper,.reasons-wrapper,.perks-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;

    
    padding: 0;

    gap: 60px;
}

.perks-wrapper {
gap: 30px;
flex-wrap: wrap;
}


.form-info {
    flex: 1;
}


.form-content {
    flex: 1;
}


.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}


.toyota-form {
    display: flex;
    flex-direction: column;
    /* gap: 25px; */
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: block;
    font-size: 11px; /* font-size: 11px; */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #000;
}

/* Inputs */
.form-group input {
    width: 100%;
    border: 1px solid #3b3b3b;
    border-radius: 0;
    padding: 20px; /* padding: 14px; */
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}


.form-group input:focus {
    border-color: var(--toyota-red);
    background-color: #fafafa;
    box-shadow: inset 0 0 0 1px var(--toyota-red);
    transform: translateY(-2px);
}

.input-disabled {
    background-color: #f2f2f2;
    border-color: #ccc !important;
    cursor: not-allowed;
    color: #999;
}

/* Botón Form */
.btn-toyota-form {
    width: 100%;
    background-color: var(--toyota-red);
    color: #fff;
    border: none;
    padding: 20px; /* padding: 18px; */
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;

    margin-bottom: 15px;
}

.btn-toyota-form:hover {
    background-color: #0b7648;
    transform: translateY(-2px);
}

.btn-toyota-form:active {
    transform: translateY(0);
}


.privacy-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #444;
}

.privacy-notice i {
    color: inherit;
}


.section-full {
    padding-left: 0;
    padding-right: 0;
    padding: 0;
}


.section-boxed {
    padding-left: 6vw;
    padding-right: 6vw;
}


@media (max-width: 900px) {
    .form-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}


@media (max-width: 768px) {
    .btn-toyota {
        padding: 16px 0; 
        font-size: 0.9rem;

        /* letter-spacing: 1.5px; */
    }

    
    .btn-toyota {
        position: absolute;
        /* bottom: 50px;  */
        bottom: max(30px, env(safe-area-inset-bottom) + 20px);
        left: 50%; 
        transform: translateX(-50%); 

        width: 90%; 
        max-width: 340px; 

        text-align: center;
        padding: 16px 0; 

        
        animation: entradaDesdeAbajo 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 1.3s;
    }

@keyframes entradaDesdeAbajo {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

    
.btn-toyota:hover {
    transform: translate(-50%, -2px);
    background-color: #0d8450;
}


.section-boxed {
    padding-left: 5%;
    padding-right: 5%;
}

.form-wrapper {
    padding: 0;
}
}


@media (min-width: 1920px) {
    .section-boxed {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}


/* =========================================================
   SECCIÓN 2 - REA SW4
========================================================= */

.reasons-image {
    position: relative;
    width: 100%; 
    max-width: 600px; 
}

.section-reasons {
    width: 100%;
    background-color: #fff;
}

.reasons-wrapper {
    display: flex;
    align-items: start;
    gap: clamp(40px, 5vw, 90px);
}

.reasons-image {
    /* flex: 1; */ flex: 2;
}

.reasons-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.reasons-content {
    flex: 1;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .reasons-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .reasons-image,
    .reasons-content {
        width: 100%;
    }
} 


/* =========================================================
   SECCIÓN 3 - PERKS
========================================================= */

.section-perks {
    background-color: #f5f5f5;
}

.perk-item {
    flex: 0 0 calc(25% - 23px);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    position: relative;
}

/* Las 3 líneas */
.perk-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 50%;
    right: calc(clamp(25px, 3vw, 40px) / -2);

    transform: translateY(-50%);

    width: 1px;

    
    height: 120px;

    background-color: #d2d2d2;
}

.perk-item i {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #4a4a4a;
    margin-bottom: 20px;
}

.perk-title {
    /* font-size: clamp(1.1rem, 1.5vw, 1.4rem); */
    
    font-size: clamp(1.05rem, 1rem + 0.3vw, 1.35rem);

    font-weight: 700;
    /* color: #3f3f3f; */color: #5a5a5a;
    margin: 0 0 14px;
}

.perk-text {
    
    
    color: #5a5a5a;
    margin: 0;
}

.perk-text {
    font-size: clamp(0.92rem, 0.9rem + 0.15vw, 1rem);

    line-height: 1.6;

    /* max-width: 260px; */
    max-width: 180px;
}

/* =========================================================
   RESPONSIVE
========================================================= */


@media (max-width: 1050px) {

    .perk-item {
        flex: 0 0 calc(50% - 15px);
    }

    .perk-item:not(:last-child)::after {
        display: none;
    }

     /* Reset */
    .perk-item::after {
        display: none;
    }

    /* Línea vertical izquierda */
    .perk-item:nth-child(1)::after,
    .perk-item:nth-child(3)::after {
        content: "";

        position: absolute;

        top: 50%;
        right: -10px;

        transform: translateY(-50%);

        width: 1px;
        height: 100px;

        background-color: #d7d7d7;

        display: block;
    }

    /* Línea horizontal superior */
    .perk-item:nth-child(1)::before,
    .perk-item:nth-child(2)::before {
        content: "";

        position: absolute;

        bottom: -15px;
        left: 50%;

        transform: translateX(-50%);

        width: 80%;
        height: 1px;

        background-color: #d7d7d7;
    }

}


.perk-icon {
    width: clamp(38px, 4vw, 52px);
    height: auto;

    margin-bottom: 20px;

    object-fit: contain;

    opacity: 0.8;
}



/* =========================================
   SECTION 4 - FULL galeria cinem
========================================= */

.gallery-section {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;

    width: 50%;
    aspect-ratio: 16 / 10;

    overflow: hidden;

    background-color: #000;
}

/* IMAGEN */
.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 8s ease;

    transform: scale(1);
}

 .gallery-item img {
    transition: transform 10s cubic-bezier(0.25, 1, 0.30, 1);
    transform: scale(1);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;

    padding: 5%;

    background: rgba(0,0,0,0.18);
}

/* ITEM 1 - abajo der */
.gallery-item:nth-child(1) .gallery-overlay {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

/* ITEM 2 - abajo izq */
.gallery-item:nth-child(2) .gallery-overlay {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
}

/* ITEM 3 - arriba der */
.gallery-item:nth-child(3) .gallery-overlay {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
}

/* ITEM 4 - arriba izq */
.gallery-item:nth-child(4) .gallery-overlay {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}


.gallery-title {
    margin: 0 0 8px;

    color: #fff;

    font-size: clamp(1.2rem, 2vw, 2rem);

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.gallery-text {
    margin: 0;

    color: rgba(255,255,255,0.92);

    font-size: clamp(0.8rem, 1vw, 1.05rem);

    line-height: 1.4;

    max-width: 400px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {

    .gallery-item {
        width: 100%;
    }

    .gallery-item .gallery-overlay {
        justify-content: flex-end !important;
    }

    .gallery-item .gallery-overlay {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .gallery-item:nth-child(even) .gallery-overlay {
        align-items: flex-end !important;
        text-align: right !important;
    }
}

@media (max-width: 768px) {

    .gallery-item {
        aspect-ratio: 1 / 1;
    }

    .gallery-title {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    .gallery-text {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
}


.gallery-item:nth-child(1) .gallery-overlay,
.gallery-item:nth-child(2) .gallery-overlay {

    justify-content: flex-end;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 35%,
        rgba(0,0,0,0.05) 60%,
        rgba(0,0,0,0) 100%
    );
}


.gallery-item:nth-child(3) .gallery-overlay,
.gallery-item:nth-child(4) .gallery-overlay {

    justify-content: flex-start;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 35%,
        rgba(0,0,0,0.05) 60%,
        rgba(0,0,0,0) 100%
    );
}



/* =========================
   SECCIÓN 5 - BOXED LOGO + TEXTO
========================= */


.section-26 {
    background-color: #111;
    color: #fff;
}


.section5-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    
    width: 100%;
}


.section5-media {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.section5-media img {
    width: clamp(120px, 18vw, 220px);
    height: auto;
    display: block;

    
    object-fit: contain;
}


.section5-content {
    flex: 1;
    min-width: 0; 
}

.section5-title{
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.05;
}

.section5-subtitle{
    font-size: clamp(1rem, 2vw, 1.5em);
    opacity: 0.9;
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .section5-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .section5-media {
        order: 2;
        justify-content: center;
    }

    .section5-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section5-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.section5-media {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.7s ease-out 0.1s forwards;
}

.section5-content {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.7s ease-out 0.25s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section5-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section5-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.perk-item {
    transition: transform 0.3s ease;
}

.perk-item:hover {
    transform: translateY(-4px);
}


/* =========================
   SECCIÓN 6 - FINAL CTA BUTTON
========================= */

.section6 {
    position: relative;
    width: 100%;
    min-height: 100px;
    padding: 40px;
    background-image: url("../img/img-footer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.section6-overlay {
    position: relative;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
}


.section6-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    /* padding: 0 5%; */
    gap: 12px;
}

/*    BOTÓN BLANCO */

.btn-outline-white {
    display: inline-block;

    padding: 20px 90px;

    border: 2px solid #fff;
    background: transparent;

    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}


.btn-outline-white:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
}


.section6-subtitle {
    margin: 0;

    font-size: 1.1rem;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.85);

    max-width: 360px; 
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .section6-content {
        align-items: center;
        text-align: center;
    }

    .section6-subtitle {
        max-width: 280px;
        text-align: center;
    }

    .btn-outline-white {
    display: inline-block;

    padding: 16px 55px;

    border: 2px solid #fff;
    background: transparent;

    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}
}


.section6::before {
    content: "";
    position: absolute;
    inset: 0;

    
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(0, 0, 0, 0) 100%
    );

    z-index: 1;
}


.section6-overlay {
    position: relative;
    z-index: 2;
}


/* =========================
   FOOTER GENERAL
========================= */

.site-footer {
    background: #0b0b0b;
    color: #fff;
}


.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 50px 5%;
}


.footer-col {
    flex: 1;
}


.footer-logo img {
    width: 150px;
    height: auto;
    display: block;
}



.footer-sucursales {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sucursal h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.sucursal p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.sucursal span {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    opacity: 0.65;
}


.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #fff;
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
}



.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 14px 5%;
    text-align: center;

    font-size: 0.8rem;
    opacity: 0.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }
}


@media (max-width: 900px) {

    .footer-social {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .footer-social a {
        display: flex;
        width: 42px;
        height: 42px;
    }
}


.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #666666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pdf-link:hover {
    color: #b8b8b8;
}

/* =========================
   WHATSAPP B
========================= */

.whatsapp-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; 
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Sin subrayado */
}

.whatsapp-button:hover {
    /* transform: scale(1.1); */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

/* .whatsapp-button {
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
} */

.whatsapp-button.show-whatsapp {
	opacity: 1;
	pointer-events: auto;
}
