/* ==========================================================
LOGÍSTICA ECA
STYLE.CSS
PARTE 4A1
RESET + BODY + CONTAINER
========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Barlow',sans-serif;

    background:#08152F;

    color:#FFFFFF;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}

.container{

    width:min(1380px,90%);

    margin:auto;

}

/* ==========================================================
NAVBAR
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    overflow:hidden;

}

#heroVideo{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.08);

    filter:brightness(.92);

    z-index:1;

}

.overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:
        linear-gradient(
            90deg,
            rgba(8,21,47,.78) 0%,
            rgba(8,21,47,.52) 42%,
            rgba(8,21,47,.15) 75%,
            rgba(8,21,47,.05) 100%
        ),
        linear-gradient(
            to top,
            rgba(8,21,47,.28),
            rgba(8,21,47,0)
        );

}

nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:96px;

    background:rgba(10,25,60,.45);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:1000;

}

nav.scrolled{

    background:rgba(8,21,47,.90);

    backdrop-filter:blur(20px);

}

.nav-container{

    max-width:1440px;

    height:100%;

    margin:0 auto;

    padding:0 40px;

    display:grid;

    grid-template-columns:240px 1fr 220px;

    align-items:center;

    gap:40px;

}

.logo{

    width:185px;

}

nav ul{

    display:flex;

    justify-content:center;

    align-items:center;

    list-style:none;

    gap:42px;

    margin:0;

    padding:0;

}

nav ul li a{

    color:#FFFFFF;

    font-family:'Barlow Condensed',sans-serif;

    font-size:16px;

    letter-spacing:.08em;

    text-transform:uppercase;

    transition:.30s;

}

nav ul li a:hover{

    color:#F4D529;

}

/* ==========================================================
STYLE.CSS
PARTE 4A2
BOTÕES + HERO
========================================================== */

.btn-menu{

    width:190px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    justify-self:end;

    border:2px solid #F4D529;

    border-radius:999px;

    color:#FFFFFF;

    font-family:'Barlow Condensed',sans-serif;

    font-size:16px;

    letter-spacing:.08em;

    text-transform:uppercase;

    transition:.35s;

}

.btn-menu:hover{

    background:#F4D529;

    color:#16284D;

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:720px;

    margin-left:5%;

    padding-top:190px;

}

.hero-content span{

    display:inline-block;

    align-items:center;

    padding:12px 24px;

    border:1px solid rgba(255,255,255,.35);

    border-radius:999px;

    color:#F4D529;

    font-size:14px;

    font-weight:700;

    letter-spacing:.10em;

    margin-bottom:24px;

}

.hero-content h1{

    font-family:'Barlow Condensed',sans-serif;

    font-size:96px;

    font-weight:800;

    line-height:.88;

    text-transform:uppercase;

    margin-bottom:34px;

    max-width:700px;

    letter-spacing:-1px;
}

.hero-content p{

    font-size:23px;

    line-height:1.8;

    color:rgba(255,255,255,.88);

    margin-bottom:38px;

    max-width:640px;

}

.buttons{

    display:flex;

    gap:18px;

    margin-top:50px;

}

.btn-yellow{

    display:flex;

    align-items:center;

    justify-content:center;

    width:230px;

    height:58px;

    background:#F4D529;

    color:#16284D;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

}

.btn-yellow:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(244,213,41,.30);

}

.btn-outline{

    display:flex;

    align-items:center;

    justify-content:center;

    width:230px;

    height:58px;

    border:2px solid rgba(255,255,255,.45);

    color:#FFFFFF;

    border-radius:999px;

    transition:.35s;

}

.btn-outline:hover{

    background:#FFFFFF;

    color:#16284D;

}

/* ==========================================================
STYLE.CSS
PARTE 4A3
MENU MOBILE + RESPONSIVO
========================================================== */

.hamburger{

    display:none;

    width:36px;

    cursor:pointer;

    z-index:1002;

}

.hamburger span{

    display:block;

    width:100%;

    height:3px;

    background:#FFFFFF;

    margin:7px 0;

    border-radius:30px;

    transition:.35s;

}

.hamburger.active span:nth-child(1){

    transform:translateY(10px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-10px) rotate(-45deg);

}

.menu-backdrop{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.menu-backdrop.active{

    opacity:1;

    visibility:visible;

}

.mobile-menu{

    position:fixed;

    top:0;

    right:-360px;

    width:330px;

    height:100vh;

    background:#0B1B44;

    display:flex;

    flex-direction:column;

    padding:120px 40px;

    gap:28px;

    transition:.35s;

    z-index:999;

    box-shadow:-25px 0 60px rgba(0,0,0,.35);

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    color:#FFFFFF;

    font-family:'Barlow Condensed',sans-serif;

    font-size:28px;

    text-transform:uppercase;

}

.mobile-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    margin-top:25px;

    height:56px;

    border:2px solid #F4D529;

    border-radius:999px;

}

/* ==========================================================
RESPONSIVO
========================================================== */

@media(max-width:1100px){

.hero-content{

max-width:640px;

}

.hero-content h1{

font-size:76px;

}

.hero-content p{

font-size:22px;

}

nav ul{

gap:24px;

}

}

@media(max-width:900px){

nav{

padding:0 24px;

}

nav ul{

display:none;

}

.btn-menu{

display:none;

}

.hamburger{

display:block;

}

.hero-content{

margin:0;

padding:150px 24px 80px;

max-width:100%;

}

.hero-content h1{

font-size:62px;

}

.hero-content p{

font-size:20px;

}

.buttons{

flex-direction:column;

align-items:flex-start;

}

.mobile-menu{

width:100%;

right:-100%;

}

}

@media(max-width:480px){

.logo{

width:130px;

}

.hero-content{

padding-top:130px;

}

.hero-content h1{

font-size:50px;

}

.hero-content p{

font-size:17px;

line-height:1.6;

}

.hero-content span{

font-size:12px;

}

.btn-yellow,
.btn-outline{

width:100%;

max-width:260px;

}

}

/* ==========================================================
STYLE.CSS
PARTE 4B1
SERVIÇOS
========================================================== */

.services{

    background:#FFFFFF;

    padding:130px 6%;

}

.services-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.services-image{

    position:relative;

}

.services-image img{

    width:100%;

    height:720px;

    object-fit:cover;

    border-radius:28px;

    display:block;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.services-content{

    color:#16284D;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    border:2px solid #E3B600;

    border-radius:999px;

    color:#D6A500;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

    margin-bottom:28px;

}

.services-content h2{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    line-height:.95;

    margin-bottom:55px;

    color:#16284D;

}

.service-item{

    padding:28px 0;

    border-bottom:1px solid #ECECEC;

}

.service-item:last-child{

    border-bottom:none;

}

.service-item h3{

    font-family:'Barlow Condensed',sans-serif;

    font-size:38px;

    color:#16284D;

    margin-bottom:12px;

}

.service-item p{

    color:#666666;

    font-size:20px;

    line-height:1.8;

}

.service-item:hover{

    padding-left:18px;

    transition:.35s;

}

/* RESPONSIVO */

@media(max-width:980px){

.services{

padding:90px 24px;

}

.services-container{

grid-template-columns:1fr;

gap:50px;

}

.services-image{

order:1;

}

.services-content{

order:2;

}

.services-image img{

height:430px;

}

.services-content h2{

font-size:54px;

}

.service-item h3{

font-size:30px;

}

.service-item p{

font-size:18px;

}

}

/* ==========================================================
STYLE.CSS
PARTE 4B2
EMPRESA
========================================================== */

.about{

    background:#F8F9FB;

    padding:140px 6%;

}

.about-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:100px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    border-radius:30px;

    display:block;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.about-content{

    color:#16284D;

}

.about-content h2{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    line-height:.95;

    margin:25px 0 35px;

    color:#16284D;

}

.about-content p{

    font-size:20px;

    line-height:1.9;

    color:#666666;

    margin-bottom:24px;

}

.btn-outline-dark{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:230px;

    height:58px;

    border:2px solid #16284D;

    border-radius:999px;

    color:#16284D;

    font-weight:700;

    transition:.35s;

}

.btn-outline-dark:hover{

    background:#16284D;

    color:#FFFFFF;

}

@media(max-width:980px){

.about{

padding:90px 24px;

}

.about-container{

grid-template-columns:1fr;

gap:55px;

}

.about-image{

order:1;

}

.about-content{

order:2;

}

.about-image img{

height:430px;

}

.about-content h2{

font-size:54px;

}

.about-content p{

font-size:18px;

}

}

/* ==========================================================
STYLE.CSS
PARTE 4B3
COBERTURA INTERNACIONAL + NÚMEROS
========================================================== */

.coverage{

    background:#16284D;

    padding:140px 6%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.coverage-content{

    max-width:650px;

}

.coverage .section-tag{

    color:#F4D529;

    border-color:#F4D529;

}

.coverage h2{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    line-height:.95;

    margin:25px 0 35px;

    color:#FFFFFF;

}

.coverage p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.82);

    margin-bottom:40px;

}

.coverage-image{

    position:relative;

    height:650px;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.coverage-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.coverage-image:hover img{

    transform:scale(1.04);

}

.coverage-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(22,40,77,.15),

        rgba(22,40,77,.05)

    );

}

.countries{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:45px;

}

.countries span{

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.countries span:hover{

    background:#F4D529;

    color:#16284D;

    transform:translateY(-3px);

}

/* ===========================
NÚMEROS
=========================== */

.numbers{

    background:#FFFFFF;

    padding:100px 6%;

}

.numbers-grid{

    max-width:1320px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.number-card{

    background:#FFFFFF;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.number-card:hover{

    transform:translateY(-10px);

}

.number-card h3{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    color:#F4D529;

    margin-bottom:12px;

}

.number-card p{

    color:#555;

    font-size:18px;

    line-height:1.7;

}

@media(max-width:980px){

.coverage{

grid-template-columns:1fr;

padding:90px 24px;

gap:55px;

}

.coverage h2{

font-size:54px;

}

.coverage p{

font-size:18px;

}

.coverage-image{

order:-1;

}

.numbers{

padding:80px 24px;

}

.numbers-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:640px){

.numbers-grid{

grid-template-columns:1fr;

}

}

/* ==========================================================
STYLE.CSS
PARTE 4B4
VÍDEO INSTITUCIONAL
========================================================== */

.video-section{

    background:#F7F8FB;

    padding:140px 6%;

}

.video-section .container{

    max-width:1200px;

    text-align:center;

}

.video-section .section-tag{

    margin:0 auto 28px;

}

.video-section h2{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    color:#16284D;

    line-height:.95;

    margin-bottom:28px;

}

.video-section p{

    max-width:820px;

    margin:0 auto 55px;

    font-size:20px;

    line-height:1.9;

    color:#666;

}

.video-wrapper{

    position:relative;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 35px 80px rgba(0,0,0,.18);

    transition:.40s;

}

.video-wrapper:hover{

    transform:translateY(-8px);

    box-shadow:0 45px 90px rgba(0,0,0,.22);

}

.video-wrapper video{

    display:block;

    width:100%;

    height:auto;

    background:#000;

}

.video-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    border:2px solid rgba(255,255,255,.08);

    border-radius:30px;

}

/* RESPONSIVO */

@media(max-width:980px){

.video-section{

padding:90px 24px;

}

.video-section h2{

font-size:54px;

}

.video-section p{

font-size:18px;

margin-bottom:40px;

}

.video-wrapper{

border-radius:20px;

}

}

/*==========================================
GALERIA
==========================================*/

.gallery{

    background:#F8F9FC;

    padding:140px 6%;

}

.gallery h2{

    color:#16284D;

}

.gallery .section-tag{

    color:#D6A500;

    border-color:#D6A500;

}

.gallery .container{

    max-width:1320px;

    margin:auto;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-top:60px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:340px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.gallery-item:hover img{

    transform:scale(1.06);

}

/* MOBILE */

@media(max-width:980px){

.gallery{

    padding:90px 30px;

}

.gallery-grid{

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.gallery-item{

    height:260px;

}

}

@media(max-width:600px){

.gallery{

    padding:70px 20px;

}

.gallery-grid{

    grid-template-columns:1fr;

    gap:18px;

}

.gallery-item{

    height:240px;

}

}

/* ===========================
   INSTAGRAM
=========================== */

.instagram{

    background:#16284D;

    padding:140px 6%;

}

.instagram .container{

    max-width:1320px;

    margin:auto;

    text-align:center;

}

.instagram .section-tag{

    color:#F4D529;

    border-color:#F4D529;

    margin-bottom:30px;

}

.instagram h2{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    line-height:.95;

    color:#FFFFFF;

    margin-bottom:28px;

}

.instagram > .container > p{

    max-width:760px;

    margin:0 auto 70px;

    font-size:20px;

    line-height:1.8;

    color:rgba(255,255,255,.82);

}

.instagram-box{

    max-width:920px;

    margin:auto;

    background:#FFFFFF;

    border-radius:34px;

    padding:70px 60px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    box-shadow:0 35px 80px rgba(0,0,0,.22);

}

.instagram-icon{

    width:100px;

    height:100px;

    border-radius:50%;

    overflow:hidden;

    background:#FFF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    border:5px solid #FFF;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.instagram-icon img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

}

.instagram-info{

    text-align:center;

}

.instagram-info h3{

    font-family:'Barlow Condensed',sans-serif;

    font-size:58px;

    color:#16284D;

    margin-bottom:18px;

}

.instagram-info p{

    margin:0 auto 40px;

    max-width:560px;

    color:#666;

    font-size:20px;

    line-height:1.8;

}

.instagram .btn-yellow{

    width:320px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    transition:.35s;

}

.instagram .btn-yellow:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

@media(max-width:980px){

    .instagram{

        padding:90px 24px;

    }

    .instagram h2{

        font-size:54px;

    }

    .instagram > .container > p{

        font-size:18px;

        margin-bottom:50px;

    }

    .instagram-box{

        padding:45px 30px;

    }

    .instagram-icon{

    width:82px;

    height:82px;

    border-radius:50%;

    border:4px solid #FFF;

    margin-bottom:22px;

}

.instagram-icon img{

    width:100%;

    height:100%;

}

    .instagram-info h3{

        font-size:42px;

    }

    .instagram-info p{

        font-size:17px;

        margin-bottom:30px;

    }

    .instagram .btn-yellow{

        width:100%;

        max-width:300px;

    }

}

/* ==========================================================
STYLE.CSS
PARTE 4C3
CONTATO
========================================================== */

.contact{

    background:#F7F8FB;

    padding:140px 6%;

}

.contact .container{

    max-width:1320px;

}

.contact .section-tag{

    margin-bottom:28px;

}

.contact h2{

    font-family:'Barlow Condensed',sans-serif;

    font-size:72px;

    color:#16284D;

    line-height:.95;

    margin-bottom:25px;

}

.contact > .container > p{

    max-width:760px;

    color:#666;

    font-size:20px;

    line-height:1.8;

    margin-bottom:60px;

}

.contact-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:stretch;
}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-item{

    background:#FFFFFF;

    padding:22px 26px;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.contact-item h3{

    font-family:'Barlow Condensed',sans-serif;

    font-size:30px;

    color:#16284D;

    margin-bottom:10px;

}

.contact-item p{

    color:#666;

    font-size:18px;

    line-height:1.7;

}

.contact-form{
    background:#FFFFFF;
    padding:45px;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(0,0,0,.10);

    display:flex;
    flex-direction:column;

    gap:16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #D8DCE3;

    border-radius:14px;

    font-size:17px;

    font-family:'Barlow',sans-serif;

    background:#FFFFFF;

    transition:.30s;

    resize:none;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#F4D529;

    box-shadow:0 0 0 4px rgba(244,213,41,.15);

}

.contact-form button{

    width:260px;
    height:58px;

    background:#F4D529;
    color:#16284D;
    border:none;
    border-radius:999px;
    font-weight:700;
    font-size:16px;
    text-transform:uppercase;
    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(244,213,41,.30);

}

@media(max-width:980px){

.contact{

padding:90px 24px;

}

.contact h2{

font-size:54px;

}

.contact > .container > p{

font-size:18px;

margin-bottom:40px;

}

.contact-grid{

grid-template-columns:1fr;

gap:35px;

}

.contact-form{

padding:30px;

}

.contact-form button{

width:100%;

}

}

/* ==========================================
UTILITÁRIOS
========================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.text-center{

    text-align:center;

}

.hidden{

    display:none;

}

/* ==========================================
SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08152F;

}

::-webkit-scrollbar-thumb{

    background:#F4D529;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#FFD94D;

}

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

footer{

    background:#0E1E3E;

    color:#FFF;

    padding:80px 6% 30px;

}

.footer-grid{

    max-width:1320px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1.3fr;

    gap:70px;

    align-items:flex-start;

}

.footer-logo{

    width:170px;

    margin-bottom:25px;

}

.footer-brand p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    max-width:430px;

}

.footer-links,
.footer-contact{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.footer-contact p{

    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin:0;

}

.footer-links h3,
.footer-contact h3{

    font-family:'Barlow Condensed',sans-serif;

    font-size:28px;

    color:#F4D529;

    margin-bottom:30px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;

}

.footer-links a:hover{

    color:#F4D529;

    padding-left:6px;

}

.footer-contact p{
    margin:0 0 14px;
    line-height:1.7;
}

.footer-links a{
    margin-bottom:12px;
}

.footer-contact p:last-child{

    margin-bottom:0;

}

.footer-contact strong{

    display:block;
    color:#F4D529;
    font-family:'Barlow Condensed',sans-serif;
    font-size:20px;
    margin-bottom:8px;
    font-weight:700;

}

.footer-bottom{

    max-width:1320px;

    margin:60px auto 0;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    color:rgba(255,255,255,.55);

    font-size:15px;

}

.footer-contact-grid{

    display:grid;
    grid-template-columns:260px 220px;
    column-gap:60px;
    align-items:start;

}

.footer-contact-grid > div{

    display:flex;
    flex-direction:column;
    align-self:flex-start;

}

.footer-contact-grid strong{

    display:block;
    color:#F4D529;
    font-family:'Barlow Condensed',sans-serif;
    font-size:20px;
    margin-bottom:14px;
    min-height:28px;

}

.footer-contact-grid p{

    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:36px;

}

@media(max-width:900px){

   .footer-grid{
    grid-template-columns:1.8fr .9fr 1fr;
    gap:60px;
    align-items:start;
}

    .footer-brand p{
    max-width:360px;
}

}

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

.whatsapp-float{

    position:fixed;

    right:40px;

    bottom:40px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    box-shadow:0 12px 28px rgba(0,0,0,.22);

    z-index:9999;

    transition:all .30s ease;

    animation:whatsappPulse 3s ease-in-out infinite;

}

.whatsapp-float span{

    display:none;

}

.whatsapp-float img{

    width:30px;

    height:30px;

    display:block;

}

.whatsapp-float:hover{

    transform:translateY(-4px) scale(1.08);

    box-shadow:0 18px 38px rgba(0,0,0,.30);

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

    }

}

@media(max-width:768px){

.whatsapp-float{

    width:54px;

    height:54px;

    right:18px;

    bottom:18px;

}

.whatsapp-float img{

    width:28px;

    height:28px;

}

}

/*==========================
SCROLL ANIMATIONS
==========================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:opacity .8s ease, transform .8s ease;

    will-change:opacity, transform;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.reveal-left{

    opacity:0;

    transform:translateX(-70px);

    transition:opacity .8s ease, transform .8s ease;

}

.reveal-left.active{

    opacity:1;

    transform:translateX(0);

}

.reveal-right{

    opacity:0;

    transform:translateX(70px);

    transition:opacity .8s ease, transform .8s ease;

}

.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}

section{

    scroll-margin-top:110px;

}

.contact-form textarea{

    height:140px;
    resize:vertical;

}