/* =====================================
   CUSTOM CSS - ANDERSON CUNHA & BARROS
   ===================================== */

/* =========================
   NOTÍCIAS EM DESTAQUE
========================= */

/* Cards */
#sp-bottom1 .sp-module,
#sp-bottom2 .sp-module,
#sp-bottom3 .sp-module{
    display:flex;
    flex-direction:column;
    height:100%;
}

/* Imagens */
#sp-bottom1 img,
#sp-bottom2 img,
#sp-bottom3 img{
    width:100% !important;
    height:340px !important;
    object-fit:cover !important;
    object-position:center !important;
    display:block !important;
    border-radius:6px;
}

/* Títulos */
#sp-bottom1 strong,
#sp-bottom2 strong,
#sp-bottom3 strong{
    position:relative;
    display:block;
    min-height:55px;
    padding-bottom:10px;
    color:#1d2d5a;
    font-size:18px;
    line-height:1.4;
}

/* Linha amarela */
#sp-bottom1 strong:after,
#sp-bottom2 strong:after,
#sp-bottom3 strong:after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:#f5c400;
    margin-top:8px;
}

/* Texto */
#sp-bottom1 p,
#sp-bottom2 p,
#sp-bottom3 p{
    min-height:90px;
    color:#555;
    line-height:1.6;
}

/* Botão Leia Mais */
#sp-bottom1 a,
#sp-bottom2 a,
#sp-bottom3 a{
    display:inline-block;
    background:#0057ff;
    color:#fff !important;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none !important;
    font-weight:600;
    margin-top:15px;
    transition:0.3s;
}

/* Hover */
#sp-bottom1 a:hover,
#sp-bottom2 a:hover,
#sp-bottom3 a:hover{
    opacity:0.85;
}

/* Compactar espaço das notícias */

#sp-bottom1 .sp-module-content,
#sp-bottom2 .sp-module-content,
#sp-bottom3 .sp-module-content{
    padding-top:0 !important;
    margin-top:0 !important;
}

#sp-bottom1 strong,
#sp-bottom2 strong,
#sp-bottom3 strong{
    min-height:auto !important;
    margin-bottom:5px !important;
}

#sp-bottom1 p,
#sp-bottom2 p,
#sp-bottom3 p{
    min-height:auto !important;
    margin-bottom:12px !important;
}

#sp-bottom1 a,
#sp-bottom2 a,
#sp-bottom3 a{
    margin-top:0 !important;
}

#sp-bottom1,
#sp-bottom2,
#sp-bottom3{
    padding-bottom: 25px !important;
}


/* AJUSTES MINIPLATAFORMA */

.miniplataforma-row {
    padding-top: 55px !important;
    padding-bottom: 45px !important;
}

.miniplataforma-row h2 {
    font-size: 36px !important;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #0d1b52;
    margin-bottom: 15px;
}

.miniplataforma-row h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #d4a017;
    margin: 14px auto 0;
    border-radius: 3px;
}

/* TEXTO ESQUERDA */

.miniplataforma-texto-destaque {
    font-size: 17px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
    color: #0d1b52 !important;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    text-align: justify;
}


.miniplataforma-texto {
    width: 100%;
    max-width: 100%;
    text-align: justify;
}

.miniplataforma-texto p {
    font-size: 15px !important;
    line-height: 1.9 !important;
    color: #666 !important;
    margin-bottom: 18px;
}

/* BOTÃO */

.miniplataforma-botao a {
    background: #0057ff;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-block;
    transition: 0.3s;
}

.miniplataforma-botao a:hover {
    background: #003fc2;
}

/* IMAGEM DIREITA */

.miniplataforma-imagem img {
    width: 100%;
    max-width: 430px;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
}

/* ========================================
   ÁREAS DE ATUAÇÃO
======================================== */

.areas-atuacao{
    background:#f7f8fc;
    padding:70px 0;
    width:100%;
}

/* Subtítulo */

.areas-subtitulo{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:45px;
}

/* Grid */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
    max-width:950px;
    margin:0 auto;
}

/* Card */

.card-atuacao{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 6px 24px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card-atuacao:hover{
    transform:translateY(-4px);
}

/* Imagem */

.card-atuacao img{
    width:100%;
    height:300px;
    object-fit:cover;
    object-position:center 20%;
    display:block;
}

/* Conteúdo */

.card-conteudo{
    padding:18px;
}

/* Ícone */

.card-icone{
    width:78px;
    height:78px;
    background:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:-42px;
    margin-bottom:18px;
    position:relative;
    z-index:2;
    box-shadow:0 4px 12px rgba(0,0,0,0.10);
}

/* Título */

.card-conteudo h3{
    margin-bottom:14px;
    color:#0d1b52;
    font-size:18px;
    font-weight:800;
    line-height:1.3;
}

/* Texto */

.card-conteudo p{
    color:#666;
    line-height:1.6;
    margin-bottom:18px;
    font-size:15px;
}

/* Botão */

.card-botao{
    display:inline-block;
    background:#0057ff;
    color:#fff !important;
    padding:10px 20px;
    border-radius:10px;
    text-decoration:none !important;
    font-weight:700;
    transition:0.3s;
    border:none;
}

.card-botao:hover{
    background:#003fc2;
}

/* Mobile */

@media(max-width:991px){

    .cards-grid{
        grid-template-columns:1fr;
    }

}

/* Fundo da seção */

.areas-atuacao{
    background:#f7f8fc;
    padding:70px 0px;
    margin-top:40px;
    margin-bottom:60px;
}

.card-icone img{
    width:75px;
    height:75px;
    object-fit:contain;
    display:block;
}

.card-icone i{
    color:#d4a017;
    font-size:24px;
}


/* ========================================
   O QUE FAZ UM PLATAFORMISTA
======================================== */

.plataformista-section{
    background-image: url('/images/nicepage-images/plataformista-bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    padding:55px 20px;
    position:relative;
    min-height:450px;
}

.plataformista-overlay{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.plataformista-section h2{
    font-size:36px;
    font-weight:800;
    color:#0d1b52;
    margin-bottom:15px;
}

.linha-dourada{
    width:90px;
    height:4px;
    background:#d4a017;
    border-radius:999px;
    margin:0 auto 30px;
}

.plataformista-subtitulo{
    font-size:18px;
    line-height:1.7;
    color:#16325c;
    max-width:950px;
    margin:0 auto 45px;
}

.plataformista-section h3{
    font-size:24px;
    color:#0d1b52;
    margin-bottom:40px;
    font-weight:800;
}

.funcoes-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
    max-width:1100px;
    margin:0 auto 50px;
}

.funcao-item{
    background:rgba(255,255,255,0.72);
    border-radius:28px;
    padding:18px 22px;
    text-align:left;
    font-size:16px;
    line-height:1.6;
    color:#16325c;

    display:flex;
    align-items:center;
    gap:22px;

    backdrop-filter:blur(4px);
}

.funcao-item span{
    min-width:42px;
    height:42px;
    border-radius:50%;
    background:#d4a017;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;
}


/* RESPONSIVO */

@media(max-width:991px){

    .funcoes-grid{
        grid-template-columns:1fr;
    }

    .plataformista-section h2{
        font-size:38px;
    }

    .plataformista-section h3{
        font-size:28px;
    }

    .funcao-item{
        font-size:18px;
    }

}


/* =========================
   MENU SOBRE O BANNER
========================= */

#sp-menu{
    position:relative;
    z-index:99;

    background:rgba(255,255,255,0.72) !important;

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    padding:2px 0 !important;
}

/* REMOVE FUNDOS INTERNOS */

#sp-menu .container,
#sp-menu .container-fluid,
#sp-menu .container-inner,
#sp-menu .row{
    background:transparent !important;

    max-width:100% !important;
    width:100% !important;

    margin:0 !important;
}

/* LINKS */

#sp-menu .sp-megamenu-parent > li > a{
    color:#0d1b52 !important;
    font-weight:500;
}

/* HOVER */

#sp-menu .sp-megamenu-parent > li:hover > a,
#sp-menu .sp-megamenu-parent > li.active > a{
    color:#d4a017 !important;
}

/* PESQUISA */

#sp-menu input{
    background:rgba(255,255,255,0.14) !important;
    border:none !important;
    color:#fff !important;
}

#sp-menu{
    display:flex;
    justify-content:center;
}

.sp-megamenu-parent > li > a {
    padding-left: 10px !important;
    padding-right: 10px !important;
}


/* ========================================
   EMPRESA HOME
======================================== */

.empresa-home{
    padding:70px 20px;
    background:#f7f9fc;
}

/* TOPO */

.empresa-topo{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.empresa-tag{
    display:block;

    color:#d4a017;

    font-size:13px;
    font-weight:800;

    letter-spacing:2px;

    margin-bottom:12px;

    text-transform:uppercase;
}

.empresa-topo h2{
    font-size:36px;
    line-height:1.1;

    color:#0d1b52;

    font-weight:800;

    margin-bottom:18px;
}

.linha-dourada-centro{
    width:70px;
    height:4px;

    background:#d4a017;

    margin:0 auto 25px;

    border-radius:999px;
}

.empresa-topo p{
    font-size:16px;
    line-height:1.7;

    color:#44506b;
}

/* CONTAINER */

.empresa-container{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

/* FOTO */

.empresa-imagem{
    position:relative;
}

.empresa-imagem::before{
    content:"";

    position:absolute;

    width:260px;
    height:260px;

    background:#d4a017;

    left:-25px;
    bottom:-25px;

    border-radius:28px;

    z-index:1;
}

.empresa-imagem img{
    width:100%;
    height:520px;

    object-fit:cover;

    border-radius:28px;

    position:relative;
    z-index:2;
}

/* CARD */

.empresa-conteudo{
    background:rgba(255,255,255,0.88);

    padding:40px;

    border-radius:28px;

    backdrop-filter:blur(8px);

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.empresa-conteudo h3{
    font-size:22px;
    line-height:1.3;

    color:#0d1b52;

    margin-bottom:18px;

    font-weight:800;

    text-align:center;
}

.linha-dourada{
    width:60px;
    height:4px;

    background:#d4a017;

    border-radius:999px;

    margin:0 auto 24px;
}

.empresa-conteudo p{
    font-size:17px;
    line-height:1.6;

    color:#44506b;

    margin-bottom:20px;
}

/* LISTA */

.empresa-lista{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.empresa-lista li{
    position:relative;

    padding-left:18px;

    margin-bottom:16px;
}

.empresa-lista li::before{
    content:"✓";

    position:absolute;

    left:0;
    top:2px;

    color:#d4a017;

    font-weight:800;
}

.empresa-lista strong{
    display:block;

    color:#16325c;

    font-size:17px;

    margin-bottom:4px;
}

.empresa-lista span{
    color:#6b748a;

    font-size:15px;
}


/* BOTÃO */

.empresa-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#0057ff;

    color:#fff !important;

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
}

.empresa-btn:hover{
    background:#003fc2;

    color:#fff !important;

    transform:translateY(-3px);
}


/* RESPONSIVO */

@media(max-width:991px){

    .empresa-topo h2{
        font-size:38px;
    }

    .empresa-container{
        grid-template-columns:1fr;
    }

    .empresa-imagem img{
        height:420px;
    }

    .empresa-conteudo{
        padding:35px;
    }

    .empresa-conteudo h3{
        font-size:30px;
    }

}


/* ========================================
   CURSOS EAD
======================================== */

.ead-home{
    padding:70px 20px;
    background:#f7f9fc;
}

/* TOPO */

.ead-topo{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.ead-tag{
    display:block;
    color:#d4a017;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.ead-topo h2{
    font-size:28px;
    color:#0d1b52;
    font-weight:800;
    margin-bottom:18px;
}

.ead-linha{
    width:70px;
    height:4px;
    background:#d4a017;
    margin:0 auto 25px;
    border-radius:999px;
}

.ead-topo p{
    font-size:16px;
    line-height:1.7;
    color:#44506b;
}

/* CONTAINER */

.ead-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    max-width:1200px;
    margin:0 auto;
}

.ead-imagem{
    flex:1;
    position:relative;
}


.ead-imagem img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:0 auto;
}


.ead-card{
    flex:1;
    background:rgba(255,255,255,0.92);
    padding:40px;
    border-radius:28px;
    backdrop-filter:blur(8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
/* LISTA COM ÍCONES */

.ead-lista{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.ead-lista li{
    display:flex;

    gap:14px;

    align-items:flex-start;

    margin-bottom:24px;
}

.ead-lista li::before{
    display:none;
}

.ead-icon{
    width:32px;
    min-width:32px;
    height:32px;
    object-fit:contain;
}

.ead-lista strong{
    display:block;

    color:#16325c;

    font-size:16px;

    margin-bottom:4px;
}

.ead-lista span{
    color:#6b748a;

    font-size:14px;

    line-height:1.6;
}

/* BOTÃO */

.ead-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#0057ff;

    color:#fff !important;

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
}

.ead-btn:hover{
    background:#003fc2;
    color:#fff !important;

    transform:translateY(-3px);
}

.ead-aviso{
    margin-top:15px;

    font-size:14px;

    color:#6b748a;
}

/* RESPONSIVO */

@media(max-width:991px){

    .ead-container{
        grid-template-columns:1fr;
    }

    .ead-imagem img{
        height:420px;
    }

    .ead-card{
        padding:35px;
    }

}

.ead-lista li{
    display:flex;
    align-items:flex-start;
    gap:14px;

    padding-left:0;
    margin-bottom:24px;
}

.ead-lista li::before{
    display:none;
}

.ead-icone{
    width:56px;
    height:56px;
    flex-shrink:0;
    margin-top:2px;
}

.ead-lista li{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:24px;
    padding-left:0;
}

.ead-lista li::before{
    display:none;
}

.ead-icon{
    width:56px;
    min-width:56px;
    height:56px;
    object-fit:contain;
    margin-top:2px;
}



/* ==========================================
RODAPÉ
========================================== */

.acb-footer{
background:#184059;
color:#fff;
margin-top:0;
}

.footer-grid{
max-width:1200px;
margin:auto;
padding:70px 50px 50px;

display:grid;
grid-template-columns:
1fr
1fr
1fr
1.6fr
1fr;

gap:40px;
}

.footer-grid h4{
color:#d4a017;
font-size:18px;
font-weight:700;
margin-bottom:25px;
}

.footer-grid a{
display:block;
color:#ffffff;
text-decoration:none;
margin-bottom:14px;
font-size:15px;
transition:.3s;
}

.footer-grid a:hover{
color:#d4a017;
padding-left:5px;
}

.footer-grid p{
    font-size:15px;
    font-weight:400;
    line-height:1.8;
    color:#c7d2df;
}

.footer-destaque{
max-width:1200px;
margin:auto;

background:#184059;

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

padding:30px 20px;

display:flex;
justify-content:center;
align-items:center;
gap:25px;
}

.footer-logo img{
max-width:260px;
width:100%;
height:auto;
display:block;
}

.footer-texto{
max-width:550px;
font-size:16px;
line-height:1.6;
color:#e5eaf3;
}

.footer-copy{
text-align:center;
padding:25px;
font-size:14px;
background:#102c3f;
color:#d7d7d7;
}

@media(max-width:991px){

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

.footer-destaque{
flex-direction:column;
text-align:center;
}

}


/* ========================================
   QUEM SOMOS - PÁGINA EMPRESA
======================================== */

.empresa-quem-somos{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* FOTO */

.empresa-quem-foto{
    position:relative;
}

.empresa-quem-foto::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;
    
    left:-20px;
    bottom:-20px;

    border-radius:28px;

    z-index:1;
}

.empresa-quem-foto img{
    width:100%;
    border-radius:28px;

    position:relative;
    z-index:2;

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

/* CARD TEXTO */

.empresa-quem-texto{
    background:rgba(255,255,255,.92);

    padding:40px;

    border-radius:28px;

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

.empresa-quem-texto h2{
    color:#184059;
    font-size:42px;
    font-weight:800;

    margin-bottom:12px;
}

.empresa-quem-texto h2:after{
    content:"";

    display:block;

    width:70px;
    height:4px;

    background:#d4a017;

    border-radius:999px;

    margin-top:14px;
}

.empresa-quem-texto p{
    color:#44506b;

    font-size:16px;
    line-height:1.9;

    margin-bottom:18px;

    text-align:justify;
}

/* RESPONSIVO */

@media(max-width:991px){

    .empresa-quem-somos{
        grid-template-columns:1fr;
    }

   .empresa-quem-foto::before{
    display:none;
}

}


/* CONTATO BARRA SUPERIOR */
#sp-header{
    position:relative;
}

#sp-header:after{
    content:"(22) 2762-3208   |   (22) 99824-5384 \A✉  contato@andersoncunha.com.br";

    white-space:pre;

    position:absolute;

    right:130px;
    top:50%;

    transform:translateY(-50%);

    color:#ffffff;

    font-size:12px;
    line-height:1.5;
    font-weight:500;

    text-align:right;
}

/* Esconde os contatos no celular */

@media (max-width: 991px){

    #sp-header:after{
        display:none !important;
        content:none !important;
    }

}


/* =========================
   NÚMEROS DA EMPRESA
========================= */

.empresa-numeros{
max-width:1200px;
margin:60px auto;
padding:0 20px;

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.numero-card{
background:#fff;
border-radius:15px;
padding:30px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.numero{
font-size:32px;
font-weight:700;
color:#184059;
}

.texto{
margin-top:10px;
color:#666;
font-size:15px;
}

@media(max-width:991px){

.empresa-numeros{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.empresa-numeros{
grid-template-columns:1fr;
}

}

/* =========================
   FIM NÚMEROS DA EMPRESA
========================= */

/* =====================================
   BANNER VÍDEO FULL WIDTH - A EMPRESA
   ===================================== */

.banner-empresa{

width:100vw;

margin-left:calc(50% - 50vw);

margin-right:calc(50% - 50vw);

margin-top:70px;

position:relative;

height:600px;

overflow:hidden;

margin-bottom:80px;

}

.banner-empresa video{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

width:100%;

height:100%;

object-fit:cover;

}

.banner-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(15,40,60,.55);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:30px;

z-index:2;

}

.banner-overlay h1{

color:#fff;

font-size:56px;

font-weight:700;

margin-bottom:15px;

}

.banner-overlay h2{

color:#d4a017;

font-size:28px;

font-weight:600;

margin-bottom:25px;

}

.banner-overlay p{

color:#fff;

font-size:20px;

line-height:1.8;

max-width:800px;

margin:auto;

}

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

@media(max-width:991px){

.banner-empresa{

height:400px;

}

.banner-overlay h1{

font-size:34px;

}

.banner-overlay h2{

font-size:20px;

}

.banner-overlay p{

font-size:16px;

}

}


/* =========================
   NOSSA HISTÓRIA
========================= */
.historia-section{

    max-width:1350px;

    margin:100px auto;

    padding:0 30px;

}

.historia-empresa{

display:flex;

align-items:flex-start;

gap:70px;

}

.historia-imagem{

    flex:1;

    display:flex;
    flex-direction:column;

    gap:40px;

    position:relative;

    margin-top:55px;
}

/* Fotos */

.historia-foto{

    width:100%;

    border-radius:20px;

    display:block;

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

/* detalhes */

.historia-imagem::before{

    content:"";

    position:absolute;

    top:-18px;
    left:-18px;

    width:120px;
    height:120px;

    border-top:2px solid #1f4b6d;
    border-left:2px solid #1f4b6d;

    opacity:.35;
}

.historia-imagem::after{

    content:"";

    position:absolute;

    right:-18px;
    bottom:-18px;

    width:120px;
    height:120px;

    border-right:2px solid #1f4b6d;
    border-bottom:2px solid #1f4b6d;

    opacity:.35;
}


.historia-conteudo{

flex:1;
}

.historia-conteudo h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#d4a017;
    margin-top:15px;
}

.historia-subtitulo{

display:inline-block;

font-size:14px;
font-weight:700;
letter-spacing:2px;

color:#d4a017;

margin-bottom:10px;
}

.historia-conteudo h2{
    font-size:48px;
    font-weight:700;
    color:#1f4b6d;
    margin-bottom:25px;
}

.historia-conteudo p{

font-size:18px;

line-height:1.9;

color:#555;

margin-bottom:22px;

text-align:justify;
}

/* RESPONSIVO */

@media(max-width:991px){

.historia-empresa{

flex-direction:column;
gap:40px;
}

.historia-conteudo h2{

font-size:36px;
}
}

/* =========================
   FIM NOSSA HISTÓRIA
========================= */

/* =========================
   TÍTULO NOSSA HISTÓRIA
========================= */

.historia-titulo{

    width:100%;

    text-align:center;

    margin-bottom:60px;

}

.historia-titulo h2{

    font-size:48px;

    font-weight:700;

    color:#1f4b6d;

    margin-top:10px;

}

.historia-titulo h2::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    background:#d4a017;

    margin:18px auto 0;

}


/* =========================
   FOTOS QUEM SOMOS
========================= */

.empresa-quem-foto{

    display:flex;
    flex-direction:column;
    gap:20px;
}

.empresa-quem-foto img{

    width:100%;
    border-radius:18px;

    display:block;

    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

/* =========================
   FIM FOTOS QUEM SOMOS
========================= */

/* =====================================
   SOBRE O ANDERSON CUNHA
===================================== */

.anderson{

    max-width:1350px;

    margin:120px auto;

    padding:0 30px;

}

.anderson-titulo{

    text-align:center;

    margin-bottom:70px;

}

.anderson-titulo span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.anderson-titulo h2{

    color:#184059;

    font-size:52px;

    font-weight:800;

    margin:10px 0 20px;

}

.anderson-titulo h2::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#d4a017;

    margin:20px auto 0;

}

.anderson-destaque{

    max-width:850px;

    margin:auto;

    font-size:24px;

    color:#555;

    line-height:1.8;

}

.anderson-banner{

    max-width:1200px;

    margin:50px auto 60px;

}

.anderson-banner img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.anderson-texto{

    max-width:1100px;

    margin:auto;

}

.anderson-texto p{

    font-size:18px;

    line-height:2;

    color:#555;

    text-align:justify;

    margin-bottom:28px;

}

@media(max-width:991px){

.anderson-conteudo{

grid-template-columns:1fr;

}

.anderson-titulo h2{

font-size:38px;

}

.anderson-destaque{

font-size:18px;

}

}

/* =========================
   TEXTO ANDERSON
========================= */

.anderson-texto{

    max-width:1050px;

    margin:60px auto 0;

}

.anderson-texto p{

    font-size:18px;

    line-height:2;

    color:#555;

    text-align:justify;

    margin-bottom:28px;

}

/* =========================
   FIM TEXTO ANDERSON
========================= */


/* =====================================
   GALERIA ANDERSON CUNHA
===================================== */

.galeria-anderson{

    max-width:1350px;

    margin:120px auto;

    padding:0 30px;

    text-align:center;

}

.galeria-anderson span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.galeria-anderson h2{

    color:#184059;

    font-size:48px;

    font-weight:800;

    margin:10px 0 18px;

}

.galeria-anderson h2::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    background:#d4a017;

    margin:18px auto 0;

}

.galeria-anderson p{

    max-width:820px;

    margin:0 auto 55px;

    color:#555;

    font-size:18px;

    line-height:1.9;

}

.galeria-grid{

    display:grid;

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

    gap:28px;

}

.galeria-grid img{

    width:100%;

    aspect-ratio:4/3;

    object-fit:cover;

    border-radius:22px;

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

    transition:.35s;
}

.galeria-grid img:hover{

    transform:scale(1.03);

}

@media(max-width:991px){

.galeria-grid{

grid-template-columns:1fr;

}

.galeria-anderson h2{

font-size:36px;

}

}

/* =========================
   RECONHECIMENTOS
========================= */

.reconhecimento{

    max-width:1300px;

    margin:120px auto;

    padding:0 30px;

}

.reconhecimento-titulo{

    text-align:center;

    margin-bottom:70px;

}

.reconhecimento-titulo span{

    display:inline-block;

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:12px;

}

.reconhecimento-titulo h2{

    font-size:48px;

    color:#1f4b6d;

    margin-bottom:18px;

}

.reconhecimento-titulo h2:after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    background:#d4a017;

    margin:18px auto 0;

}

.reconhecimento-titulo p{

    max-width:850px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#555;

}

.reconhecimento-cards{

    display:grid;

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

    gap:40px;

}

.reconhecimento-card{

    background:#fff;

    border-radius:22px;

    padding:30px;

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

    transition:.35s;

}

.reconhecimento-card:hover{

    transform:translateY(-8px);

}

.reconhecimento-card img{

    width:100%;

    border-radius:14px;

    margin-bottom:35px;

}

.reconhecimento-card h3{

    color:#1f4b6d;

    font-size:24px;

    font-weight:800;

    line-height:1.25;

    margin-bottom:18px;
}

.reconhecimento-card p{

    color:#666;

    line-height:1.8;

    text-align:justify;

}

@media(max-width:991px){

.reconhecimento-cards{

grid-template-columns:1fr;

}

.reconhecimento-titulo h2{

font-size:36px;

}

}

/* =========================
   FIM RECONHECIMENTOS
========================= */

/* Área clicável da imagem */
.reconhecimento-imagem{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
}

/* Zoom suave */
.reconhecimento-imagem img{
    display:block;
    width:100%;
    transition:.4s;
}

.reconhecimento-imagem:hover img{
    transform:scale(1.04);
}

/* Fundo escuro */
.reconhecimento-imagem::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
    opacity:0;
    transition:.3s;
}

.reconhecimento-imagem:hover::after{
    opacity:1;
}

/* Ícone */
.zoom-icon{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-size:34px;
    color:#fff;
    opacity:0;
    transition:.3s;
    z-index:2;
}

.reconhecimento-imagem:hover .zoom-icon{
    opacity:1;
}


/*==================================================
MINIPLATAFORMA
==================================================*/

.miniplataforma{

    max-width:1200px;
    margin:auto;
    padding:90px 20px;

}

.mini-banner{

    margin-bottom:70px;

}

.mini-banner img{

    width:100%;
    height:430px;
    object-fit:cover;

    border-radius:22px;

}

.mini-titulo{

    text-align:center;
    margin-bottom:70px;

}

.mini-titulo span{

    color:#c99700;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.mini-titulo h2{

    font-size:54px;
    font-weight:700;   /* ou bold */
    color:#234d73;
    margin:12px 0 20px;

}

.mini-titulo h2::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#c99700;

    margin:18px auto 0;

}

.mini-titulo p{

    max-width:900px;

    margin:auto;

    font-size:22px;

    line-height:1.8;

    color:#666;

}

.mini-conteudo{

    display:grid;

    grid-template-columns:1.1fr 0.9fr;

    gap:60px;

    align-items:center;

}

.mini-texto{

    font-size:19px;

    line-height:2;

    color:#555;

    text-align:justify;

}

.mini-texto p{

    margin-bottom:25px;

}

.mini-foto img{

    width:100%;

    border-radius:20px;

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

}

@media(max-width:900px){

.mini-conteudo{

grid-template-columns:1fr;

}

.mini-titulo h2{

font-size:40px;

}

.mini-banner img{

height:250px;

}

}



/*==================================================
MINIPLATAFORMA
==================================================*/

.miniplataforma{

    max-width:1200px;
    margin:auto;
    padding:90px 20px;

}

.mini-banner{

    margin-bottom:70px;

}

.mini-banner img{

    width:100%;
    height:430px;
    object-fit:cover;

    border-radius:22px;

}

.mini-titulo{

    text-align:center;
    margin-bottom:70px;

}

.mini-titulo span{

    color:#c99700;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.mini-titulo h2{

    font-size:54px;
    font-weight:700;   /* ou bold */
    color:#234d73;
    margin:12px 0 20px;

}

.mini-titulo h2::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#c99700;

    margin:18px auto 0;

}

.mini-titulo p{

    max-width:900px;

    margin:auto;

    font-size:22px;

    line-height:1.8;

    color:#666;

}

.mini-conteudo{

    display:grid;

    grid-template-columns:1.1fr 0.9fr;

    gap:60px;

    align-items:center;

}

.mini-texto{

    font-size:19px;

    line-height:2;

    color:#555;

    text-align:justify;

}

.mini-texto p{

    margin-bottom:25px;

}

.mini-foto img{

    width:100%;

    border-radius:20px;

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

}

@media(max-width:900px){

.mini-conteudo{

grid-template-columns:1fr;

}

.mini-titulo h2{

font-size:40px;

}

.mini-banner img{

height:250px;

}

}

/* =====================================
   EQUIPAMENTOS DA MINIPLATAFORMA
===================================== */

.equipamentos-mini{
    max-width:1300px;
    margin:120px auto;
    padding:0 30px;
}

.equipamentos-titulo{
    text-align:center;
    margin-bottom:60px;
}

.equipamentos-titulo span{
    color:#d4a017;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.equipamentos-titulo h2{
    color:#184059;
    font-size:48px;
    font-weight:800;
    margin:12px 0 18px;
}

.equipamentos-titulo h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#d4a017;
    margin:18px auto 0;
}

.equipamentos-titulo p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.equipamentos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.equipamento-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.equipamento-card:hover{
    transform:translateY(-8px);
}

.equipamento-card .icone{
    font-size:42px;
    margin-bottom:20px;
}

.equipamento-card h3{
    color:#184059;
    font-size:22px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:18px;
}

.equipamento-card ul{
    margin:0;
    padding-left:20px;
}

.equipamento-card li{
    color:#666;
    line-height:1.9;
    margin-bottom:6px;
}

@media(max-width:991px){

    .equipamentos-grid{
        grid-template-columns:1fr;
    }

    .equipamentos-titulo h2{
        font-size:36px;
    }

}


/*==================================================
PALESTRAS E MINICURSOS
==================================================*/

.mini-palestras{

    max-width:1280px;

    margin:120px auto;

    padding:0 30px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.mini-palestras-imagem img{

    width:100%;

    display:block;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.mini-palestras-texto span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.mini-palestras-texto h2{

    font-size:52px;

    font-weight:800;

    color:#184059;

    margin:15px 0 25px;

    line-height:1.15;

}

.mini-palestras-texto h2:after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#d4a017;

    margin-top:18px;

}

.mini-destaque{

    font-size:21px;

    color:#666;

    line-height:1.9;

    margin-bottom:45px;

}

.mini-beneficios{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.mini-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.mini-icone{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#184059;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.mini-item h3{

    margin:0 0 8px;

    color:#184059;

    font-size:24px;

}

.mini-item p{

    margin:0;

    color:#666;

    line-height:1.7;

}

@media(max-width:991px){

.mini-palestras{

grid-template-columns:1fr;

gap:45px;

}

.mini-palestras-texto{

order:2;

}

.mini-palestras-imagem{

order:1;

}

.mini-palestras-texto h2{

font-size:38px;

}

}



/*==================================================
CURSOS
==================================================*/

/* ---------- Banner ---------- */

.cursos-banner-full{

    width:100vw;

    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);

    margin-top:70px;   /* ajuste conforme necessário */

    height:620px;

    overflow:hidden;

    margin-bottom:90px;

}

.cursos-banner-full video{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* ---------- Título ---------- */

.cursos-topo{

    max-width:1200px;

    margin:0 auto 90px;

    padding:0 20px;

}

.cursos-titulo{

    text-align:center;

}

.cursos-titulo span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.cursos-titulo h2{

    color:#184059;

    font-size:56px;

    font-weight:900;

    line-height:1.2;

    margin:18px 0 22px;

}

.cursos-titulo h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#d4a017;

    margin:22px auto;

}

.cursos-titulo p{

    max-width:900px;

    margin:auto;

    font-size:22px;

    line-height:1.9;

    color:#666;

}

/* ---------- Cards ---------- */

.categorias-cursos{

    max-width:1300px;

    margin:100px auto;

    padding:0 30px;

    display:grid;

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

    gap:35px;

}

.curso-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

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

    transition:.35s;

}

.curso-card:hover{

    transform:translateY(-8px);

}

.curso-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.curso-card-conteudo{

    padding:30px;

}

.curso-card h3{

    color:#184059;

    font-size:30px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:18px;

}

.curso-card p{

    color:#666;

    line-height:1.8;

}

.curso-card a{

    display:inline-block;

    margin-top:25px;

    color:#184059;

    font-weight:700;

    text-decoration:none;

}

.curso-card a:hover{

    color:#d4a017;

}

.curso-breve{

    display:inline-block;

    margin-top:25px;

    color:#d4a017;

    font-weight:700;

}

/* ---------- Diferenciais ---------- */

.curso-diferenciais{

    max-width:1200px;

    margin:120px auto;

    padding:0 20px;

}

.curso-diferenciais-titulo{

    text-align:center;

    margin-bottom:60px;

}

.curso-diferenciais-titulo span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.curso-diferenciais-titulo h2{

    color:#184059;

    font-size:46px;

    font-weight:900;

    margin-top:15px;

}

.curso-grid{

    display:grid;

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

    gap:25px;

}

.curso-item{

    background:#f7f9fb;

    padding:25px;

    border-radius:18px;

    color:#555;

    line-height:1.8;

}

/* ---------- Final ---------- */

.curso-final{

    margin:120px auto;

    max-width:1000px;

    text-align:center;

}

.curso-final h2{

    color:#184059;

    font-size:42px;

    font-weight:900;

    line-height:1.4;

}

/* ---------- Responsivo ---------- */

@media(max-width:991px){

.cursos-banner-full{

    height:360px;

}

.cursos-titulo h2{

    font-size:38px;

}

.cursos-titulo p{

    font-size:18px;

}

.categorias-cursos{

    grid-template-columns:1fr;

}

.curso-grid{

    grid-template-columns:1fr;

}

.curso-final h2{

    font-size:30px;

}

}



/*==================================================
CAPACITAÇÃO PROFISSIONAL
==================================================*/

.cap-banner{

    position:relative;

    width:100vw;

    margin-left:calc(50% - 50vw);

    margin-right:calc(50% - 50vw);

    margin-top:70px;

    margin-bottom:90px;

    overflow:hidden;

}

.cap-banner video{

    width:100%;

    height:620px;

    display:block;

    object-fit:cover;

}

.cap-topo{

    max-width:1200px;

    margin:90px auto;

    padding:0 20px;

}

.cap-titulo{

    text-align:center;

}

.cap-titulo span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.cap-titulo h2{

    color:#184059;

    font-size:54px;

    font-weight:900;

    margin:18px 0;

}

.cap-titulo h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#d4a017;

    margin:22px auto;

}

.cap-titulo p{

    max-width:900px;

    margin:auto;

    font-size:22px;

    line-height:1.9;

    color:#666;

}

.cap-grid{

    max-width:1300px;

    margin:70px auto;

    padding:0 30px;

    display:grid;

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

    gap:35px;

}

.cap-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

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

    transition:.3s;

}

.cap-card:hover{

    transform:translateY(-8px);

}

.cap-icon{

    font-size:42px;

    margin-bottom:20px;

}

.cap-imagem{
    margin-bottom:20px;
}

.cap-imagem img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.cap-card h3{

    color:#184059;

    font-size:28px;

    font-weight:900;

    margin-bottom:6px;

}

.cap-card h4{

    color:#777;

    font-size:18px;

    margin-bottom:18px;

}

.cap-carga{

    display:inline-block;

    margin-bottom:18px;

    color:#d4a017;

    font-weight:700;

}

.cap-card p{

    color:#666;

    line-height:1.8;

}

.cap-botao{

    display:inline-block;

    margin-top:25px;

    padding:14px 28px;

    background:#184059;

    color:#fff;

    text-decoration:none;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.cap-botao:hover{

    background:#d4a017;

    color:#184059;

}

.cap-final{

    max-width:1000px;

    margin:120px auto;

    text-align:center;

}

.cap-final h2{

    color:#184059;

    font-size:42px;

    font-weight:900;

    line-height:1.4;

}

@media(max-width:991px){

.cap-banner img{

height:300px;

}

.cap-grid{

grid-template-columns:1fr;

}

.cap-titulo h2{

font-size:38px;

}

.cap-titulo p{

font-size:18px;

}

.cap-final h2{

font-size:30px;

}

}


/*==================================================
CURSOS ESPECIALIZADOS
==================================================*/

/* ---------- Banner ---------- */

.esp-banner{

    width:100vw;

    margin-left:calc(50% - 50vw);

    margin-right:calc(50% - 50vw);

    margin-top:70px;

    margin-bottom:90px;

    overflow:hidden;

}

.esp-banner video{

    width:100%;
    height:620px;
    object-fit:cover;
    object-position:center center;
    display:block;

}

/* ---------- Título ---------- */

.esp-topo{

    max-width:1200px;

    margin:0 auto 90px;

    padding:0 20px;

}

.esp-titulo{

    text-align:center;

}

.esp-titulo span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.esp-titulo h2{

    color:#184059;

    font-size:54px;

    font-weight:900;

    line-height:1.2;

    margin:18px 0 22px;

}

.esp-titulo h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#d4a017;

    margin:22px auto;

}

.esp-titulo p{

    max-width:900px;

    margin:auto;

    font-size:22px;

    line-height:1.9;

    color:#666;

}

/* ---------- Grid ---------- */

.esp-grid{

    max-width:1350px;

    margin:110px auto;

    padding:0 30px;

    display:grid;

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

    gap:35px;

}

/* ---------- Card ---------- */

.esp-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

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

    transition:.35s;

    position:relative;

}

.esp-card:hover{

    transform:translateY(-8px);

}

/* Barra dourada */

.esp-card::before{

    content:"";

    display:block;

    width:100%;

    height:7px;

    background:#d4a017;

}

.esp-card{

    padding:35px;

}

.esp-icon{

    font-size:42px;

    margin-bottom:18px;

}

.esp-card h3{

    color:#184059;

    font-size:30px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:10px;

}

.esp-card h4{

    color:#666;

    font-size:20px;

    font-weight:700;

    margin-bottom:15px;

}

.esp-carga{

    display:inline-block;

    background:#eef4f8;

    color:#184059;

    padding:8px 16px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:22px;

}

.esp-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:28px;

}

.esp-botao{

    display:inline-block;

    padding:14px 30px;

    border-radius:40px;

    background:#184059;

    color:#fff !important;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.esp-botao:hover{

    background:#d4a017;

    color:#184059 !important;

}

/* ---------- Palestras ---------- */

.esp-palestras{

    max-width:1200px;

    margin:130px auto;

    padding:0 20px;

}

.esp-palestras-titulo{

    text-align:center;

    margin-bottom:60px;

}

.esp-palestras-titulo span{

    color:#d4a017;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.esp-palestras-titulo h2{

    color:#184059;

    font-size:46px;

    font-weight:900;

    margin:15px 0;

}

.esp-palestras-titulo p{

    max-width:850px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:#666;

}

.esp-palestras-grid{

    display:grid;

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

    gap:22px;

    margin-top:55px;

}

.esp-palestras-grid div{

    background:#f7f9fb;

    padding:25px;

    border-radius:18px;

    text-align:center;

    color:#184059;

    font-weight:700;

    transition:.3s;

}

.esp-palestras-grid div:hover{

    background:#184059;

    color:#fff;

}

/* ---------- Final ---------- */

.esp-final{

    max-width:1000px;

    margin:120px auto;

    text-align:center;

}

.esp-final h2{

    color:#184059;

    font-size:42px;

    font-weight:900;

    line-height:1.4;

}

/* ---------- Responsivo ---------- */

@media(max-width:991px){

.esp-banner img{

height:320px;

}

.esp-grid{

grid-template-columns:1fr;

}

.esp-palestras-grid{

grid-template-columns:1fr;

}

.esp-titulo h2{

font-size:38px;

}

.esp-titulo p{

font-size:18px;

}

.esp-final h2{

font-size:30px;

}

}


/*==================================
EAD
==================================*/

.ead-banner{

width:100vw;

margin-left:calc(50% - 50vw);

margin-right:calc(50% - 50vw);

margin-top:70px;

margin-bottom:90px;

overflow:hidden;

background:#000;

}

.ead-banner video{

width:100%;

height:620px;

object-fit:cover;

display:block;

}

.ead-topo{

max-width:1200px;

margin:auto;

padding:0 20px;

margin-bottom:90px;

}

.ead-titulo{

text-align:center;

}

.ead-titulo span{

color:#d4a017;

font-weight:700;

letter-spacing:3px;

font-size:14px;

}

.ead-titulo h2{

font-size:54px;

color:#184059;

font-weight:900;

margin:20px 0;

}

.ead-titulo h2::after{

content:"";

display:block;

width:90px;

height:4px;

background:#d4a017;

margin:20px auto;

}

.ead-titulo p{

font-size:22px;

line-height:1.9;

color:#666;

max-width:900px;

margin:auto;

}

.ead-grid{

max-width:1300px;

margin:100px auto;

padding:0 20px;

display:grid;

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

gap:30px;

}

/*
.ead-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}
*/

.ead-card:hover{

transform:translateY(-8px);

}

.ead-card img{

width:100%;

height:230px;

object-fit:cover;

}

.ead-card h3{

padding:25px 25px 10px;

color:#184059;

font-size:28px;

font-weight:900;

}

.ead-card p{

padding:0 25px 30px;

line-height:1.9;

color:#666;

}

.ead-futuro{

max-width:1000px;

margin:120px auto;

text-align:center;

padding:0 20px;

}

.ead-futuro h2{

font-size:46px;

font-weight:900;

color:#184059;

margin-bottom:20px;

}

.ead-futuro p{

font-size:22px;

line-height:1.9;

color:#666;

margin-bottom:45px;

}

.ead-btn{

display:inline-block;

padding:16px 34px;

background:#184059;

color:#fff !important;

text-decoration:none;

border-radius:40px;

font-weight:700;

transition:.3s;

}

.ead-btn:hover{

background:#d4a017;

color:#184059 !important;

}

@media(max-width:991px){

.ead-banner video{

height:320px;

}

.ead-grid{

grid-template-columns:1fr;

}

.ead-titulo h2{

font-size:38px;

}

.ead-titulo p{

font-size:18px;

}

}



/*====================================
RECURSOS DIDÁTICOS
====================================*/

.rd-banner{

width:100vw;

margin-left:calc(50% - 50vw);

margin-right:calc(50% - 50vw);

margin-top:70px;

margin-bottom:90px;

overflow:hidden;

background:#000;

}

.rd-banner video{

width:100%;

height:620px;

object-fit:cover;

display:block;

}

.rd-topo{

max-width:1200px;

margin:auto;

padding:0 20px;

margin-bottom:90px;

}

.rd-titulo{

text-align:center;

}

.rd-titulo span{

color:#d4a017;

font-weight:700;

letter-spacing:3px;

font-size:14px;

}

.rd-titulo h2{

font-size:54px;

font-weight:900;

color:#184059;

margin:20px 0;

}

.rd-titulo h2::after{

content:"";

display:block;

width:90px;

height:4px;

background:#d4a017;

margin:20px auto;

}

.rd-titulo p{

font-size:22px;

line-height:1.9;

color:#666;

max-width:950px;

margin:auto;

}

/* CARDS */

.rd-grid{

max-width:1350px;

margin:100px auto;

padding:0 25px;

display:grid;

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

gap:35px;

}

.rd-card{

background:#fff;

border-radius:22px;

overflow:hidden;

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

transition:.3s;

}

.rd-card:hover{

transform:translateY(-8px);

}

.rd-card img{

width:100%;

height:300px;

object-fit:cover;

}

.rd-card h3{

padding:28px 28px 15px;

font-size:30px;

color:#184059;

font-weight:900;

}

.rd-card p{

padding:0 28px 35px;

line-height:1.9;

color:#666;

}

/* BLOCO FINAL */

.rd-aplicacoes{

max-width:1200px;

margin:130px auto;

padding:0 20px 80px;

}

.rd-box{

background:#184059;

padding:60px;

border-radius:28px;

color:#fff;

}

.rd-box h2{

font-size:42px;

margin-bottom:20px;

}

.rd-box p{

font-size:21px;

line-height:1.9;

margin-bottom:40px;

}

.rd-lista{

display:grid;

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

gap:18px;

font-size:20px;

font-weight:700;

}

@media(max-width:991px){

.rd-banner video{

height:320px;

}

.rd-grid{

grid-template-columns:1fr;

}

.rd-lista{

grid-template-columns:1fr;

}

.rd-titulo h2{

font-size:38px;

}

.rd-titulo p{

font-size:18px;

}

.rd-box{

padding:35px;

}

.rd-box h2{

font-size:32px;

}

}


/* ==========================================
HOME EAD NOVO
==========================================*/

.home-ead{
    padding:70px 20px;
    background:#f7f9fc;
}

.home-ead-topo{
    text-align:center;
    max-width:900px;
    margin:0 auto 55px;
}

.home-ead-tag{
    display:block;
    color:#d4a017;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.home-ead-topo h2{
    color:#184059;
    font-size:36px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.home-ead-linha{
    width:70px;
    height:4px;
    background:#d4a017;
    border-radius:20px;
    margin:0 auto 22px;
}

.home-ead-topo p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.home-ead-conteudo{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:stretch;   /* mudou */
}

.home-ead-foto{
    display:flex;
}

.home-ead-foto img{
    width:100%;
    height:100%;           /* ocupa toda a altura disponível */
    object-fit:cover;
    object-position:53% center;
    border-radius:18px;
    display:block;
}

.home-ead-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

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

}

.home-ead-card h3{
    color:#184059;
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:30px;
}

.home-ead-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.home-ead-card li{

    display:flex;

    gap:18px;

    margin-bottom:24px;

    align-items:flex-start;

}

.home-ead-card li img{

    width:58px;

    height:58px;

    object-fit:contain;

    flex-shrink:0;

}

.home-ead-card strong{
    display:block;
    color:#184059;
    font-size:16px;
    font-weight:800;
    margin-bottom:4px;
}

.home-ead-card span{
    color:#6b748a;
    font-size:15px;
    line-height:1.6;
}

.home-ead-btn{

    display:inline-block;

    margin-top:15px;

    padding:16px 32px;

    background:#0057ff;

    color:#fff !important;

    text-decoration:none;

    border-radius:10px;

    font-weight:700;

}

.home-ead-btn:hover{

    background:#003fc2;

}

.home-ead-aviso{

    margin-top:15px;

    color:#777;

    font-size:14px;

}

@media(max-width:991px){

.home-ead-conteudo{

grid-template-columns:1fr;

}

.home-ead-card{

padding:30px;
max-width:520px;

}

}