html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
:root{
    --green: #004540;
    --white: #ffffff;
    --gold: #af8f49;
}
.navigation{
    position: fixed;
    top: 0;
    z-index: 20000;
    background-color: var(--green);
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8% 0px 5%;
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.5);
}
.logo-nav{
    height: 30px;
}
.ul-nav{
    list-style: none;
    
    display: flex;
}
.nav-itm{
    padding-right: 40px;
}
.nav-itm:last-child{
    padding: 0;
}
.nav-item{
    transition: .8s ease all;
    display: flex;
    align-items: center;
}
.nav-link{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    transition: transform 0.5s ease;
    font-weight: 600;
}
.nav-active{
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-nav-btn{
    transition: .5s ease all;
}
.logo-nav-btn:hover{
    transform: scale(1.1);
}
.nav-link::before{
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    transition: width 0.5s ease;
}
.nav-item:hover{
    transform: scale(1.1);
}
.nav-item:hover .nav-link{
    font-weight: 700;
}
.nav-link:hover::before{
    width: 100%;
}
.nav-item .nav-active:hover{
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    transform: scale(1) !important;
}
.nav-active::before{
    display: none;
}
.nav-button{
    display: flex;
    align-items: center;
}
.nav-link-btn{
    background: none;
    color: var(--white);
    border: 1px solid var(--white);
    text-decoration: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    position: relative;
    transition: .5s ease all;
    display: inline-block;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: auto;
}
.nav-link-btn h4{
    width: 100%;
    z-index: 2;
    position: relative;
}
.nav-link-btn::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--white);
    top: 0;
    left: -100%;
    transition: .5s ease all;
}
.nav-link-btn:hover::before{
    left: 0;
}
.nav-link-btn:hover{
    color: var(--green);
}
.bars{
    display: none;
}
.redes{
    display: none;
}
@media screen and (max-width: 768px){
    .bars{
        display: block;
        height: 40px;
        width: 40px;
        border: 1px solid var(--white);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bars img{
        filter: invert(100%);
        width: 50%;
    }
    .ul-nav{
        width: 100%;
        height: calc(100vh - 69px);
        background-color: var(--green);
        position: absolute;
        top: 69px;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        -webkit-box-shadow: inset 0px 13px 15px -8px rgba(0,0,0,0.67);
        -moz-box-shadow: inset 0px 13px 15px -8px rgba(0,0,0,0.67);
        box-shadow: inset 0px 13px 15px -8px rgba(0,0,0,0.67);
        padding-top: 15%;
        transition: .7s ease all;
    }
    .ul-nav.active{
        left: 0;
        
    }
    .nav-item{
        width: 80%;
        padding-right: 0;
        display: flex;
        justify-content: center;
    }
    .nav-link{
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 10vh;
    }
    .nav-link::before{
        width: 80%;
        bottom: -10px;
        height: 0.5px;
    }
    .nav-link-btn{
        font-size: 1.5rem;
    }
    .redes{
        display: flex;
        justify-self: flex-end;
        bottom: 0;
        margin-top: auto;
        margin-bottom: 20px;
    }
    .red-icon{
        text-decoration: none;
        color: var(--green);
        padding: 10px;
        height: 60px;
        width: 60px;
        margin-left: 15px;
        margin-right: 15px;
        font-size: 30px;
        border: 1px solid var(--white);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        background-color: var(--white);
    }
    .nav-itm{
        padding-right: 0;
    }

}


/* SLIDEEEER */
.cssSlide{
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-top: 70px;
}
.cssSlide .slider{
    width: 100%;
    height: 100%;
    white-space: nowrap;
    font-size: 0;
    transition: .8s;
}
.cssSlide .slider > *{
    font-size: 1rem;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    height: 100%;
    width: 100%;
    background: none 50% no-repeat;
    background-size: cover;
}
.cssSlide .slider > * img{
    width: 100%;
}
.cssSlide .prevNext{
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 97%;
    left: calc((100% - 97%)/2);
    height: 0;
}
.cssSlide .prevNext > div+div{
    visibility: hidden;
}
.cssSlide .prevNext a{
    background-color: var(--white);
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    opacity: 0.7;
    transition: .3s;
    transform: translateY(-50) left 0;
}
.cssSlide .prevNext a:hover{
    opacity: 1;
    transform: scale(1.1);
}
.cssSlide .prevNext a+a{
    left: auto;
    right: 0;
}
.cssSlide .bullets{
    position: absolute;
    z-index: 2;
    bottom: 0;
    padding: 20px 0px;
    width: 100%;
    text-align: center;
}
.cssSlide .bullets > a{
    display: inline-block;
    width: 10px;
    height: 10px;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: 5px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
    transition: .3s;
}
.cssSlide .bullets > a+a{
    background: rgba(255, 255, 255, 0.5);
}
.cssSlide .bullets > a:hover{
    background: rgba(255, 255, 255, 0.7) !important;
}
.cssSlide >s:target ~ .bullets >* {      
    background: rgba(255, 255, 255, 0.5);
}
#s1:target ~ .bullets >*:nth-child(1) {
    background: rgba(255, 255, 255,   1);
}
#s2:target ~ .bullets >*:nth-child(2) {
    background: rgba(255, 255, 255,   1);
}
#s3:target ~ .bullets >*:nth-child(3) {
    background: rgba(255, 255, 255,   1);
}
#s4:target ~ .bullets >*:nth-child(4) {
    background: rgba(255, 255, 255,   1);
}
.cssSlide >s:target ~ .prevNext >* {      
    visibility: hidden;
}
#s1:target ~ .prevNext >*:nth-child(1) {
    visibility: visible;
}
#s2:target ~ .prevNext >*:nth-child(2) {
    visibility: visible;
}
#s3:target ~ .prevNext >*:nth-child(3) {
    visibility: visible;
}
#s4:target ~ .prevNext >*:nth-child(4) {
    visibility: visible;
}
#s1:target ~ .slider {
    transform: translateX(0%); 
    -webkit-transform: translateX(0%);
}
#s2:target ~ .slider {
    transform: translateX(-100%); 
    -webkit-transform: translateX(-100%);
}
#s3:target ~ .slider {
    transform: translateX(-200%); 
    -webkit-transform: translateX(-200%);
}
#s4:target ~ .slider {
    transform: translateX(-300%); 
    -webkit-transform: translateX(-300%);
}
.progress-bar{
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
}
.progress-bar .progress{
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    transition: 7s linear all;
}

/* HEADER */
.header{
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: -5px;
}
.header .background-image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.header .background-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}
.header .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 1;
}
.header .content h2{
    font-size: 2em;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.header .content p{
    font-size: 1.2em;
    margin-bottom: 20px;
}
.overlay-header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    mix-blend-mode: multiply;
}
.content{
    max-width: 1100px;
    width: 85%;
    padding: 30px 15px;
    border: 5px solid var(--white);
}
.btn-header{
    text-decoration: none;
    color: var(--white);
    padding: 10px 20px;
    background-color: var(--green);
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    transition: .5s ease all;
}
.btn-header:hover{
    filter: saturate(110%);
}



/* BANNER LLAMATIVO */
.banner_call{
    width: calc(100% - 40px);
    margin-bottom: 20px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
.banner_call a{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner_call img{
    width: 100%;
    height: 100%;
    transition: .5s ease all;
}
.banner_call a:hover img{
    filter: saturate(120%);
}
.banner_call .call_movil{
    display: none;
}
@media screen and (max-width: 768px){
    .banner_call .call_movil{
        display: block;
    }
    .call_pc{
        display: none;
    }
}

/*SERVICIOS CONTENEDOR*/
.services-container{
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px 20px;
    margin-bottom: 40px;
}
.service-item{
    width: 23%;
    display: flex;
    flex-direction: column;
    justify-content:start;
    cursor: pointer;
}
.image-service{
    width: 100%;
    overflow: hidden;
}
.image-service img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease all;
}
.title-services h2{
    width: 100%;
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: .5s ease all;
}
.title-services{
    transition: .5s ease-in all;
}
.service-item:hover .image-service img{
    transform: scale(1.1);
}
.service-item:hover .title-services{
    transform: translateY(-5px);
}
.title-servicess{
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 0px;
}
.button-services{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0px;
}
.btn-services a{
    text-align: center;
    padding: 10px 30px;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    transition: .5s ease all;
}
.btn-services a:hover{
    transform: scale(1.2);
}
@media screen and (max-width: 768px){
    .services-container{
        width: 90%;
        gap: 20px 0;
    }
    .service-item{
        width: 48%;
    }
    .title-servicess{
        font-size: 1.7rem;
    }
}

/*VIDEO CONTAINER*/
.video-index {
    width: 80%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 30px;
}

.video-index video {
    width: 100%;
    height: auto;
}
.video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.thumbnail-video{
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: .5s ease all;
}
.play-button{
    filter: invert(100%);
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: .5s ease all;
    opacity: .5;
}
.play-button:hover{
    transform: scale(1.1) translate(-50%, -50%);
    opacity: 1;
}
.thumbnail-video, .play-button {
    transition: all 0.5s ease;
}

/*EQUIPO DE TRABAJO*/
.team{
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.video-back{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.video-team{
    width: 100%;
    height: 100%;   
}
.video-team video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay-video{
    width: 100%;
    height: 100%;
    background-color: #00000099;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
}

.title-team{
    text-align: center;
    width: 100%;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.team .title-team{
    color: var(--white);
    position: relative;
    display: block;
    margin-bottom: 20px;
}
:root{
    --card-height: 380px;
    --card-width: calc((var(--card-height) / 1.5))
}
.item-people{
    text-decoration: none;
    height: var(--card-height);
}
.people-div{
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.card{
    width: var(--card-width);
    height: var(--card-height);
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 36px;
    perspective: 2500px;
    margin: 0 50px;
}
.cover-image{
    width: 85%;
    height: 100%;
    object-fit: cover;
}
.title-wrapper{
    width: 20%;
    background: linear-gradient(to top, #f5e6b3,  #b68d4c 70%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5% 0;
    flex-direction: column;
    z-index: 1;
    transition: .5s ease all;
}
.name{
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
}
.title-wrapper img{
    width: 60%;
}
.wrapper{
    transition: .5s ease all;
    position: absolute;
    width: 100%;
    z-index: -1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    background: linear-gradient(to top, #00201d 12%, #004540 100%);
}
.card:hover .title-wrapper{
    z-index: inherit;
}
.card:hover .wrapper {
    transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
    box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}
.wrapper::before, .wrapper::after{
    content: "";
    opacity: 0;
    width: 100%;
    height: 80px;
    transition: all .5s;
    position: absolute;
    left: 0;
}
.wrapper::before{
    top: 0;
    height: 100%;
    background-image: linear-gradient(to top, transparent 46%,rgba(12, 13, 19, 0.5) 68%,rgba(12, 13, 19) 97%);
}
.wrapper::after{
    bottom: 0;
    height: 100%;
    opacity: 1;
    background-image: linear-gradient(to top, #000000 5%, transparent 90%);
}
.card:hover .wrapper::before, .wrapper:after{
    opacity: 1;
}
.title-card{
    width: var(--card-width);
    transition: .5s ease all;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.title-sub{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: .5s ease all;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 70px;
}
.name-sub{
    font-weight: 600;
    font-size: 1rem;
    width: calc(var(--card-width));
    margin-bottom: -10px;
  }
  .surname-sub{
    font-weight: 800;
    font-size: 22px;
    font-style: italic;
    width: calc(var(--card-width));
  }
  .title img{
    width: auto;
    height: 50px;
    padding-bottom: 20px;
  }
  .card:hover .title {
    transform: translate3d(0%, -30px, 100px);
  }
  .card:hover .title-sub{
    width: 100%;
    transform: translateY(-20px);
  }
  .character {
    width: auto;
    height: var(--card-height);
    opacity: 0;
    transition: all 0.7s;
    position: absolute;
    z-index: -1;
  }
  
  .card:hover .character {
    opacity: 1;
    transform: translate3d(0%, -20%, 100px);
  }


/*VALORES Y PREGUNTAS FREC*/

.valores{
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--green);
}
.valor-link{
    color: black;

}
.item-desp {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 100px;

}
.valores .title-team{
    color: var(--white);
}
.item-desp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    background-color: white;
    color: black;
    padding: 10px 20px;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.item-desp-header span {
    flex: 0 0 95%;
}
.item-desp-header i {
    flex: 0 0 5%;
    cursor: pointer;
    transition: .5s ease all;
}
.item-desp-header i:hover{
    transform: scale(1.1);
}
.item-desp-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Opcional: para separar visualmente los ítems */
}
.item-desp-content {
    height: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
    color: black;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    transition: .5s ease all;
}
.item-desp-content p {
    margin: 0;
}

/* EMAIL-PHP */

.container-email {
    text-align: center;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #00201d;
  } 
  .email-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--white);
  }

  .form {
    display: flex;
    justify-content: center;
    max-width: 100%;
  }
  .input-email{
    width: 80%;
    border: none;
    outline: none;
    padding: 10px 10px;
    font-size: 1rem;
    cursor: pointer;
  }
  .btn-email {
    padding: 10px;
    background-color: var(--gold);
    font-size: 1rem;
    border: none;
    outline: none;
    max-width: 300px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .5s ease all;
  }
  
  .btn-email:hover {
    filter: brightness(150%);
  }
  
  .agenda {
    margin-top: 20px;
    background-color: var(--green);
    border-radius: 5px;
    display: block;
    width: auto;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: .5s ease all;
    position: relative;
    text-decoration: none;
    max-width: 40%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  .agenda::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    position: absolute;
    top: 0;
    left: -100%;
    transition: .7s ease all;
  }
  
  .agenda:hover:before {
    left: 0;
  }

  .agenda h3{
    position: relative;
    z-index: 2;
  }




/* FOOTER */
.footer{
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background-color: #00201d;
    box-shadow: 0px -2px 13px 0px rgba(0,0,0,0.75);
}
.footer-content{
    width: 80%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-map{
    width: 40%;
    margin-right: 10%;
}
.footer-item{
    width: 25%;
}
.footer-socials{
    width: 100%;
}
.map{
    width: 100%;
    margin-bottom: 20px;
}
.map iframe{
    width: 100%;
    min-height: 40vh;
}
.info-map{
    padding-left: 10px;
}
.map-info-item{
    color: var(--white);
    display: flex;
    margin-bottom: 15px;
    cursor: pointer;
    align-items: center;
    transition: .5s ease all;
    text-align: justify;
}
.map-info-item i{
    width: 20px;
    margin-right: 15px;
    transition: .7s ease all;
}
.map-info-item:hover{
    transform: scale(1.05);
}
.map-info-item:hover i{
    transform: rotateY(360deg);
}
.title-footer{
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-list{
    list-style: none;
    margin-left: 10px;
}
.footer-list li{
    margin-bottom: 10px;
}
.footer-list li a{
    text-decoration: none;
    font-size: 1rem;
    color: var(--white);
    position: relative;
    font-weight: 500;
    overflow: hidden;
    transition: .5s ease all;
}
.footer-list li a::before{
    content: "";
    width: 0%;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    bottom: -2px;
    left: 0%;
    transition: .5s ease all;
}

.footer-list li a:hover:before{
    width: 100%;
    left: 0;
}
.footer-list li a:hover{
    font-size: 1.05rem;
}
.footer-socials{
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
.redes-footer{
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
.redes-footer .btn-red{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--white);
    border: 1px solid var(--white);
    height: 35px;
    width: 35px;
    font-size: 15px;
    text-align: center;
    border-radius: 50%;
    margin-left: 15px;
    margin-right: 15px;
    transition: .5s ease all;
}
.btn-red:hover{
    background-color: var(--green);
    transform: scale(1.1);
}
.btn-red i{
    transition: .5s ease all;
    color: var(--green);
}
.btn-red:hover i{
    transform: rotateY(720deg);
    color: var(--white);
}
.copy{
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    font-style: italic;
    color: var(--white);
}
@media screen and (max-width: 768px){
    .footer-map{
        width: 100%;
        margin-right: 0;
    }
    .footer-map iframe{
        min-height: 150px;
    }
    .footer-item{
        width: 50%;
        text-align: center;
        margin-top: 15px;
    }
    .footer-list{
        margin-left: 0;
    }
}



/*FAQ*/
.faq{
    margin-top: 120px;
    margin-bottom: 50px;
    
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-color: #ffffff90;
    border-radius: 20px;
    position: relative;
    padding-top: 60px;
}
.video-back-faq{
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}
@media screen and (max-width: 768px){
    .faq{
        width: 90%;
        padding: 20px 10px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}



.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.whatsapp-button img {
    
    height: 50px;
    width: auto;
    transition: transform 0.5s ease;
    filter: 90%;
}

.whatsapp-button:hover img {
    transform: scale(1.2);
    filter: saturate(120%);
}

.whatsapp-tooltip {
    visibility: hidden;
    width: auto;
    background-color: #25D366;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    right: 60px; /* Ajusta según sea necesario */
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.whatsapp-button:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .team{
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}




