/* RESET */







*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{

--blue:#146ff8;
--dark:#00318a;
--light:#f4f8fd;
--white:#fff;
--text-gray:#5b6472;
--border-color: rgba(0, 0, 0, .05);

/* FALTAVAM */
--primary:#00318a;
--secondary:#38c6d9;
--text:#5b6472;

--shadow:
0 15px 40px rgba(0,0,0,.08);

}

body{

font-family:'Segoe UI',sans-serif;
background:#ffffff;
overflow-x:hidden;

}

.container{

width:100%;
max-width:1400px;
margin:auto;
padding:0 25px;

}

/* HEADER */

.main-header{

position:sticky;
top:0;
z-index:9999;

background:rgba(255,255,255,.95);

backdrop-filter:blur(20px);

border-bottom:1px solid rgba(0,0,0,.05);

}

.nav-container{

height:110px;

display:flex;
align-items:center;
justify-content:space-between;

}

.logo img{

height:90px;

}

/* MENU */

.nav-menu ul{

display:flex;
align-items:center;
gap:30px;

list-style:none;

}

.nav-menu a{

text-decoration:none;

font-size:15px;
font-weight:700;

color:#16306b;

display:flex;
align-items:center;
gap:8px;

padding:10px 0;

transition:.3s;

}

.arrow{

font-size:10px;
transition:.3s;

}

/* DROPDOWN */

.dropdown{

position:relative;

}

.submenu{

position:absolute;

top:100%;
left:50%;

transform:
translateX(-50%)
translateY(15px);

background:#fff;

min-width:300px;

padding:20px;

border-radius:18px;

box-shadow:
0 15px 40px rgba(0,0,0,.12);

opacity:0;
visibility:hidden;

transition:.3s;

z-index:1000;

}

.dropdown:hover .submenu{

opacity:1;
visibility:visible;

transform:
translateX(-50%)
translateY(0);

}

.dropdown:hover .arrow{

transform:rotate(180deg);

}

.submenu-grid{

display:grid;
gap:10px;

}

.submenu-grid a{

padding:12px 15px;

border-radius:12px;

font-size:14px;
font-weight:600;

color:#444;

display:flex;
align-items:center;
gap:12px;

}

.submenu-grid a:hover{

background:#f5f9ff;
color:var(--blue);

}

.submenu-grid a i{

width:32px;
height:32px;

background:#eef5ff;
color:var(--blue);

border-radius:10px;

display:flex;
align-items:center;
justify-content:center;

}

/* BOTÃO */

.btn-header{

background:var(--dark);
color:#fff;

padding:13px 24px;

border-radius:14px;

text-decoration:none;
font-weight:700;

transition:.3s;

}

.btn-header:hover{

transform:translateY(-3px);

}



/* =========================================
   BOTÃO MOBILE
========================================= */

.mobile-menu-btn{

    display:none;

    width:52px;
    height:52px;

    border:none;
    border-radius:14px;

    background:#f3f7ff;

    color:var(--primary);

    font-size:22px;

    cursor:pointer;

    align-items:center;
    justify-content:center;

    transition:.3s ease;

    z-index:10001;
}

.mobile-menu-btn:hover{
    background:#e7efff;
}

/* =========================================
   MENU MOBILE
========================================= */

@media(max-width:1024px){

    .nav-container{
        height:90px;
    }

    .mobile-menu-btn{
        display:flex;
    }

    .btn-header{
        display:none;
    }

    /* MENU */

    .nav-menu{

        position:fixed;

        top:90px;
        left:0;

        width:100%;

        background:#ffffff;

        padding:25px;

        box-shadow:
        0 20px 50px rgba(0,0,0,.08);

        transform:
        translateY(-20px);

        opacity:0;
        visibility:hidden;

        transition:.35s ease;

        z-index:9999;
    }

    /* MENU ABERTO */

    .nav-menu.open{

        transform:
        translateY(0);

        opacity:1;
        visibility:visible;
    }

    /* UL */

    .nav-menu ul{

        flex-direction:column;

        align-items:flex-start;

        gap:5px;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu a{

        width:100%;

        padding:16px 10px;

        justify-content:space-between;

        border-radius:14px;
    }

    .nav-menu a:hover{
        background:#f5f9ff;
    }

    /* SUBMENU MOBILE */

    .submenu{

        position:static;

        transform:none;

        opacity:1;
        visibility:visible;

        display:none;

        margin-top:10px;

        width:100%;
        min-width:100%;

        box-shadow:none;

        border:
        1px solid rgba(0,0,0,.05);

        border-radius:18px;

        padding:12px;
    }

    /* DROPDOWN ABERTO */

    .dropdown.active .submenu{
        display:block;
    }

    .dropdown.active .arrow{
        transform:rotate(180deg);
    }

    /* REMOVE HOVER DESKTOP */

    .dropdown:hover .submenu{
        transform:none;
    }

}

/* ------------------------------------------------@----------------------------------------------- */






/* =========================================================
   HERO DEPOIMENTOS
========================================================= */

.hero-depoimentos {
    position: relative;
    overflow: hidden;
    padding: 130px 20px 90px;

    /* Camadas: Gradientes com transparência no topo + Imagem no fundo */
    background:
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.25), transparent 35%), /* Brilho Roxo */
        radial-gradient(circle at bottom left, rgba(0, 102, 255, 0.18), transparent 40%), /* Brilho Azul */
        linear-gradient(135deg, rgba(8, 17, 31, 0.75), rgba(17, 24, 39, 0.30)), /* Filtro Escuro */
        url("../img/depoimentos/depoimentos03.jpg") center center / cover no-repeat; /* Sua Imagem */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1; /* Garante que fique acima da imagem, mas abaixo do conteúdo */

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.01)
        );

    backdrop-filter: blur(2px);
    pointer-events: none; /* Evita que o overlay bloqueie cliques em botões ou setas de slide */
}

.hero-depoimentos-container{
    position:relative;
    z-index:2;

    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

/* =========================================================
   TEXTO HERO
========================================================= */

.mini-tag{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;

    background:rgba(168,85,247,.12);
    border:1px solid rgba(168,85,247,.25);

    color:#c084fc;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:22px;
}

.hero-texto h1{
    font-size:3.4rem;
    line-height:1.15;
    font-weight:800;
    color:#fff;

    margin-bottom:24px;
}

.hero-texto p{
    font-size:1.08rem;
    line-height:1.9;
    color:#cbd5e1;

    max-width:700px;
}

/* =========================================================
   CARD FRASE
========================================================= */

.hero-card-frase{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    padding:45px;
    box-shadow:
     0 20px 45px rgba(0,0,0,.25);
    position:relative;
}

.quote-icon{
    font-size:4rem;
    color:#a855f7;
    line-height:1;
    margin-bottom:18px;
}

.hero-card-frase p{
    font-size:1.4rem;
    line-height:1.7;
    color:#fff;
    font-weight:600;
}

/* =========================================================
   SOBRE
========================================================= */

.sobre-depoimentos{
    padding:90px 20px;
    background:#f8fafc;
}

.sobre-container{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:flex-start;
}

.section-tag{
    display:inline-flex;
    padding:9px 16px;
    border-radius:999px;

    background:rgba(0,102,255,.08);
    color:#2563eb;

    font-size:.78rem;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:20px;
}

.section-tag.purple{
    background:rgba(168,85,247,.10);
    color:#9333ea;
}

.sobre-left h2{
    font-size:2.5rem;
    line-height:1.3;
    color:#0f172a;
    font-weight:800;
}

.sobre-right p{
    font-size:1.05rem;
    line-height:2;
    color:#475569;
    margin-bottom:20px;
}





/* =========================================================
   HERO DEPOIMENTOS
========================================================= */

.hero-depoimentos {
    position: relative;
    overflow: hidden;
    padding: 130px 20px 90px;

    /* Camadas: Gradientes com transparência no topo + Imagem no fundo */
    background:
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.25), transparent 35%), /* Brilho Roxo */
        radial-gradient(circle at bottom left, rgba(0, 102, 255, 0.18), transparent 40%), /* Brilho Azul */
        linear-gradient(135deg, rgba(8, 17, 31, 0.75), rgba(17, 24, 39, 0.30)), /* Filtro Escuro */
        url("../img/depoimentos/depoimentos03.jpg") center center / cover no-repeat; /* Sua Imagem */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1; /* Garante que fique acima da imagem, mas abaixo do conteúdo */

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.01)
        );

    backdrop-filter: blur(2px);
    pointer-events: none; /* Evita que o overlay bloqueie cliques em botões ou setas de slide */
}

.hero-depoimentos-container{
    position:relative;
    z-index:2;

    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

/* =========================================================
   TEXTO HERO
========================================================= */

.mini-tag{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;

    background:rgba(168,85,247,.12);
    border:1px solid rgba(168,85,247,.25);

    color:#c084fc;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:22px;
}

.hero-texto h1{
    font-size:3.4rem;
    line-height:1.15;
    font-weight:800;
    color:#fff;

    margin-bottom:24px;
}

.hero-texto p{
    font-size:1.08rem;
    line-height:1.9;
    color:#cbd5e1;

    max-width:700px;
}

/* =========================================================
   CARD FRASE
========================================================= */

.hero-card-frase{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    border-radius:30px;
    padding:45px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);

    position:relative;
}

.quote-icon{
    font-size:4rem;
    color:#a855f7;
    line-height:1;
    margin-bottom:18px;
}

.hero-card-frase p{
    font-size:1.4rem;
    line-height:1.7;
    color:#fff;
    font-weight:600;
}

/* =========================================================
   SOBRE
========================================================= */

.sobre-depoimentos{
    padding:90px 20px;
    background:#f8fafc;
}

.sobre-container{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:flex-start;
}

.section-tag{
    display:inline-flex;
    padding:9px 16px;
    border-radius:999px;

    background:rgba(0,102,255,.08);
    color:#2563eb;

    font-size:.78rem;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:20px;
}

.section-tag.purple{
    background:rgba(168,85,247,.10);
    color:#9333ea;
}

.sobre-left h2{
    font-size:2.5rem;
    line-height:1.3;
    color:#0f172a;
    font-weight:800;
}

.sobre-right p{
    font-size:1.05rem;
    line-height:2;
    color:#475569;
    margin-bottom:20px;
}

/* =========================================================
   VIDEOS SECTION — CINEMATIC PREMIUM
========================================================= */

.videos-section{
    position: relative;
    padding: 140px 20px;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(124,58,237,.16),
            transparent 28%),

        radial-gradient(circle at bottom right,
            rgba(37,99,235,.14),
            transparent 30%),

        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 45%,
            #f2f7ff 100%
        );
}

/* =========================================================
   GRID
========================================================= */

.videos-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(340px,1fr));

    gap:40px;
}

/* =========================================================
   CARD
========================================================= */

.video-card{
    position:relative;

    border-radius:34px;

    overflow:hidden;

    background:
        rgba(255,255,255,.70);

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(255,255,255,.8);

    box-shadow:
        0 20px 60px rgba(15,23,42,.08);

    transition:
        transform .5s ease,
        box-shadow .5s ease,
        border .5s ease;
}

/* GLOW */

.video-card::before{
    content:"";

    position:absolute;
    inset:-2px;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.1),
            rgba(37, 100, 235, 0.1),
            rgba(169, 85, 247, 0.1)
        );

    opacity:0;
    transition:.5s ease;

    z-index:0;
    filter:blur(18px);
}

.video-card:hover::before{
    opacity:.9;
}

.video-card:hover{
    transform:
        translateY(-14px)
        scale(1.015);

    box-shadow:
        0 35px 80px rgba(15,23,42,.18);

    border:
        1px solid rgba(124,58,237,.25);
}

/* =========================================================
   VIDEO FRAME (CORRIGIDO)
========================================================= */

.video-frame {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* LINHA PREMIUM */
.video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 45%
    );
    z-index: 2;
    pointer-events: none;
}

/* PLAY BUTTON (PADRÃO INITIAL) */
.video-frame::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    z-index: 3;
    
    /* SEGREDOS DO FUNCIONAMENTO: */
    pointer-events: none; /* O clique passa direto por ele e ativa o vídeo */
    opacity: 1; 
    transition: transform .45s ease, box-shadow .45s ease, opacity .35s ease, background .45s ease;
}

/* EFEITO HOVER - SÓ FUNCIONA SE O VÍDEO NÃO ESTIVER TOCANDO */
.video-card:hover .video-frame:not(.playing)::after {
    transform: translate(-50%, -50%) scale(1.12);
    background: linear-gradient(
        135deg,
        rgba(51, 78, 231, 0.25),
        rgba(37, 99, 235, .85)
    );
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.45);
}

/* QUANDO O VÍDEO ESTIVER TOCANDO - APAGA TUDO DEFINITIVAMENTE */
.video-frame.playing::after {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.7) !important;
    box-shadow: none !important;
}

/* =========================================================
   VIDEO
========================================================= */

.video-frame video{
    width:100%;
    display:block;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:
        transform .7s ease,
        filter .6s ease;
}

.video-card:hover video{
    transform:scale(1.06);
    filter:
        saturate(1.15)
        contrast(1.05);
}

/* =========================================================
   BADGE FLOAT
========================================================= */

.video-badge{
    position:absolute;
    top:18px;
    left:18px;

    z-index:5;

    padding:10px 16px;
    border-radius:999px;

    background:
        rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:
        1px solid rgba(255,255,255,.18);

    color:#fff;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:1px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);
}

/* =========================================================
   INFO
========================================================= */

.video-info{
    position:relative;
    z-index:2;

    padding:34px 32px 30px;
}

/* LINHA COLORIDA */

.video-info::before{
    content:"";

    width:70px;
    height:5px;

    border-radius:999px;

    display:block;

    margin-bottom:22px;

    background:
        linear-gradient(
            90deg,
            #3a4fed69,
            #2563eb
        );
}

/* TITULO */

.video-info h3{
    font-size:1.45rem;
    font-weight:900;

    color:#0f172a;

    margin-bottom:14px;
}

/* TEXTO */

.video-info p{
    color:#64748b;
    line-height:1.95;
    font-size:.98rem;
}

/* =========================================================
   HOVER DETAILS
========================================================= */

.video-card:hover .video-info h3{
    background:
        linear-gradient(
            135deg,
            #402ee89b,
            #25c0ebb2
        );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================================================
   TITLE AREA
========================================================= */

.video-title-area{
    text-align:center;
    margin-bottom:85px;
}

.video-title-area h2{
    font-size:clamp(2.4rem,5vw,4.2rem);
    line-height:1.05;
    font-weight:900;

    margin-bottom:24px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #334155
        );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.video-title-area p{
    max-width:780px;
    margin:auto;

    font-size:1.08rem;
    line-height:1.9;
    color:#64748b;
}

/* =========================================================
   TAG
========================================================= */

.section-tag.purple{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:11px 24px;
    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.12),
            rgba(168,85,247,.16)
        );

    border:
        1px solid rgba(124,58,237,.15);

    color:#7c3aed;

    font-size:.78rem;
    font-weight:800;
    letter-spacing:1px;

    margin-bottom:24px;

    backdrop-filter:blur(12px);
}

/* =========================================================
   SHAPES
========================================================= */

.videos-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.18;
}

.shape-1{
    width:420px;
    height:420px;

    background:#7c3aed;

    top:-150px;
    right:-120px;
}

.shape-2{
    width:360px;
    height:360px;

    background:#2563eb;

    bottom:-120px;
    left:-100px;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:900px){

    .videos-section{
        padding:100px 18px;
    }

    .videos-grid{
        gap:30px;
    }

    .video-title-area{
        margin-bottom:60px;
    }

}

@media(max-width:600px){

    .videos-section{
        padding:80px 15px;
    }

    .video-card{
        border-radius:26px;
    }

    .video-frame::after{
        width:72px;
        height:72px;
        font-size:1.6rem;
    }

    .video-info{
        padding:26px;
    }

    .video-title-area h2{
        font-size:2.2rem;
    }

}





/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:900px){

    .hero-depoimentos-container,
    .sobre-container{
        grid-template-columns:1fr;
    }

    .hero-texto h1{
        font-size:2.5rem;
    }

    .sobre-left h2{
        font-size:2rem;
    }

   
}

@media(max-width:600px){

    .hero-depoimentos{
        padding:100px 15px 70px;
    }

    .sobre-depoimentos,
    

    .hero-card-frase{
        padding:30px;
    }

    .hero-card-frase p{
        font-size:1.1rem;
    }

    .hero-texto h1{
        font-size:2rem;
    }

}










/* ------------------------------------------------@------------------------------------------------------- */



/* ================= FOOTER ================= */

.main-footer{

background:
linear-gradient(
180deg,
#05245f 0%,
#001b4d 100%
);

color:#fff;

margin-top:80px;

overflow:hidden;

}

/* TOPO */

.footer-top{

padding:70px 0 50px;

border-bottom:
1px solid rgba(255,255,255,.08);

}

.footer-top-grid{

display:grid;

grid-template-columns:
1.4fr
1fr
1fr
1.1fr;

gap:50px;

}

/* BRAND */

.footer-brand img{

height:95px;
margin-bottom:20px;

}

.footer-brand p{

color:
rgba(255,255,255,.75);

line-height:1.8;

font-size:15px;

max-width:420px;

}

.footer-social{

display:flex;
gap:12px;

margin-top:25px;

}

.footer-social a{

width:45px;
height:45px;

border-radius:14px;

background:
rgba(255,255,255,.08);

display:flex;
align-items:center;
justify-content:center;

text-decoration:none;

color:#fff;

font-size:18px;

transition:.3s;

}

.footer-social a:hover{

background:#146ff8;

transform:
translateY(-4px);

}

/* LINKS */

.footer-links h3,
.footer-contact h3{

font-size:20px;
margin-bottom:22px;

position:relative;

}

.footer-links h3::after,
.footer-contact h3::after{

content:'';

position:absolute;

left:0;
bottom:-10px;

width:45px;
height:3px;

border-radius:10px;

background:#146ff8;

}

.footer-links{

display:flex;
flex-direction:column;
gap:14px;

}

.footer-links a{

text-decoration:none;

color:
rgba(255,255,255,.75);

font-size:15px;

transition:.3s;

}

.footer-links a:hover{

color:#4ac0fd;

padding-left:6px;

}

/* CONTATO */

.footer-contact{

display:flex;
flex-direction:column;
gap:16px;

}

.contact-item{

display:flex;
align-items:flex-start;
gap:14px;

color:
rgba(255,255,255,.78);

font-size:15px;
line-height:1.6;

}

.contact-item i{

min-width:42px;
height:42px;

border-radius:12px;

background:
rgba(255,255,255,.08);

display:flex;
align-items:center;
justify-content:center;

color:#4ac0fd;

}

/* BOTÃO */

.footer-btn{

margin-top:10px;

display:inline-flex;
align-items:center;
justify-content:center;

width:max-content;

padding:14px 24px;

background:#146ff8;

color:#fff;

text-decoration:none;
font-weight:700;

border-radius:14px;

transition:.3s;

}

.footer-btn:hover{

transform:
translateY(-4px);

background:#2b82ff;

}

/* ESTATÍSTICAS */

.footer-stats{

padding:30px 0;

background:
rgba(255,255,255,.03);

border-top:
1px solid rgba(255,255,255,.05);

border-bottom:
1px solid rgba(255,255,255,.05);

}

.footer-stats-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

}

.footer-stat{

display:flex;
align-items:center;
gap:18px;

padding:15px;

border-radius:18px;

background:
rgba(255,255,255,.04);

backdrop-filter:
blur(10px);

transition:.3s;

}

.footer-stat:hover{

transform:
translateY(-5px);

background:
rgba(255,255,255,.08);

}

.footer-stat i{

font-size:32px;

color:#4ac0fd;

min-width:50px;

}

.footer-stat h2{

font-size:24px;
margin-bottom:4px;

}

.footer-stat p{

font-size:14px;

color:
rgba(255,255,255,.72);

}

/* BOTTOM */

.footer-bottom{

padding:25px 0;

}

.footer-bottom-content{

display:flex;
align-items:center;
justify-content:space-between;
gap:20px;

}

.footer-bottom p{

font-size:14px;

color:
rgba(255,255,255,.65);

}

.footer-bottom-links{

display:flex;
gap:20px;

}

.footer-bottom-links a{

text-decoration:none;

font-size:14px;

color:
rgba(255,255,255,.65);

transition:.3s;

}

.footer-bottom-links a:hover{

color:#4ac0fd;

}

/* RESPONSIVO */

@media(max-width:1100px){

.footer-top-grid{

grid-template-columns:
1fr 1fr;

}

.footer-stats-grid{

grid-template-columns:
1fr 1fr;

}

}

@media(max-width:768px){

.footer-top{

padding:50px 0 40px;

}

.footer-top-grid{

grid-template-columns:
1fr;

gap:40px;

}

.footer-stats-grid{

grid-template-columns:
1fr;

}

.footer-bottom-content{

flex-direction:column;
text-align:center;

}

.footer-bottom-links{

flex-wrap:wrap;
justify-content:center;

}

.footer-brand img{

height:80px;

}

.footer-stat{

padding:18px;

}

}




/*----- */

/* =====================================================
   TREINI GLOBAL MOTION SYSTEM
   CSS GLOBAL PARA TODAS AS PÁGINAS
===================================================== */

/* ---------- BASE ---------- */

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;

    animation:
    bodyFade 1s ease;
}

/* ---------- BODY FADE ---------- */

@keyframes bodyFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* =====================================================
   NAVBAR
===================================================== */

header,
.navbar,
nav{

    animation:
    navbarDown .9s ease;
}

@keyframes navbarDown{

    from{
        opacity:0;

        transform:
        translateY(-30px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   SECTIONS
===================================================== */

section{

    position:relative;

    animation:
    sectionFade 1s ease;
}

@keyframes sectionFade{

    from{
        opacity:0;

        transform:
        translateY(35px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   TITULOS
===================================================== */

h1,
h2,
h3{

    animation:
    titleFade 1s ease;
}

@keyframes titleFade{

    from{
        opacity:0;

        transform:
        translateY(20px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   TEXTOS
===================================================== */

p,
span,
li{

    animation:
    textFade 1.2s ease;
}

@keyframes textFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* =====================================================
   IMAGENS
===================================================== */

img{

    transition:
    transform .7s ease,
    filter .7s ease,
    box-shadow .7s ease;

    animation:
    imageFade 1.1s ease;
}

@keyframes imageFade{

    from{
        opacity:0;

        transform:
        scale(.97);
    }

    to{
        opacity:1;

        transform:
        scale(1);
    }

}

img:hover{

    transform:
    scale(1.02);

    filter:
    saturate(1.02);

}

/* =====================================================
   CARDS GERAIS
===================================================== */

div[class*="card"],
div[class*="box"],
div[class*="item"]{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

div[class*="card"]:hover,
div[class*="box"]:hover,
div[class*="item"]:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 18px 35px rgba(0,0,0,.06);

}

/* =====================================================
   BOTÕES
===================================================== */

button,
.btn,
a{

    transition:
    transform .3s ease,
    opacity .3s ease,
    background .3s ease;
}

button:hover,
.btn:hover,
a:hover{

    transform:
    translateY(-2px);

}

/* =====================================================
   BACKGROUNDS
===================================================== */

.hero,
[class*="hero"],
[class*="banner"]{

    animation:
    heroZoom 1.4s ease;
}

@keyframes heroZoom{

    from{
        opacity:0;

        transform:
        scale(1.03);
    }

    to{
        opacity:1;

        transform:
        scale(1);
    }

}

/* =====================================================
   OVERLAY SUAVE
===================================================== */

[class*="overlay"]{

    animation:
    overlayFade 1.5s ease;
}

@keyframes overlayFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* =====================================================
   GRID SUAVE
===================================================== */

[class*="grid"]{

    animation:
    gridFade 1.1s ease;
}

@keyframes gridFade{

    from{
        opacity:0;

        transform:
        translateY(25px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   FLOATING SUAVE
===================================================== */

[class*="floating"]{

    animation:
    floatingSoft 5s ease-in-out infinite;
}

@keyframes floatingSoft{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:768px){

    section{
        animation-duration:.8s;
    }

    img:hover{
        transform:none;
    }

}