/* 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 PESQUISAS
===================================================== */

.hero-pesquisas {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #040f28;
    background-image: url("../img/pesquisa/equipe08.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* 3ª TRAVA: Reduzi um pouco a opacidade das pontas (.80) para garantir 
       que a imagem apareça no meio caso o gradiente estivesse escuro demais */
    background: linear-gradient(
        120deg,
        rgba(4, 15, 40, 0.80),
        rgba(4, 15, 40, 0.15),
        rgba(4, 15, 40, 0.70)
    );
    z-index: 1; 
    pointer-events: none; /* Garante que o overlay não bloqueie cliques */
}

.hero-pesquisas-content {
    position: relative; 
    z-index: 2; 
    
    width: 100%; /* Força o container a ocupar o espaço */
    max-width: 850px;
    color: #fff;
    
    margin-left: 15px;
    margin-right: auto; 
    
    /* 4ª TRAVA: Padding de segurança para mobile não sumir com o bloco */
    padding: 80px 0; 
}

.hero-pesquisas h1 {
    font-size: 4rem; /* Reduzido levemente de 5rem para evitar quebras gigantes */
    line-height: 1.1;
    margin: 28px 0;
}

.hero-pesquisas p {
    line-height: 1.8;
    font-size: 1.08rem;
    opacity: .92;
}


/* =====================================================
   INTRO
===================================================== */

.section-pesquisa-intro{
    padding:120px 0;

    background:#f6f9ff;
}

.pesquisa-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.pesquisa-texto h2{
    font-size:3.5rem;

    line-height:1.1;

    color:#08275c;

    margin:25px 0;
}

.pesquisa-texto p{
    line-height:2;

    color:#5f6980;

    margin-bottom:20px;
}

.pesquisa-image{
    position:relative;
}

.pesquisa-image img{
    width:100%;
    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}

.floating-paper{
    position:absolute;
    left:-20px;
    bottom:30px;
    background:#fff;
    width:260px;
    padding:24px;
    border-radius:0px 25px;
    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.floating-paper span{
    font-size:.78rem;

    letter-spacing:1px;

    color:#1d5cff;

    font-weight:700;
}

.floating-paper h4{
    margin-top:10px;

    line-height:1.6;

    color:#08275c;
}

/* =====================================================
   CONGRESSOS
===================================================== */

.section-congressos{
    padding:120px 0;

    background:#eef5ff;
}

.congressos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.congresso-card{
    background:#fff;

    border-radius:22px;

    padding:30px;

    border:1px solid #e7eef8;

    transition:.35s;
}

.congresso-card:hover{
    transform:translateY(-6px);

    border-color:#bfd6ff;
}

.congresso-card span{
    font-size:.75rem;

    color:#1d5cff;

    font-weight:700;

    letter-spacing:1px;
}

.congresso-card h3{
    font-size:1.3rem;

    line-height:1.5;

    color:#08275c;

    margin:18px 0;
}

.congresso-card p{
    color:#667085;

    line-height:1.8;

    margin-bottom:20px;
}

.congresso-card a{
    color:#1d5cff;

    text-decoration:none;

    font-weight:700;
}


/* =====================================================
   INTRO
===================================================== */

.section-pesquisa-intro{
    padding:120px 0;

    background:#f6f9ff;
}

.pesquisa-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.pesquisa-texto h2{
    font-size:3.5rem;

    line-height:1.1;

    color:#08275c;

    margin:25px 0;
}

.pesquisa-texto p{
    line-height:2;

    color:#5f6980;

    margin-bottom:20px;
}

.pesquisa-image{
    position:relative;
}

.pesquisa-image img{
    width:100%;

    border-radius:28px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}

.floating-paper{
    position:absolute;

    left:-20px;
    bottom:30px;

    background:#fff;

    width:260px;

    padding:24px;

    border-radius:22px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.floating-paper span{
    font-size:.78rem;

    letter-spacing:1px;

    color:#1d5cff;

    font-weight:700;
}

.floating-paper h4{
    margin-top:10px;

    line-height:1.6;

    color:#08275c;
}

/* =====================================================
   ARTIGOS
===================================================== */

.section-artigos{
    padding:120px 0;

    background:#fff;
}

.artigos-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.artigo-card{
    display:flex;
    gap:25px;

    background:#f8fbff;

    border:1px solid #edf2fb;

    padding:24px;

    border-radius:24px;

    transition:.35s;
}

.artigo-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.05);
}

.artigo-thumb{
    width:180px;
    min-width:180px;
}

.artigo-thumb img{
    width:100%;

    border-radius:14px;
}

.artigo-content h3{
    color:#08275c;

    line-height:1.4;

    margin-bottom:12px;
}

.artigo-content p{
    color:#667085;

    line-height:1.7;

    margin-bottom:18px;
}

.artigo-content a{
    color:#1d5cff;

    font-weight:700;

    text-decoration:none;
}

/* =====================================================
   CONGRESSOS
===================================================== */

.section-congressos{
    padding:120px 0;

    background:#eef5ff;
}

.congressos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.congresso-card{
    background:#fff;

    border-radius:22px;

    padding:30px;

    border:1px solid #e7eef8;

    transition:.35s;
}

.congresso-card:hover{
    transform:translateY(-6px);

    border-color:#bfd6ff;
}

.congresso-card span{
    font-size:.75rem;

    color:#1d5cff;

    font-weight:700;

    letter-spacing:1px;
}

.congresso-card h3{
    font-size:1.3rem;

    line-height:1.5;

    color:#08275c;

    margin:18px 0;
}

.congresso-card p{
    color:#667085;

    line-height:1.8;

    margin-bottom:20px;
}

.congresso-card a{
    color:#1d5cff;

    text-decoration:none;

    font-weight:700;
}





/* =====================================================
   CERTIFICADOS
===================================================== */

.section-certificados{
    padding:120px 0;

    background:#f6f9ff;
}

.certificados-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.certificados-card{
    background:#fff;

    border-radius:22px;

    padding:30px;

    border:1px solid #e7eef8;

    transition:.35s;
}

.certificados-card:hover{
    transform:translateY(-6px);

    border-color:#bfd6ff;
}

.certificados span{
    font-size:.75rem;

    color:#1d5cff;

    font-weight:700;

    letter-spacing:1px;
}

.certificados-card h3{
    font-size:1.3rem;

    line-height:1.5;

    color:#08275c;

    margin:18px 0;
}

.certificados-card p{
    color:#667085;

    line-height:1.8;

    margin-bottom:20px;
}

.certificados-card a{
    color:#1d5cff;

    text-decoration:none;

    font-weight:700;
}




/* =====================================================
   patentes
===================================================== */

.section-patentes{
    padding:120px 0;

    background:#ffffff;
}

.patentes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.patentes-card{
    background:#fff;

    border-radius:22px;

    padding:30px;

    border:1px solid #e7eef8;

    transition:.35s;
}

.patentes-card:hover{
    transform:translateY(-6px);

    border-color:#bfd6ff;
}

.patentes span{
    font-size:.75rem;

    color:#1d5cff;

    font-weight:700;

    letter-spacing:1px;
}

.patentes-card h3{
    font-size:1.3rem;

    line-height:1.5;

    color:#08275c;

    margin:18px 0;
}

.patentes-card p{
    color:#667085;

    line-height:1.8;

    margin-bottom:20px;
}

.patentes-card a{
    color:#1d5cff;

    text-decoration:none;

    font-weight:700;
}



/* =====================================================
   VIDEOS
===================================================== */

.section-videos{
    padding:120px 0;

    background:#fff;
}

.videos-top{
    display:flex;
    justify-content:space-between;
    align-items:end;

    margin-bottom:60px;
}

.videos-top h2{
    font-size:3rem;

    color:#08275c;

    margin-top:20px;
}

.youtube-btn{
    background:#ff3b30;

    color:#fff;

    padding:16px 26px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;
}

.videos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.video-card{
    position:relative;

    border-radius:0px 25px;

    overflow:hidden;

    cursor:pointer;
}

.video-card img{
    width:100%;

    display:block;
}

.play-button{
    position:absolute;

    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:3rem;

    color:#fff;

    background:rgba(0,0,0,.20);

    opacity:0;

    transition:.35s;
}

.video-card:hover .play-button{
    opacity:1;
}


.btn-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    margin: 15px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%); /* Vermelho YouTube com gradiente premium */
    color: #ffffff;
    
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    padding: 14px 30px;
    border-radius: 50px; /* Formato arredondado/pílula moderno */
    
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efeito ao passar o mouse (Hover) */
.btn-youtube:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-3px); /* Levanta levemente o botão */
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    color: #ffffff; /* Garante que o texto continue branco */
}

/* Efeito ao clicar (Active) */
.btn-youtube:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:992px){

    .pesquisa-grid,
    .certificados-grid,
    .patentes-grid,
    .congressos-grid{
        grid-template-columns:1fr;
    }

    .hero-pesquisas h1{
        font-size:3.8rem;
    }

    .pesquisa-texto h2,
    .videos-top h2{
        font-size:2.5rem;
    }

    .videos-top{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

}

@media(max-width:600px){

    .hero-pesquisas{
        padding:140px 0 110px;
    }

    .hero-pesquisas h1{
        font-size:2.8rem;
    }

    .pesquisa-texto h2,
    .videos-top h2{
        font-size:2rem;
    }


}


/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:992px){

    .pesquisa-grid,
    .certificados-grid,
    .patentes-grid,
    .congressos-grid{
        grid-template-columns:1fr;
    }

    .hero-pesquisas h1{
        font-size:3.8rem;
    }

    .pesquisa-texto h2,
    .videos-top h2{
        font-size:2.5rem;
    }

    .videos-top{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

}

@media(max-width:600px){



   .videos-grid{
        grid-template-columns:1fr;
    }



    .hero-pesquisas{
        padding:140px 0 110px;
    }

    .hero-pesquisas h1{
        font-size:2.8rem;
    }

    .pesquisa-texto h2,
    .videos-top h2{
        font-size:2rem;
    }


}



/* =====================================================
   RESPONSIVIDADE AUTOMÁTICA DOS GRIDS
===================================================== */

/* Grid de Pôsteres/Congressos */
.congressos-grid {
    display: grid;
    /* auto-fit: calcula quantas colunas cabem sozinho */
    /* minmax(280px, 1fr): cada card terá no MÍNIMO 280px e no máximo o espaço livre */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    width: 100%;
}

/* Grid de Certificados */
.certificados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

/* Grid de Certificados */
.patentes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}


/* Trava de segurança para os cards não quebrarem layout */
.congresso-card, .patentes-card
.certificados-card {
    width: 100%;
    box-sizing: border-box; /* Garante que padding não estoure o tamanho do card */
    word-wrap: break-word;  /* Força quebra de palavras caso o título em caixa alta seja muito grande */
}


/* ------------------------------------------------@------------------------------------------------------- */



/* ================= 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;
    }

}