:root{
    --color1: rgb(5, 126, 5);
    --color2: #d49007;
    --color3: #b2b2b2;
    --color4: #d48b67;  
    --color5: #2c3a49;
    --color5b: #212121;
    --color5c: #313131;
    --color6: #ffffff;
    --family1: "Montserrat", sans-serif;
    --family2: "Newsreader", serif;
}

*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

html, body{
    font-family: var(--family1);
}


.wrap{
    max-width: 1200px;
    margin:auto;
}

/* header */
header{
    position: absolute;
    z-index: 99;
    width: 100%;
}

header .wrap{
    background-color: var(--color6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 15px 0px 15px;
    flex-wrap: wrap;
    border-radius: 0 0 6px 6px;
    position: relative;
    z-index: 99;
    overflow: visible;
}

header .wrap::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 10px;
    left: -10px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 10px -10px 0 10px var(--color6);
}

header .wrap::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 10px;
    right: -10px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: -10px -10px 0 10px var(--color6);

}


header .wrap .logo{
    width: auto;
    height: 40px;
}

header .wrap .logo img{
    width: 100%;
    height: 100%;
}

/* nav */
nav ul.menu-principal{
    list-style: none;
    display: flex;
    z-index: 10;
}

nav ul.menu-principal > li > a{
    text-decoration: none;
    color: var(--color5);
    font-size: 1em;
    transition: .3s;
    display: block;
    line-height: 70px;
    padding: 0 20px;
}

nav ul.menu-principal > li > ul.sub-menu{
    z-index: 1;
    position: absolute;
    background-color: var(--color6);
    width: 100%;
    display: flex;
    list-style-type: none;
    left: 0;
    top:100%;
    margin:-10px 0 0 0;
    border-radius: 0 0 10px 10px;
    justify-content: left;
    gap:20px 2.6%;
    z-index: -1;
    pointer-events: none;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all .3s linear;
}

nav ul.menu-principal > li:hover > ul.sub-menu{
    transform: translateY(0);
    padding: 20px;
    max-height: 100vh;
    flex-wrap: wrap;
    pointer-events: all;
}

nav ul.menu-principal > li > ul.sub-menu li{
    flex: 0 0 23%;
    max-width: 23%;
}

nav ul.menu-principal > li > ul.sub-menu li a{
    display: flex;
    justify-content: center ;
    align-items: center;
    padding: 10px 0px;
    color: var(--color5);
    text-align: center;
    text-decoration: none;
    background-color: rgba(0,0,0,.1);
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    line-height: 45px;
    transition: all .1s ease, opacity .1s ease-in-out .1s;
}

nav ul.menu-principal > li:hover > ul.sub-menu li a{
    opacity: 1;

}

nav ul.menu-principal > li > ul.sub-menu li a:hover{
    background-color: var(--color5);
    border-color: var(--color5);
    color: var(--color6);
    transition: all .3s ease;
}

nav ul.menu-principal > li > ul.sub-menu li a span.material-symbols-outlined{
    font-weight: 100;
    color: var(--color2);
    font-size: 16px;
    transition: all .3s ease;
    width:35px;
    line-height:35px;
    margin:0 10px 0 0;
    border-right: solid 1px var(--color5);
}


nav ul.menu-principal > li > ul.sub-menu li a:hover span.material-symbols-outlined{
    color: var(--color1);
    border-right-color: var(--color6);
}

.menu-toggle{
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color5);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span{
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color6);
    transition: transform .25s ease, opacity .25s ease;
}

header.is-menu-open .menu-toggle span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

header.is-menu-open .menu-toggle span:nth-child(2){
    opacity: 0;
}

header.is-menu-open .menu-toggle span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

/* search-box */
.search-box form{
    display: flex;
    border-radius: 50px;
    border: solid 1px rgba(0,0,0,.1);
}

.search-box form input{
    border: none;
    padding: 6px 15px;
    border-radius: 50px 0 0 50px;
    outline: none;
    width: 200px;
}

.search-box form input::placeholder{
    color: var(--color3);
}

.search-box form button{
    border: none;
    background-color: transparent;
    color: var(--color3);
    padding: 6px 15px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
}

/* home */
.home{
    background-color: var(--color6);
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home img{
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height:100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.2);
    pointer-events: none;
}

.masc-home{
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    background:
        radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
        linear-gradient(120deg, #000000, var(--color1), var(--color5), var(--color4), #000000);
    background-size:
        40px 40px,
        300% 300%; 
    background-position:
        0 0,
        0% 50%;
    animation: gradientFlow 12s ease-in-out infinite;
    overflow: hidden;
}

.masc-home video{
    position: absolute;
    top:-1%;
    left: -1%;
    width:102%;
    height:102%;
    object-fit: cover;
     filter: brightness(0.5) contrast(1.2);
     pointer-events: none;
}

@keyframes gradientFlow{
    0%   { background-position: 0 0, 0% 50%; }
    50%  { background-position: 0 0, 100% 50%; }
    100% { background-position: 0 0, 0% 50%; }
}



.masc-home::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    repeating-radial-gradient( circle at 0 0, rgba(255,255,255,0.04),rgba(0,0,0,0.04) 1px,transparent 2px);
    opacity: 0.35;
    pointer-events: none;
}

.home .wrap{
    position: relative;
    z-index: 2; 
    text-align: center;
}
.home .wrap h4{
    display: table;
    margin: 0 auto 10px auto;
    font-size: 20px;
    color: var(--color6);
    background-color: rgba(0,0,0, 0.1);
    backdrop-filter: blur(3px);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
}

.home .wrap h1{
    font-size: clamp(2.5em, 4.5vw, 3.5em);
    font-weight: 400;
    color: var(--color6);
}

.home .wrap h2{
    font-size: clamp(3em, 6vw, 4em);
    font-weight: 200;
    font-family: var(--family2);
    font-style: italic;
    color: var(--color6);
    margin: 20px 0;
}

.home .wrap h3{
    font-size: clamp(1em, 1.3vw, 1.8em);
    font-weight: 300;
    color: var(--color6);
    margin: 0 auto 30px auto;
    max-width: 600px;
    line-height: 1.7em;
}

.home .wrap .btn-1{
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    background-color: rgba(255,255,255,.2);
    backdrop-filter: blur(3px);
    line-height: 50px;
    border-radius: 50px;
    height: 50px;
    overflow: hidden;
    perspective: 600px; 
}

.home .wrap .btn-1 a{
    position: relative;
    display: block;
    height: 50px;
    padding: 0 30px;
    text-decoration: none;
    color: var(--color6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform-style: preserve-3d;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.home .wrap .btn-1 a span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    backface-visibility: hidden;
    transform: translateZ(25px);
}

.home .wrap .btn-1 a::after{
    content: attr(data-hover);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0,0,0,.15);
    transform: rotateX(-90deg) translateZ(25px);
    backface-visibility: hidden;
}

.home .wrap .btn-1:hover a{
    transform: rotateX(90deg);
}

.btn-more--flip{
    text-align: center;
    display: inline-block;
    background-color: rgba(0,0,0,.2);
    backdrop-filter: blur(3px);
    line-height: 50px;
    border-radius: 50px;
    height: 50px;
    overflow: hidden;
    perspective: 600px;
}

.btn-more--flip a{
    position: relative;
    display: block;
    height: 50px;
    padding: 0 30px;
    text-decoration: none;
    color: var(--color5);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform-style: preserve-3d;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.btn-more--flip a span{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    backface-visibility: hidden;
    transform: translateZ(25px);
}

.btn-more--flip a::after{
    content: attr(data-hover);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0,0,0,.15);
    transform: rotateX(-90deg) translateZ(25px);
    backface-visibility: hidden;
}

.btn-more--flip:hover a{
    transform: rotateX(90deg);
}


/* banner-logos */
.banner-logos{
    background-color: var(--color6);
    padding: 20px 0;
    overflow: hidden;
}

.banner-logos .wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    width: 98%;
    max-width: 1660px;
}

.banner-logos .wrap article:nth-child(1){
    width: 20%;
    max-width: 100px;
    font-weight: 300;
    color: var(--color5);
}

.banner-logos .wrap article:nth-child(1) h2{
    font-weight: 400;
    font-size: 18px;
    opacity: .8;
}

.banner-logos .wrap article:nth-child(2){
    width: 78%;
}

.banner-logos-home{
    width:100%;
    overflow:hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 5%, rgba(255,255,255,.6) 10%, #fff 20%, #fff 80%, rgba(255,255,255,.6) 90%, rgba(255,255,255,.2) 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 5%, rgba(255,255,255,.6) 10%, #fff 20%, #fff 80%, rgba(255,255,255,.6) 90%, rgba(255,255,255,.2) 95%, transparent 100%);
}

.banner-logos-home .swipe-wrap{
    display:flex;
    align-items: center;
    gap: 30px;
    will-change: transform;
}

.banner-logos-home .swipe-wrap > div{
    flex:0 0 calc(100% / 6);
    min-width: 100px;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 5px;
    opacity: .8;
    transition: opacity .3s ease;
}

.banner-logos-home .swipe-wrap > div:hover{
    opacity: 1;
}

.banner-logos-home img{
    height:100px;
    width: auto;
    display:block;
    object-fit: contain;
    filter: grayscale(20%);
    transition: opacity .2s ease, filter .2s ease;
    mix-blend-mode: multiply;
    pointer-events: none;
    background-color: var(--color5b);
    border-radius: 10px;
}

.banner-logos-home img:hover{
    opacity: 1;
    filter: grayscale(0%);
}


/* wellcome */
.wellcome{
    background-color: var(--color6);
    padding: 50px 0;
}

.wellcome h2{
    font-size: clamp(1.75em, 3.5vw, 2.6em);
    font-weight: 400;
    color: var(--color5b);
    margin-bottom: 30px;
    line-height: 1.34em;
}

.wellcome h2 span{
    color: var(--color5);
}

.wellcome .gallery{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    flex-wrap: wrap;
    margin:70px 0 0 0;
}

.wellcome .gallery article{
    width: 32%;
    display: flex;
    gap:20px;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(255,255,255,.1);
    padding: 15px;
    border-radius: 10px;
    color: var(--color5);
    position: relative;
}

.wellcome .gallery article .btn-more {
    position: absolute;
    top:10px;
    right:10px;
    line-height: 50px;
    width: 50px;
    height: 50px;
}

.wellcome .gallery article .btn-more a{
    display: block;
    justify-content: center;
    color: var(--color5);
    text-align: center;
}

.wellcome .gallery article .btn-more a span.material-symbols-outlined{
    font-weight: 100;
    width: 100%;
    height: 100%;
    line-height: 50px;
    font-size: 30px;
}

.wellcome .gallery article .icon{
    position: relative;
    background: linear-gradient(135deg, var(--color1), var(--color1), var(--color2));
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    max-width: 70px;
    flex:1;
    overflow: hidden;
}


.wellcome .gallery article .icon::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-radial-gradient(
            rgba(255,255,255,.15) 0,
            rgba(255,255,255,.15) 1px,
            transparent 1px,
            transparent 2px
        );
    background-size: 3px 3px;
    opacity: .35;
    transform: rotate(45deg);
    pointer-events: none;
}


.wellcome .gallery article .icon span.material-symbols-outlined{
    font-size: 50px;
    color: var(--color6);
    opacity: .8;
    font-weight: 100;
}

.wellcome .gallery article .info{
    flex: 3;
}

.wellcome .gallery article .info h3{
    font-size: 16px;
    color: var(--color5b);
    font-weight: 400;
    margin:0 0 5px 0;
}

.wellcome .gallery article .info p{
    font-size: 16px;
    color: var(--color5);
    max-width: 200px;
}   

/* services */
.services{
    padding: 50px 0;
    background-color: var(--color6);
}

.services .wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5%;
}

.services article{
    width: 45%;
}

.services article:nth-child(1) h3{
    font-size: clamp(1em, 1.5vw, 1.2em);
    font-weight: 400;
    color: var(--color5);
}

.services article:nth-child(1) h2{
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 300;
    line-height: 1.2em;
    color: var(--color5);
    margin: 20px 0;
}

.services article:nth-child(1) p{
    font-size: 18px;
    color: var(--color5b);
    font-weight: 500;
    line-height: 1.8em;
    margin:0 0 30px 0;
}

.services article:nth-child(1) ul li{
    border-top:solid 1px var(--color5c);
    color: var(--color5b);
    list-style-type: none;
    padding: 15px 0 15px 25px;
    position: relative;
}

.services article:nth-child(1) ul li:before{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color5);
    border-radius: 50%;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.services article:nth-child(1) ul li:nth-child(1){
    border-top: none;
}

.services article:nth-child(1) .btn-more{
    line-height: 50px;
}

.services article:nth-child(1) .btn-more a{
    color: var(--color5b);
    display: flex;
    align-items: center;
    text-decoration: none;
    gap:5px;
    transition: all .3s ease;
}

.services article:nth-child(1) .btn-more:hover a{
    color: var(--color2);
}

.services article:nth-child(2){
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 0;
}

.services article:nth-child(2) .masc-home{
    inset: 0;
}

.services article:nth-child(2) .info-service{
    z-index: 2;

}

.services article:nth-child(2) h3{
    font-size: clamp(1em, 1.5vw, 1.2em);
    font-weight: 500;
    line-height: 1.2em;
    color: var(--color6);
    margin: 20px 0;
    position: absolute;
    top:10px;
    left: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
}

.services article:nth-child(2) h3 img{
    width: 30px;
}

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;   /* â† CRÃTICO */
    align-items: center;
    width: max-content;
    margin: 5px 0;
}

.marquee-track li {
    list-style: none;
    white-space: nowrap;
    margin-right: 0.6vw; /* o px */
    padding: 10px 32px;
    background-color: var(--color6);
    color: var(--color5);
}


/* banner-1 */
.banner-1{
    padding: 50px 0;
    background-color: var(--color6);
}

.banner-1 .wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5%;
}

.banner-1 article{
    width: 45%;
}

.banner-1 article:nth-child(2) h3{
    font-size: clamp(1em, 1.5vw, 1.2em);
    font-weight: 400;
    color: var(--color5);
}

.banner-1 article:nth-child(2) h2{
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 300;
    line-height: 1.2em;
    color: var(--color5);
    margin: 20px 0;
}

.banner-1 article:nth-child(2) p{
    font-size: 18px;
    color: var(--color5b);
    font-weight: 500;
    line-height: 1.8em;
    margin:0 0 30px 0;
}

.banner-1 article:nth-child(2) ul li{
    border-top:solid 1px var(--color5c);
    color: var(--color5b);
    list-style-type: none;
    padding: 15px 0 15px 25px;
    position: relative;
}

.banner-1 article:nth-child(2) ul li:before{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color5);
    border-radius: 50%;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-1 article:nth-child(2) ul li:nth-child(2){
    border-top: none;
}

.banner-1 article:nth-child(2) .btn-more{
    line-height: 50px;
}

.banner-1 article:nth-child(2) .btn-more a{
    color: var(--color5b);
    display: flex;
    align-items: center;
    text-decoration: none;
    gap:5px;
    transition: all .3s ease;
}

.banner-1 article:nth-child(2) .btn-more:hover a{
    color: var(--color2);
}

.banner-1 article:nth-child(1){
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}


.banner-1 article:nth-child(1) img{
    width: 80%;
    margin: 10%;
    aspect-ratio: 1 / 1;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: cover;

    border-radius: 50% 20% 30% 40% / 12% 30% 20% 40%;
    animation: morph 12s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 50% 20% 30% 40% / 12% 30% 20% 40%;
    }
    33% {
        border-radius: 30% 60% 40% 20% / 40% 20% 60% 30%;
    }
    66% {
        border-radius: 60% 30% 20% 50% / 30% 50% 20% 60%;
    }
    100% {
        border-radius: 50% 20% 30% 40% / 12% 30% 20% 40%;
    }
}



/* banner-2 */
.banner-2{
    padding: 50px 0;
    background-color: var(--color6);
}

.banner-2 .wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5%;
}

.banner-2 article{
    width: 45%;
}

.banner-2 article:nth-child(1) h3{
    font-size: clamp(1em, 1.5vw, 1.2em);
    font-weight: 400;
    color: var(--color5);
}

.banner-2 article:nth-child(1) h2{
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 300;
    line-height: 1.2em;
    color: var(--color5);
    margin: 20px 0;
}

.banner-2 article:nth-child(1) p{
    font-size: 18px;
    color: var(--color5b);
    font-weight: 500;
    line-height: 1.8em;
    margin:0 0 30px 0;
}

.banner-2 article:nth-child(1) ul li{
    border-top:solid 1px var(--color5c);
    color: var(--color5b);
    list-style-type: none;
    padding: 15px 0 15px 25px;
    position: relative;
}

.banner-2 article:nth-child(1) ul li:before{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color5);
    border-radius: 50%;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-2 article:nth-child(1) ul li:nth-child(1){
    border-top: none;
}

.banner-2 article:nth-child(1) .btn-more{
    line-height: 50px;
}

.banner-2 article:nth-child(1) .btn-more a{
    color: var(--color5b);
    display: flex;
    align-items: center;
    text-decoration: none;
    gap:5px;
    transition: all .3s ease;
}

.banner-2 article:nth-child(1) .btn-more:hover a{
    color: var(--color2);
}

.banner-2 article:nth-child(2){
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}


.banner-2 article:nth-child(2) img{
    width: 100%;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

/* impact */
.impact{
    background-color: var(--color6);
    color: var(--color5);
    padding: 80px 0;
}

.impact-wrap{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.impact-kicker{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color5b);
    margin-bottom: 15px;
}

.impact-dot{
    width: 8px;
    height: 8px;
    background-color: var(--color5);
    border-radius: 2px;
    display: inline-block;
}

.impact-content h2{
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 300;
    margin-bottom: 15px;
}

.impact-content p{
    color: var(--color5b);
    line-height: 1.7em;
    max-width: 560px;
    margin-bottom: 40px;
}

.impact-stats{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.impact-stat strong{
    display: block;
    font-size: clamp(.2em, 3vw,1.5em);
    font-weight: 300;
}

.impact-stat span{
    color: var(--color5b);
    font-size: 13px;
    line-height: 1.4em;
    display: block;
    margin-top: 8px;
}

.impact-visual{
    display: flex;
    justify-content: center;
}

.impact-map{
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background-color: #0f0f0f;
    background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px);
    background-size: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

.impact-map img{
    width: 85%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    opacity: .95;
    filter: contrast(1.05) brightness(1.05);
    border-radius: 50px;
}

@media (max-width: 900px){
    .impact-wrap{
        grid-template-columns: 1fr;
    }

    .impact-stats{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 640px){
    .impact{
        padding: 60px 0;
    }

    .impact-stats{
        grid-template-columns: 1fr;
    }
}

/* banner-3 */
.banner-3{
    position: relative;
    width: 100%;
    padding: 10px;
    height: 500px;
    background-color: var(--color6);
    display: flex;
    align-items: center;
    justify-content: center;

}


.banner-3 img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    margin:0 0 -5px 0;
    pointer-events: none;
    filter: brightness(0.5) contrast(1.2);
}

.banner-3 .wrap{
    position: relative;
    z-index: 3;
    text-align: center; 
}

.banner-3 .wrap h2{
    font-size: clamp(3em, 4vw, 2em);
    font-weight: 400;
    color: var(--color5);
    margin-bottom: 30px;
    line-height: 1.34em;
    font-family: var(--family2);
    font-style: italic;
    font-weight: 300;
    position: relative;
    color: rgba(255,255,255,.3);
}

.banner-3 .wrap h2 span{
    position: absolute;
    width: 100%;
    left: 0 ;
    top:50%;
    font-family: var(--family1);
    font-size: clamp(.8em, 1vw, 0.1em);
    line-height: 30px;
    font-weight: 600;
    color: var(--color6);
    font-style: normal;
    opacity: .8;
}

.banner-3 .wrap p{
    font-size: 18px;
    color: var(--color6);
    font-weight: 500;
    line-height: 1.8em;
    margin:0 auto 30px auto;
    max-width: 600px;
}

.banner-3 .wrap .btn-more{
    display: inline-block;
    background-color: rgba(0,0,0,.2);
    backdrop-filter: blur(3px);
    line-height: 50px;
    border-radius: 50px;
    height: 50px;
    overflow: hidden;
    perspective: 600px; 
}


.banner-3 .wrap .btn-more a{
    position: relative;
    display: block;
    height: 50px;
    padding: 0 30px;
    text-decoration: none;
    color: var(--color6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform-style: preserve-3d;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}


.banner-3 .wrap .btn-more a span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    backface-visibility: hidden;
    transform: translateZ(25px);
}

.banner-3 .wrap .btn-more a span:after{
    content: attr(data-hover);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,.15);
    transform: rotateX(-90deg) translateZ(25px);
    backface-visibility: hidden;
}

.banner-3 .wrap .btn-more a:hover span{
    color: var(--color2);
}


.banner-3 .wrap .btn-more a:hover{
    transform: rotateX(90deg);
}



/* page-banner */
.page-banner{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
    padding: 150px 0 50px 0;
    color: var(--color1);
    background-color: var(--color1);
    overflow: hidden;
    z-index: 1;
    inset: 10px;
    border-radius: 10px;
    
    width: calc(100% - 2%);
}
.page-banner img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .1;
    top:0;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}


.page-banner  h1{
    z-index: 3;
    position: relative;
    text-transform: uppercase;
    font-family: var(--fuente2);
    color: var(--color6);
    max-width: 900px;
    margin:auto;
    font-size: clamp(2.5em, 4vw, 3.5em);
    text-align: left;
}

@media(max-width:800px){
	.page-banner{
		padding: 140px 5% 40px 5%;
        border-radius: 0 0 20px 20px;
	}

    .page-banner  h1{
        z-index: 99;
        font-size: 30px;
        text-align: center;
        position: relative;
    }
}

.page-banner .wrap p{
	max-width: 500px;
	margin:20px 0 0 0;
	line-height: 1.8;
}

/* search results */
.search-results-2{
    max-width: 860px;
    margin: 0 auto;
}

.search-results-list ul{
    list-style: none;
    display: grid;
    gap: 22px;
}

.search-item{
    background: var(--color6);
    border: solid 1px rgba(44,58,73,.12);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.search-item:hover{
    border-color: rgba(5,126,5,.35);
    box-shadow: 0 10px 24px rgba(44,58,73,.12);
    transform: translateY(-2px);
}

.search-item a{
    text-decoration: none;
    display: block;
}

.search-item-meta{
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color1);
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
    word-break: break-all;
}

.search-item-sep{
    opacity: .65;
}

.search-item h2{
    font-size: clamp(1.15em, 2.1vw, 1.45em);
    line-height: 1.35;
    color: var(--color5);
    margin: 0 0 6px 0;
    transition: color .2s ease;
}

.search-item:hover h2{
    color: var(--color1);
}

.search-item-type{
    display: inline-block;
    font-size: 12px;
    color: var(--color5b);
    background: rgba(44,58,73,.08);
    border-radius: 999px;
    padding: 4px 10px;
    margin: 0 0 10px 0;
}

.search-item p{
    color: var(--color5c);
    line-height: 1.65;
    margin: 0;
}

.pagination{
    margin-top: 30px;
}

.pagination .nav-links{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .page-numbers{
    text-decoration: none;
    border: solid 1px rgba(44,58,73,.2);
    color: var(--color5);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover{
    background: var(--color1);
    border-color: var(--color1);
    color: var(--color6);
}

.no-results{
    max-width: 700px;
    margin: 0 auto;
    background: var(--color6);
    border: solid 1px rgba(44,58,73,.12);
    border-radius: 14px;
    padding: 24px;
}

.no-results h2{
    color: var(--color5);
    margin-bottom: 10px;
}

.no-results p{
    color: var(--color5c);
    line-height: 1.65;
}

/* content */
.content{
    padding: 80px 0 80px 0;
}

.content p{
    text-align: justify;
    line-height: 2;
    margin:10px 0;
}

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

.content ul{
    padding: 20px;
}

.content hr{
    opacity: .67;
}

.content .title-page{
	text-align: center;
	color: var(--color1);
	font-size: 40px;
	font-weight: 800;
	margin:80px 0 30px 0;
}

.content .image-single{
	width: 70%;
	margin:auto;
	overflow: hidden;
	margin:0 auto 50px auto;
}

.content .image-single img{
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 20px;
}

.content a{
    text-decoration: none;
}

.wc-block-components-button{
    background-color: var(--color1);
    color: var(--color2);
    text-decoration: none;
    padding: 10px 20px;
}

@media(max-width:800px){
    .content{
        padding: 40px 0;
    }
}

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="number"],
.content input[type="file"],
.content input[type="date"],
.content textarea,
.content select{
    font-family: 'Roboto', sans-serif;
    background-color: var(--color6);
    padding: 15px 2%;
    width: 96%;
    border:solid 1px var(--color3);
    outline: none;
    resize: none;
    margin:0 0 10px 0;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
	border-radius: 5px;
}

.content select{
    color: #313131;
    cursor: pointer;
}

.content label{
    font-size: 14px;
    font-weight: bold !important;
    color: #777777 !important;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="number"]:focus,
.content input[type="date"]:focus,
.content textarea:focus,
.content select:focus{
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.content input[type="text"]::placeholder,
.content input[type="email"]::placeholder,
.content input[type="tel"]::placeholder,
.content input[type="number"]::placeholder,
.content input[type="date"]::placeholder,
.content textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: var(--color1);
    color: var(--color6);
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 50px;
    margin:0 0 20px 0;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
    background-color: #313131;
    color: var(--color3);
}

.not-found{
    padding: 100px 0;
    margin:auto;
}

.not-found h2{
    font-size: 100px;
    text-align: center;
    color: #313131;
    font-weight: 900;
}

.not-found h3{
    font-size: 24px;
    text-align: center;
    color: #313131;
    margin:auto;
    max-width: 500px;
    font-weight: 300;
}

@media(max-width:800px){
    .not-found{
        padding: 50px 0;
    }

    .not-found h2{
        font-size: 50px;
    }

    .not-found h3{
        font-size: 17px;
        width: 80%;
    }
}



/* category */
.category{
	padding: 70px 0;
}
.category .wrap{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.category .wrap article{
    width: 23.5%;
    margin:0 0 40px 0;
	position: relative;
	justify-content: center;
	align-items: center;
}

.category .wrap article img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    object-fit: cover;
}

.category .wrap article h2{
    font-size: 1.2em;
    line-height: 1.5;
    color: var(--color2);
    padding: 20px 20px 0 20px;
}

.category .wrap article .btn-more{
    display: table;
    margin:20px 0 20px 20px;
}

.category .wrap article .btn-more a{
    background-color: var(--color1);
    color: var(--color3);
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
}

@media(max-width:800px){
	.category .wrap{
		display: block;
	}

	.category .wrap article{
		width: 90%;
        margin:auto 30px;
	}
}


.subtitle{
	text-align: center;
	padding: 50px 0;
	font-size: 25px;
	font-weight: 600;
	color: var(--color1);
}






/* sub-footer */
.sub-footer{
    background-color: var(--color1);
    color: var(--color5);
    padding: 70px 0;
}

.sub-footer-wrap{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.sub-footer-brand img{
    height: 28px;
    width: auto;
    margin-bottom: 15px;
}

.sub-footer-brand p{
    color: var(--color6);
    line-height: 1.7em;
    max-width: 420px;
    margin-bottom: 20px;
}

.sub-footer-cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background-color: var(--color2);
    color: var(--color6);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all .3s ease;
}

.sub-footer-cta:hover{
    background-color: var(--color2);
    color: var(--color6);
}

.sub-footer-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--color6);
    font-size: 12px;
}

.sub-footer-badge-icon{
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background-color: var(--color2);
    color: var(--color6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.sub-footer-columns{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.sub-footer-col h4{
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--color6);
}

.sub-footer-col ul{
    list-style: none;
}

.sub-footer-col ul li{
    margin-bottom: 10px;
}

.sub-footer-col a{
    color: var(--color6);
    text-decoration: none;
    font-size: 13px;
    transition: color .3s ease;
}

.sub-footer-col a:hover{
    color: var(--color2);
}

/* footer */
.footer-main{
    background-color: var(--color1);
    border-top: solid 1px var(--color6);
    padding: 20px 0;
}

.footer-main-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: center;
    justify-content: space-between;
    color: var(--color6);
    font-size: 12px;
}

.footer-main-wrap a{
    color: var(--color6);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-main-wrap a:hover{
    color: var(--color2);
}

.footer-social{
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--color2);
    color: var(--color6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: lowercase;
}


.footer-social:hover{
    color: var(--color6);
    background-color: var(--color5b);
}
@media (max-width: 900px){
    .sub-footer-wrap{
        grid-template-columns: 1fr;
    }

    .sub-footer-columns{
        grid-template-columns: 1fr 1fr;
    }
}

/* reveal on scroll */
.reveal{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}

.reveal.is-visible{
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
    .reveal,
    .reveal.is-visible{
        transition: none;
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 600px){
    .sub-footer{
        padding: 50px;
    }

    .sub-footer-columns{
        grid-template-columns: 1fr;
    }

    .footer-main-wrap{
        justify-content: flex-start;
    }
}

.social-footer{
    display: flex;
    gap: 10px;
}

@media (max-width: 1024px){
    .home .wrap,
    .banner-3 .wrap,
    .wellcome .wrap,
    .services .wrap,
    .banner-1 .wrap,
    .impact .wrap{
        width: 92%;
    }

    .home .wrap h1,
    .home .wrap h2,
    .wellcome h2,
    .services article:nth-child(1) h2,
    .banner-1 article:nth-child(2) h2,
    .impact-content h2,
    .banner-3 .wrap h2{
        text-wrap: balance;
    }
}

@media (max-width: 900px){
    .menu-toggle{
        display: inline-flex;
        position: relative;
        z-index: 1002;
        pointer-events: auto;
    }

    header .wrap{
        align-items: center;
        gap: 10px;
    }

    .search-box{
        order: 2;
        width: calc(100% - 56px);
    }

    .search-box form input{
        width: 100%;
    }

    .nav-principal{
        order: 3;
        width: 100%;
        display: block !important;
        max-height: 0 !important;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height .3s ease, margin-top .3s ease;
    }

    header.is-menu-open .nav-principal{
        max-height: 80vh !important;
        margin-top: 6px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    .nav-principal.is-open{
        max-height: 80vh !important;
        margin-top: 6px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    nav ul.menu-principal{
        flex-direction: column;
        width: 100%;
        background: var(--color6);
        border-radius: 8px;
        overflow: hidden;
        border: solid 1px rgba(44,58,73,.1);
    }

    nav ul.menu-principal > li > a{
        line-height: 1.4;
        padding: 14px 16px;
        border-top: solid 1px rgba(0,0,0,.08);
    }

    nav ul.menu-principal > li:first-child > a{
        border-top: none;
    }

    nav ul.menu-principal > li > ul.sub-menu{
        position: static;
        width: 100%;
        margin: 0;
        border-radius: 0;
        display: block;
        max-height: 0;
        padding: 0;
        gap: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 1;
    }

    nav ul.menu-principal > li:hover > ul.sub-menu{
        max-height: 0;
        padding: 0;
        pointer-events: none;
    }

    nav ul.menu-principal > li.is-open > ul.sub-menu{
        max-height: 700px;
        padding: 8px 12px 12px 12px;
        pointer-events: all;
    }

    nav ul.menu-principal > li > ul.sub-menu li,
    nav ul.menu-principal > li > ul.sub-menu li a{
        max-width: 100%;
        flex: 0 0 100%;
    }

    nav ul.menu-principal > li > ul.sub-menu li a{
        opacity: 1;
        justify-content: flex-start;
        padding: 10px 12px;
        line-height: 1.4;
        margin-top: 6px;
    }

    nav ul.menu-principal > li > ul.sub-menu li a span.material-symbols-outlined{
        border-right: none;
        margin-right: 8px;
    }

    .home{
        height: auto;
        min-height: 100svh;
        padding: 130px 0 70px 0;
    }

    .home .wrap h1{
        font-size: clamp(2em, 8vw, 2.8em);
        line-height: 1.15;
    }

    .home .wrap h2{
        font-size: clamp(2em, 9vw, 3em);
        line-height: 1.15;
        margin: 14px 0;
    }

    .home .wrap h3{
        font-size: clamp(0.95em, 3.6vw, 1.15em);
        line-height: 1.6;
        max-width: 92%;
    }

    .wellcome .gallery article,
    .services article,
    .banner-1 article{
        width: 100%;
    }

    .services article:nth-child(2){
        padding: 120px 0;
    }

    .wellcome h2,
    .services article:nth-child(1) h2,
    .banner-1 article:nth-child(2) h2,
    .impact-content h2,
    .banner-3 .wrap h2{
        line-height: 1.2;
        font-size: clamp(1.7em, 6.2vw, 2.5em);
    }

    .banner-3{
        height: auto;
        min-height: 520px;
        padding: 70px 10px;
    }
}

@media (max-width: 640px){
    .home .wrap h4{
        font-size: 12px;
        padding: 8px 14px;
    }

    .home .wrap h1{
        font-size: clamp(1.65em, 9vw, 2.2em);
        line-height: 1.12;
    }

    .home .wrap h2{
        font-size: clamp(1.8em, 10vw, 2.5em);
    }

    .home .wrap h3{
        font-size: 0.96em;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .home .wrap .btn-1,
    .home .wrap .btn-1 a{
        max-width: 94vw;
    }

    .home .wrap .btn-1 a{
        padding: 0 18px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .services article:nth-child(2) h3{
        position: relative;
        top: 0;
        margin: 0 0 16px 0;
        padding: 0 16px;
    }

    .banner-3 .wrap h2{
        font-size: clamp(1.65em, 8.4vw, 2.1em);
        margin-bottom: 16px;
    }

    .banner-3 .wrap h2 span{
        position: static;
        display: block;
        font-size: 0.46em;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .banner-3 .wrap p{
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-height: 780px){
    .home{
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding: 110px 0 42px 0;
    }

    .home .wrap{
        width: 92%;
    }

    .home .wrap h1{
        font-size: clamp(1.8em, 6.2vh, 3em);
        line-height: 1.08;
    }

    .home .wrap h2{
        font-size: clamp(1.8em, 6.5vh, 3.2em);
        line-height: 1.08;
        margin: 10px 0;
    }

    .home .wrap h3{
        font-size: clamp(0.95em, 2.8vh, 1.15em);
        line-height: 1.45;
        margin-bottom: 18px;
        max-width: 780px;
    }
}

@media (max-height: 640px){
    header .wrap .logo{
        height: 34px;
    }

    nav ul.menu-principal > li > a{
        line-height: 56px;
        padding: 0 14px;
        font-size: 0.95em;
    }

    .home{
        padding: 92px 0 30px 0;
    }

    .home .wrap h1{
        font-size: clamp(1.55em, 5.8vh, 2.4em);
    }

    .home .wrap h2{
        font-size: clamp(1.6em, 6vh, 2.6em);
        margin: 8px 0;
    }

    .home .wrap h3{
        font-size: clamp(0.9em, 2.6vh, 1em);
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .home .wrap .btn-1,
    .home .wrap .btn-1 a,
    .home .wrap .btn-1 a span{
        height: 44px;
        line-height: 44px;
    }
}