/*-----------------------*\
   ESTILOS GENERALES
\*-----------------------*/
:root {

    /* Colores*/
    --hoockers-green_20: hsl(148, 20%, 38%, 0.2);
    --gold-crayola: hsl(38, 61%, 73%);
    --pale-spring-bud: hsl(60, 68%, 85%);
    --hoockers-green: hsl(148, 20%, 38%);
    --spanish-gray: hsl(0, 0%, 61%);
    --light-gray: hsl(0, 0%, 80%);
    --cultured-1: hsl(0, 0%, 97%);
    --cultured-2: hsl(60, 6%, 93%);
    --gray-web: hsl(0, 0%, 49%);
    --white_30: hsl(0, 0%, 100%, 0.3);
    --black_70: hsla(0, 0%, 0%, 0.7);
    --black_50: hsla(0, 0%, 0%, 0.5);
    --black_15: hsla(0, 0%, 0%, 0.15);
    --black_10: hsla(0, 0%, 0%, 0.1);
    --black_5: hsla(0, 0%, 0%, 0.05);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);


    --tpv_net: #ee9700;
    --tpv_red: #b22d3a;
    --tpv_bright_red: #b61929;
    --tpv_yellow: #FFD631;
    /*gradiente*/

    --gradient: linear-gradient(to right, transparent 50%, var(--white_30) 100%);

    /*Fuente*/

    --ff-urbanist: 'Urbanist', sans-serif;

    --fs-1: 4.8rem;
    --fs-2: 4rem;
    --fs-3: 3.4rem;
    --fs-4: 2.4rem;
    --fs-5: 2rem;
    --fs-6: 1.8rem;
    --fs-7: 1.5rem;
    --fs-8: 1.4rem;
    --fs-9: 1.3rem;

    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /*Espaciado*/
    --section-padding: 35px;

    /*Sombra*/

    --shadow-1: 0 8px 16px var(--black_15);
    --shadow-2: 0 4px 10px var(--black_5);

    /*Radius*/
    --radius-3: 3px;

    /*Transiciones*/
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: 1s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}


/*-----------------------------------*\
    RESET
\*-----------------------------------*/

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

li { 
    list-style: none; 
}

a,
img,
span,
input,
button,
ion-icon { 
    display: block; 
}

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

img { 
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input { 
    width: 100%; 
}

button{ 
    cursor: pointer; 
}

ion-icon {
    pointer-events: none;
    --ionicon-stroke-width: 25px;
}

html {
    font-family: var(--ff-urbanist);
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--gray-web);
    font-size: 1.6rem;
    font-weight: var(--fw-500);
    line-height: 1.6;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 95%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }


/*-----------------------------------*\
    ESTILOS REUTILIZABLES
\*-----------------------------------*/
.container { padding-inline: 15px; }

.section { padding-block: 60px !important; }

.has-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.h1,
.h2,
.h3,
.h2-large {
    color: var(--black);
    font-weight: var(--fw-600);
    line-height: 1.3;
}

.h1 {
    font-size: var(--fs-1);
    line-height: 1.2;
}

 .h2 { font-size: var(--fs-3); }

.h2-large { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-4); }

.btn {
    font-weight: var(--fw-600);
    max-width: max-content;
    padding: 10px 30px;
    border-radius: var(--radius-3);
    transition: var(--transition-1);
}

.btn-primary,
.btn-secondary:is(:hover, :focus) {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:is(:hover, :focus) { background-color: var(--tpv_net); }

.btn-secondary {
    background-color: var(--white);
    color: var(--black);
    box-shadow: var(--shadow-2);
}

.has-scrollbar {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-block-end: 15px;
    margin-block-end: -15px;
    scroll-snap-type: inline mandatory;
}

.scrollbar-item {
    min-width: 100%;
    scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar-track,
.has-scrollbar::-webkit-scrollbar-thumb { background-color: transparent; }

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 98%);
}

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 70%);
}

.has-before,
.has-after {
    position: relative;
    z-index: 1;
}

.has-before::before,
.has-after::after {
    content: "";
    position: absolute;
}

.hover\:shine { overflow: hidden; }

.hover\:shine .has-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: var(--transition-2);
}

.hover\:shine:is(:hover, :focus) .has-bg-image { transform: scale(1.15); }

.hover\:shine::before {
    top: 0;
    left: -140%;
    bottom: 0;
    width: 100%;
    background-image: var(--gradient);
    transform: skewX(-25deg);
    transition: var(--transition-2);
    z-index: 1;
}

.hover\:shine:is(:hover, :focus-within)::before { animation: shine 1s ease forwards; }

@keyframes shine {
    0% { transform: skewX(-25deg) translateX(0); }
    100% { transform: skewX(-25deg) translateX(250%); }
}

.btn-link {
    color: var(--black);
    font-weight: var(--fw-600);
    display: flex;
    align-items: center;
    gap: 3px;
    transition: var(--transition-1);
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-gray);
}

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

.badge {
    max-width: max-content;
    background-color: var(--hoockers-green);
    color: var(--white);
    font-weight: var(--fw-700);
    padding-inline: 12px;
    border-radius: var(--radius-3);
}

.flex-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.w-100 { width: 100%; }

.text-center{
    text-align: center;
}

 /*Responsivo +575px*/
@media (min-width: 575px) {

    /*Estilos reutilizables*/

    .container {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }

    :is(.header, .hero) .container { max-width: unset !important; }

    .has-scrollbar { gap: 30px; }

    .scrollbar-item { min-width: calc(50% - 15px); }

}


/*Responsivo +768px*/

@media (min-width: 768px) {

/*General*/

:root {
    /*Tipografía */
    --fs-1: 5.6rem;
    }

    /*Estilos reutilizables*/

    .container { max-width: 730px; }

    .flex-item { max-width: calc(50% - 15px); }

    

}



/*Responsivo +992px */

@media (min-width: 992px) {

    /*General*/

    :root {
    /*padding*/
        --section-padding: 50px;
    }

    /*Estilos reutilizables  */
    .container { max-width: 960px; }

    .scrollbar-item { min-width: calc(33.33% - 20px); }

    .flex-item { max-width: calc(33.33% - 20px); }


}


/*Responsivo +1200px*/

@media (min-width: 1200px) {

/*Estilos reutilizables*/
.container { max-width: 1200px !important; }
.scrollbar-item { min-width: calc(20% - 24px); }

           

}
    

/************HEADER*************/


        .header .btn { display: none; }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            padding-block: 40px;
            z-index: 4;
            border-block-end: 1px solid transparent;
            transition: var(--transition-1);
        }

        .header.active {
            padding-block: 20px;
            background-color: var(--white);
            border-color: hsla(0, 0%, 0%, 0.15);
            
        }

        .header.hide {
            transform: translateY(-100%);
            transition-delay: 250ms;
        }

        .header .container {
            padding-inline: 20px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 8px;
        }
        .header .logo img{
            width: 140px;
        }
        
        .nav-open-btn {
            padding: 12px;
            padding-inline-end: 0;
        }

        .nav-open-btn .line {
            width: 30px;
            height: 2px;
            background-color: var(--black);
            margin-block: 4px;
            transform-origin: left;
            animation: menuBtn 400ms ease-in-out alternate infinite;
        }

        @keyframes menuBtn {
            0% { transform: scaleX(1); }
            100% { transform: scaleX(0.5); }
        }

        .nav-open-btn .line-2 { animation-delay: 150ms; }

        .nav-open-btn .line-3 { animation-delay: 300ms; }

        .navbar {
            position: fixed;
            background-color: var(--white);
            top: 0;
            left: -360px;
            bottom: 0;
            max-width: 360px;
            width: 100%;
            padding-inline: 30px;
            padding-block-end: 50px;
            overflow-y: auto;
            visibility: hidden;
            z-index: 2;
            transition: var(--transition-2);
        }

        .navbar.active {
            visibility: visible;
            transform: translateX(360px);
        }

        .navbar .close-btn {
            color: var(--black);
           
            padding: 4px;
           
            margin-inline-start: auto;
            margin-block: 30px 20px;
        }

        .navbar .close-btn ion-icon { --ionicon-stroke-width: 40px; }

        .navbar .close-btn:is(:hover, :focus-visible) { color: #ee9700; }

        .navbar .logo {
            max-width: max-content;
            margin-inline: auto;
            margin-block-end: 60px;
        }
        .navbar .logo img{
            width: 190px;
        }

        .navbar-list {
            border-block-end: 1px solid hsla(0, 0%, 100%, 0.2);
            margin-block-end: 100px;
        }

        .navbar-item { border-block-start: 1px solid var(--black_15); }

        .navbar-link {
            position: relative;
            font-size: var(--fs-6);
            
            
            padding-block: 10px;
            max-width: unset;
        }

        .navbar-link::after { display: none; }

        .navbar-link .span { transition: var(--transition-1);
            font-weight: var(--fw-600);
            color: var(--black);
        }

        .navbar-link:is(:hover, :focus-visible, .active) .span {
            color: #ee9700;
            transform: translateX(20px);
            
        }

        .navbar-link .separator {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%) rotate(45deg);
            opacity: 0;
            transition: var(--transition-1);
        }
        .navbar .headline-1{
            text-align: center;
            font-size: var(--fs-4);
            color: #ee9700;
        }
        .navbar .body-4{
            text-align: center;
        }

        .navbar-link:is(:hover, :focus-visible, .active) .separator { opacity: 1; }

        .navbar-title { margin-block-end: 15px; }

        .navbar-text { margin-block: 10px; }

        .navbar .body-4 { color: hsla(0, 0%, 65%, 1); }

        .sidebar-link { transition: var(--transition-1); }

        .sidebar-link:is(:hover, :focus-visible) { color: var(--black); }

        .navbar .text-center .separator {
            margin-block: 30px;
            margin-inline: auto;
        }

        .navbar .contact-label { margin-block-end: 10px; }

        .navbar::-webkit-scrollbar-thumb { background-color: hsla(0, 0%, 100%, 0.1);; }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-color: var(--black_50);
            opacity: 0;
            pointer-events: none;
            transition: var(--transition-2);
            z-index: 1;
        }

        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }




        /*Dropdown*/
        .navbar-item.dropdown {
                position: relative;
            }

            .dropdown-menu {
                
                top: 100%;
                left: 0;
                background-color: white;
     
                list-style: none;
                padding: 3rem;
                margin: 0;
                display: none;
                z-index: 999;
                min-width: 200px;
                opacity: 0;
                transform: translateY(10px);
                transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
                transition-delay: 1.5s;
                

            }
           .dropdown:hover .dropdown-menu {
                width: 100%;
                opacity: 1;
                transform: translateY(0);
                /*columnas*/
                display: block;
                
            }

            
            .dropdown-menu li{
                margin-right: 25px;
            }
            .dropdown-menu li a {
                display: block;
                padding: 1rem 1rem;
                color: #333;
                text-decoration: none;
                transition: background-color 0.5s;
                width: 190px;
                font-size: var(--fs-7);
            }

            .dropdown-menu li a:hover {
                color: #ee9700;
            }
            .dropdown-icon{
                display: flex;
                align-items: center;
            }
            .dropdown-icon img{
                height: 35px;
            }



        /*RESPONSIVE LAYOUT*/
        @media (min-width: 575px) {
   
        

            .header.active { top: 0; }

            .header .btn {
                display: block;
                margin-inline-start: auto;
            }
        }
        @media (min-width: 768px) {
   
            .navbar-list { margin-inline: 30px; }
        }
        @media (min-width: 992px) {
   
            .navbar-list { margin-inline: 30px; }
        }
        /*Responsivo +1200px */
        @media (min-width: 1200px) {
            /*HEADER*/
            .nav-open-btn,
            .navbar > *:not(.navbar-list),
            .header .overlay { display: none; }

            .header .container { max-width: unset; }

            .navbar,
            .navbar.active,
            .navbar-list { all: unset; }

            .navbar,
            /*.navbar.active { margin-inline: auto 20px; }*/

            .navbar-list {
                display: flex;
                gap: 30px;
            }

            .navbar-item { border-block-start: none; }

            .navbar .separator { display: none; }

            .navbar-link:is(:hover, :focus-visible, .active) .span {
                transform: unset;
            }

            .navbar-link {
                font-weight: var(--fw-600);
                letter-spacing: 0.08em;
            }

            .navbar-link::after { display: block; }

            .navbar-link.active::after {
                transform: scaleX(1);
                opacity: 1;
            }

            .header .btn { margin-inline-start: 0; }
             
            .navbar-link .span {
                display: inline-block;
                position: relative;
                color: var(--black);
                transition: transform 0.3s ease, color 0.3s ease;
            }

            .navbar-link .span::before {
                border-radius: 3px;
                content: "";
                position: absolute;
                top: -10px; /* Línea arriba */
                left: 0;
                height: 6px;
                width: 0;
                background-color: #ee9700;
                transition: width 0.3s ease;
            }

            .navbar-link:is(:hover, :focus-visible, .active) .span {
                color: #ee9700;
                
            }

            .navbar-link:is(:hover, :focus-visible, .active) .span::before {
                width: 100%;
            }


            /*Dropdown*/
            .navbar-item.dropdown {
                position: relative;
            }

            .dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                background-color: white;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                list-style: none;
                padding: 3rem;
                margin: 0;
                display: none;
                z-index: 999;
                min-width: 200px;
                opacity: 0;
                transform: translateY(10px);
                transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
                transition-delay: 1.5s;
                border: 1px solid #ee97009a;
                border-radius: 5px;

            }
           .dropdown:hover .dropdown-menu {
                width: auto;
                opacity: 1;
                transform: translateY(0);
                /*columnas*/
                display: flex;
                flex-direction: row;
                align-items: self-start;
            }

            /* Punta estilo bocadillo */
            .dropdown-menu::before {
                content: "";
                position: absolute;
                top: -10px;
                left: 20px;
                border-width: 0 8px 10px 8px;
                border-style: solid;
                border-color: transparent transparent #ee9700 transparent;

                /*columnas*/
                display: flex;
                flex-direction: row;
                align-items: self-start;
            }
            .dropdown-menu li{
                margin-right: 25px;
            }
            .dropdown-menu li a {
                display: block;
                padding: 1rem 1rem;
                color: #333;
                text-decoration: none;
                transition: background-color 0.5s;
                width: 190px;
                font-size: var(--fs-7);
            }

            .dropdown-menu li a:hover {
                color: var(--white);
                background-color: #ee9700;
            }
            .dropdown ion-icon{
                display: none;
            }



        }

/********** MARQUESINA OFERTA***********/
 .oferta {
    background: var(--tpv_net);
    margin-top: 130px;

    overflow: hidden;
    white-space: nowrap;
  }

  .marquee {
    display: flex;
    overflow: hidden;
  }

  .marqueeContent {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
  }

  .ofertaContainer {
    display: inline-flex;
    align-items: center;
    color: var(--white) !important;
    margin-right: 50px;
  }

  .ofertaContainer h2 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-right: 30px;
    display: inline-block;
    text-shadow: 
      0 0 5px #ffffff50,
      0 0 10px #ffffff68,
      0 0 20px #ee9700,
      0 0 40px #ee9700,
      0 0 80px #ee9700;
  }

  .textoOferta {
    font-size: var(--fs-4);
    margin-left: 15px;
    margin-right: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 
      0 0 5px #ffffff87,
      0 0 10px #ffffff54,
      0 0 20px #ee9700,
      0 0 40px #ee9700,
      0 0 80px #ee9700;
  }

  .oferta .btn-secondary{
    color: var(--tpv_net);
    box-shadow: 0 0 5px #ffffff87 ;
  }
   .oferta .btn-secondary:hover{
    color: var(--white);
   }
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

/*****************FORMULARIO MODAL************/
.modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0; top: 0;
            width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.373);
            justify-content: center;
            align-items: center;
        }
        .modal .section-title{
            color: var(--tpv_net);
            text-align: center;
            font-size: var(--fs-3);
        }
        .modal .section-text{
            text-align: center;
            margin-bottom: 8px;
        }
        .modal .section-text span{
            color: var(--tpv_net);
            font-size: var(--fs-4);
        }

        .modal-content {
            background-color: #fff;
            padding: 3rem;
            border-radius: 10px;
            width: 100%;
            max-width: 500px;
            position: relative;
        }

        .modal .input-row{
            display: flex;
            gap: 10px;
        }
        .modal input, textarea{
            border: 1px solid var(--light-gray);
            padding: 0.7rem;
            margin-bottom: 20px;
            border-radius: 3px;
            width: 100%;
            font-size: 1.4rem;
        }
        .modal input:is(:hover, :focus){
            border: 1px solid var(--tpv_net);
        } 
        .modal textarea:is(:hover, :focus){
            border: 1px solid var(--tpv_net);
        } 
        .modal textarea{
            height: 120px;
        }
        .modal textarea::placeholder{
            font-family: var(--ff-urbanist);
        }
        .modal .btn{
            text-align: center;
        }

        .modal .policy{
            font-size: 1.2rem;
        }

        .modal .policy a {
            display: inline;
            text-decoration: underline;
            color: var(--tpv_net);
        }

        .close {
            position: absolute;
            top: 10px; right: 15px;
            font-size: 3rem;
            cursor: pointer;
        }

        .modal-msj {
                    position: fixed;
                    z-index: 1;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    overflow: auto;
                
                    background-color: rgba(0, 0, 0, 0.3);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .modal-msjcontent {
                    background-color: #fefefe;
                    padding: 20px;
                    border-radius: 5px;
                    width: 80%;
                    max-width: 500px;
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }
                .modal-msjcontent p{
                    font-size: var(--fs-5);
                }

                .modal-msjcontent .close {
                    
                    float: right;
                    font-size: 35px;
                    font-weight: bold;
                    color: var(--white);
                  
                }

                .modal-msjcontent .close:hover,
                .modal-msjcontent.close:focus {
                    color: var(--tpv_net);
                    text-decoration: none;
                    cursor: pointer;
                }

/*-----------------------------------*\
            FOOTER
        \*-----------------------------------*/

        .footer .logo { display: none; }

        .footer {
            background-color: var(--cultured-1);
            padding-block: 70px;
        }

        .footer-top {
            display: grid;
            gap: 40px;
            margin-block-end: 60px;
        }

        .footer-list-title {
            color: var(--black);
            font-size: var(--fs-5);
            font-weight: var(--fw-600);
            margin-block-end: 10px;
        }

        .footer-list-text { font-size: var(--fs-7); }

        .footer-list-text .link {
            display: inline-block;
            color: var(--black);
            font-weight: var(--fw-600);
            text-decoration: underline;
            transition: var(--transition-1);
        }

        .footer-list-text .link:is(:hover, :focus) { color: var(--tpv_net); }

        .footer-list-text.bold {
            color: var(--black);
            font-weight: var(--fw-800);
            margin-block: 15px 2px;
        }

        .footer-link {
            font-size: var(--fs-7);
            padding-block: 5px;
        }

        .footer-link:is(:hover, :focus) { text-decoration: underline; }

     

      
       


        .copyright { font-size: var(--fs-7); }

        .footer-bottom .wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: center;
            gap: 15px;
            margin-block-end: 20px;
        }

        .social-list {
            display: flex;
            gap: 20px;
        }

        .social-link {
            color: var(--black);
            font-size: 18px;
            transition: var(--transition-1);
        }

        .social-link:is(:hover, :focus) { color: var(--tpv_net); }

        .footer-bottom > img { max-width: max-content; }
        /*Responsivo +768px*/

        @media (min-width: 768px) {
             /*Footer*/

            .footer-top { grid-template-columns: repeat(3, 1fr); }

            .footer-list:last-child { grid-column: 1 / 4; }

            .footer-bottom {
                display: flex;
                justify-content: space-around;
                align-items: center;
            }

            .footer-bottom .wrapper { margin-block-end: 0; }

        }
        /*Responsivo +992px */

        @media (min-width: 992px) {
            /*Footer*/
            .footer .logo { display: block; }

            .footer { padding-block: 100px 80px; }

            .footer-top {
                grid-template-columns: 0.7fr 0.5fr 0.5fr;
                margin-block-end: 120px;
            }

            .footer-list:last-child { grid-column: auto; }

            .footer .logo img { width: 190px; }

        }

 /*-----------------------------------*\
           BOTÓN VOLVER ARRIBA
        \*-----------------------------------*/

        .back-top-btn {
            position: fixed;
            bottom: 20px;
            right: 30px;
            background-color: var(--white);
            color: var(--tpv_net);
            font-size: 22px;
            padding: 13px;
            border-radius: 50%;
            box-shadow: var(--shadow-1);
            z-index: 4;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-1);
        }

        .back-top-btn:is(:hover, :focus) {
            background-color: var(--tpv_net);
            color: var(--white);
        }

        .back-top-btn.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(-10px);
        }

/***********BOTÓN WHATSAPP**********/
 #whatsapp .wtsapp{
            position: fixed;
            transition: all .5s ease;
            background-color: #25d366;
            display: block;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            border-radius: 50px;
            border-right: none;
            color: var(--white);
            font-weight: 700;
            font-size: 30px;
            bottom: 30px;
            left: 20px;
            border: 0;
            z-index: 9999;
            width: 50px;
            height: 50px;
            line-height: 50px;
            padding: 10px;

        }
        #whatsapp .wtsapp::before{
            content: "";
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            border-radius: 50%;
            -webkit-animation: pulse-border 1500ms ease-out infinite;
            animation: pulse-border 1500ms ease-out infinite;
        }
        #whatsapp .wtsapp:focus{
            border: none;
            outline: none;

        }
        @keyframes pulse-border {
            0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
            100%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3); opacity: 0;}
            
        }
[data-reveal] {
  opacity: 0;
  transition: 0.75s ease;
}

[data-reveal="top"] { transform: translateY(-30px); }

[data-reveal="bottom"] { transform: translateY(30px); }

[data-reveal="left"] { transform: translateX(-30px); }

[data-reveal="right"] { transform: translateX(30px); }

[data-reveal].revealed {
  transform: translate(0);
  opacity: 1;
}