/* =========================
   RESET GERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #06152d;
    background: #ffffff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================
   CABEÇALHO TRANSPARENTE
========================= */

.header {
    width: 100%;
    height: 100px;
    padding: 0 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.logo img {
    height: 70px;
    width: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.menu a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
}

.menu a:hover {
    color: #1358EA;
}

.btn-header {
    background: #005bff;
    color: #ffffff;

    padding: 18px 34px;
    border-radius: 5px;

    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left:40px;
    transition: 0.3s;
}

.btn-header::after {
    content: " →";
}

.btn-header:hover {
    background: #0047c9;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 760px;

    padding: 95px 70px 0 70px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 10, 30, 0.96) 0%,
            rgba(0, 10, 30, 0.88) 32%,
            rgba(0, 10, 30, 0.40) 63%,
            rgba(0, 10, 30, 0.05) 100%
        ),
        url("../imagens/hero/hero-tipoarte.jpg");

    background-size: cover;
    background-position: center right;

    display: flex;
    align-items: center;

    padding: 0 70px;
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: block;

    color: #1358EA;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 35px; 
    margin-bottom: 28px;
}

.hero h1 {
    color: #ffffff;

    font-size: 88px;
    line-height: 0.95;

    margin-bottom: 28px;
}

.hero h2 {
    color: #1358EA;

    font-size: 28px;
    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 25px;
}

.hero-descricao{
    color:rgba(255,255,255,0.82);
    font-size:20px;
    line-height:1.65;
    max-width:720px;
    margin-bottom:45px;
}

.hero-buttons {
    display: flex;
    gap: 22px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;

    padding: 18px 32px;
    border-radius: 5px;

    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;

    transition: 0.3s;
}

.btn-primary {
    background: #005bff;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0047c9;
}

.btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.75);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}


/* =========================
   DIFERENCIAIS
========================= */

#diferenciais{
    padding:70px 70px 60px 70px;
    background:#ffffff;
    text-align:center;
}

#diferenciais h3{
    color:#1358EA;

    font-size:16px;
    font-weight:800;

    letter-spacing:1px;
    text-transform:uppercase;

    text-align:center;

    margin-bottom:55px;
}

.cards-diferenciais {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;

    max-width: 1280px;
    margin: 0 auto;
}

.cards-diferenciais > div{
    padding:15px 45px 10px 45px;
    text-align:center;
    border-right:1px solid #e8ebf1;
}

.cards-diferenciais > div:last-child {
    border-right: none;
}

.cards-diferenciais img{
    width:58px;
    height:58px;
    margin:0 auto 28px auto;
}

.cards-diferenciais h4{
    color:#06152d;
    font-size:28px;
    font-weight:800;
    margin-bottom:18px;
}

.cards-diferenciais p{
    color:#4d5563;
    font-size:16px;
    line-height:1.8;
    max-width:260px;
    margin:0 auto;
}


/* =========================
   SEGMENTOS
========================= */

#segmentos{
    background:#06152d;
    padding:80px 70px;
    text-align:center;
}

.section-tag{
    color:#1358EA;
    font-size:16px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

#segmentos h2{
    color:#ffffff;
    font-size:42px;
    margin:18px 0 45px 0;
}

.cards-segmentos{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.segmento-card{
    text-align:left;
    color:white;

    text-decoration:none;
    display:block;

    transition:all 0.3s ease;
}

.segmento-card:hover{
    transform:translateY(-5px);
}

.segmento-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:22px;
}

.segmento-card h3{
    font-size:26px;
    margin-bottom:14px;
}

.segmento-card p{
    color:#d6dbe8;
    font-size:18px;
    line-height:1.6;
}

.btn-segmentos{
    display:inline-block;
    margin-top:45px;
    padding:15px 28px;
    border:1px solid #1358EA;
    color:#1358EA;
    border-radius:4px;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    transition:0.3s;
}
.btn-segmentos:hover{
    background:#1358EA;
    color:#ffffff;
    transform:translateY(-2px);
}
.segmento-imagem{
    position:relative;
    margin-bottom:25px;

    overflow:hidden;
    border-radius:8px;
}

.segmento-imagem{
    position:relative;
    margin-bottom:25px;
    overflow:hidden;
    border-radius:8px;
}

.segmento-imagem > img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
    transition:transform 0.3s ease;
}

.segmento-card:hover .segmento-imagem > img{
    transform:scale(1.02);
}

.segmento-icon{
    position:absolute;
    left:18px;
    bottom:14px;

    width:54px;
    height:54px;

    background:#1358EA;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.segmento-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
    display:block;

    position:relative;
    top:12px;
}

/* =========================
   ESTRUTURA
========================= */

#estrutura{
    background:#ffffff;
    padding:90px 80px;

    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:start;
}

.estrutura-texto span{
    color:#1358EA;
    font-size:17px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.estrutura-texto h2{
    color:#06152d;
    font-size:48px;
    line-height:1.1;
    margin:22px 0 28px;
}

.estrutura-texto p{
    color:#4d5563;
    font-size:18px;
    line-height:1.75;
    margin-bottom:38px;
}

.btn-estrutura{
    display:inline-block;
    background:#005bff;
    color:#ffffff;

    padding:18px 30px;
    border-radius:6px;

    font-size:15px;
    font-weight:800;
    text-transform:uppercase;

    transition:0.3s;
}

.btn-estrutura:hover{
    background:#0047c9;
    transform:translateY(-2px);
}

.estrutura-cards{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.estrutura-card h3{
    color:#06152d;
    font-size:23px;
    font-weight:800;
    margin-bottom:14px;
}

.estrutura-card p{
    color:#4d5563;
    font-size:17px;
    line-height:1.65;
}

.estrutura-imagem{
    position:relative;
    margin-bottom:26px;
}

.estrutura-imagem > img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

.estrutura-icon{
    position:absolute;
    left:20px;
    bottom:-18px;

    width:64px;
    height:64px;

    background:#1358EA;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.estrutura-icon img{
    width:48px;
    height:48px;
    object-fit:contain;
    display:block;

    position:relative;
    top:3px;
}


/* =========================
   NUMEROS
========================= */
#numeros{
    background:#06152d;
    padding:60px 80px;
    text-align:center;
}

#numeros > span{
    color:#1358EA;
    font-size:16px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.numeros-grid{
    max-width:1400px;
    margin:40px auto 0 auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.numero-item{
    padding:0 40px;
    border-right:1px solid rgba(255,255,255,0.22);
}

.numero-topo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;

    margin-bottom:12px;
}

.numero-item img{
    width:60px;
    height:60px;
}

.numero-item h3{
    color:#1358EA;
    font-size:42px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:14px;
}

.titulo-menor{
    font-size:30px !important;
    line-height:1.05;
}

.numero-item p{
    color:#ffffff;
    font-size:18px;
    line-height:1.5;
    text-transform:uppercase;
}


/* =========================
   SOBRE
========================= */
#sobre{
    background:#ffffff;
    padding:95px 80px;
}

.sobre-grid{
    max-width:1500px;
    margin:0 auto;

    display:grid;
    grid-template-columns:2.2fr 0.9fr;
    gap:90px;

    align-items:start;
}

.sobre-conteudo{
    max-width:none;
    position:relative;
    padding-left:60px;
}


.sobre-conteudo::before{
    content:"";

    position:absolute;

    left:0;
    top:8px;

    width:2px;
    height:430px;

    background:#4aa3ff;
}

.sobre-conteudo span{
    display:block;

    color:#1358EA;
    font-size:18px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:20px;
}

.sobre-conteudo h2{
    color:#06152d;
    font-size:46px;
    line-height:1.12;

    margin:0 0 34px 0;
}

.sobre-conteudo p{
    color:#374151;
    font-size:18px;
    line-height:1.75;

    margin-bottom:26px;
}



/* =========================
   CTA FINAL - rodape
========================= */

#cta-final{
    background:linear-gradient(
        90deg,
        #00152f 0%,
        #002654 50%,
        #00152f 100%
    );

    padding:42px 80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:60px;
}

.cta-texto h2{
    color:#ffffff;
    font-size:44px;
    line-height:1.1;
    margin-bottom:12px;
}

.cta-texto p{
    color:rgba(255,255,255,0.80);
    font-size:18px;
    font-weight:500;
    line-height:1.6;
}

.cta-botoes{
    display:flex;
    gap:18px;
}

.btn-whatsapp,
.btn-cta-final{
    display:flex;
    align-items:center;
    justify-content:center;

    min-width:220px;
    height:60px;

    border-radius:6px;

    font-size:17px;
    font-weight:800;

    text-decoration:none;
    text-transform:uppercase;

    transition:0.3s;
}

.btn-whatsapp{
    background:#1358EA;
    color:#ffffff;
}

.btn-whatsapp:hover{
    background:#0047c8;
    transform:translateY(-2px);
}

.btn-cta-final{
    color:#ffffff;
    border:1px solid rgba(255,255,255,0.35);
}

.btn-cta-final:hover{
    background:rgba(255,255,255,0.08);
    transform:translateY(-2px);
}

/* RODAPÉ */

.footer{
    background:#020b1c;
    color:#ffffff;
    padding:85px 80px 38px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.35fr 1.25fr 1.35fr 0.9fr;
    gap:95px;

    max-width:1500px;
    margin:0 auto;
}

.footer-logo{
    width:250px;
    margin-bottom:32px;
}

.footer-col h3{
    color:#1d6fff;
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:28px;
}

.footer-col p,
.footer-col a,
.footer-link{
    color:#d6dbe8;
    font-size:16px;
    line-height:1.9;
    text-decoration:none;
    display:block;
    margin-bottom:14px;
}

.footer-col iframe{
    width:100%;
    height:260px;
    border-radius:10px;
}

.footer-bottom{
    max-width:1500px;
    margin:55px auto 0;
    padding-top:30px;

    border-top:1px solid rgba(255,255,255,0.14);

    color:#8f9bb3;
    font-size:17px;
    text-align:center;
}


/* =========================
   RESPONSIVO - intermediario
========================= */


@media (max-width: 1200px){

/*hero*/
/* RESPONSIVO INTERMEDIÁRIO - HERO / HEADER */


    .header{
        height:90px;
        padding:0 45px;
    }

    .logo img{
        height:60px;
    }

    .menu{
        gap:34px;
    }

    .menu a{
        font-size:16px;
    }

    .btn-header{
        display:none;
    }

    .hero{
        min-height:820px;
        padding:130px 45px 70px;
        background-position:center right;
    }

    .hero-content{
        max-width:720px;
    }

    .hero-tag{
        font-size:16px;
        letter-spacing:2px;
        margin-bottom:25px;
    }

    .hero h1{
        font-size:78px;
        line-height:0.96;
        margin-bottom:28px;
    }

    .hero h2{
        font-size:30px;
        line-height:1.25;
        margin-bottom:24px;
    }

    .hero-descricao{
        font-size:21px;
        line-height:1.6;
        max-width:720px;
        margin-bottom:40px;
    }


/*diferenciais*/

    #diferenciais{
        padding:70px 45px 60px;
    }

    .cards-diferenciais{
        grid-template-columns:repeat(2, 1fr);
        gap:45px 0;
        max-width:900px;
    }

    .cards-diferenciais > div{
        padding:20px 45px;
        border-right:none;
    }

    .cards-diferenciais > div:nth-child(1),
    .cards-diferenciais > div:nth-child(2){
        border-bottom:1px solid #e8ebf1;
        padding-bottom:45px;
    }

    .cards-diferenciais img{
        width:70px;
        height:70px;
    }

    .cards-diferenciais h4{
        font-size:30px;
    }

    .cards-diferenciais p{
        font-size:18px;
        max-width:320px;
    }


/*estrutura*/    
    #estrutura{
        grid-template-columns:1fr;
        padding:70px 45px;
        gap:40px;
    }

    .estrutura-texto{
        max-width:700px;
    }

    .estrutura-cards{
        grid-template-columns:repeat(2, 1fr);
        gap:35px 28px;
    }

    .estrutura-imagem > img{
        height:240px;
    }

    .estrutura-card h3{
        font-size:24px;
    }

    .estrutura-card p{
        font-size:18px;
        line-height:1.65;
    }

/*numeros*/
    #numeros{
        padding:55px 35px;
    }

    .numeros-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:35px 0;
        max-width:900px;
    }

    .numero-item{
        border-right:none;
        padding:0 25px;
    }

    .numero-item:nth-child(1),
    .numero-item:nth-child(2){
        border-bottom:1px solid rgba(255,255,255,0.22);
        padding-bottom:30px;
    }

/*sobre*/

    .sobre-grid{
        grid-template-columns:1fr;
        gap:35px;
        max-width:850px;
    }

    .sobre-destaque{
        max-width:100%;
    }

/*cta*/  
    #cta-final{
    flex-direction:column;
    align-items:flex-start;
    gap:30px;
    padding:50px 45px;
}

.cta-texto h2{
    font-size:42px;
    max-width:760px;
}

.cta-texto p{
    font-size:20px;
    max-width:620px;
}

.cta-botoes{
    width:100%;
    display:flex;
    gap:18px;
}

.btn-whatsapp,
.btn-cta-final{
    flex:1;
    min-width:0;
}

/*rodape*/    

    .footer{
        padding:65px 45px 32px;
    }

    .footer-grid{
        max-width:1000px;
        grid-template-columns:1fr 1fr;
        gap:50px 70px;
    }

    .footer-logo{
        width:200px;
    }

    .footer-col p,
    .footer-col a,
    .footer-link{
        font-size:17px;
        line-height:1.75;
    }

    .footer-col iframe{
        height:220px;
    }
}


/* =========================
   RESPONSIVO - CELULAR
========================= */

@media (max-width: 768px){

    .header{
        height:auto;
        padding:18px 20px;
        flex-direction:column;
        gap:14px;
        background:rgba(0,10,30,0.96);
        position:absolute;
    }

    .logo img{
        height:38px;
    }

    .menu{
    display:none;
    }

    .menu a{
        font-size:14px;
    }

    .btn-header{
    display:none;
    }

    .hero{
        min-height:auto;
        padding:135px 24px 55px 24px;
        background-position:center right;
    }

    .hero-tag{
        font-size:13px;
        letter-spacing:2px;
        margin-bottom:20px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:39px;
        line-height:1.05;
        margin-bottom:22px;
    }

    .hero h2{
        font-size:17px;
        line-height:1.35;
        margin-bottom:30px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:14px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
        padding:15px 20px;
    }


/*diferenciais*/
    #diferenciais{
        padding:45px 24px;
    }

    #diferenciais > h3{
        margin-bottom:35px;
    }

    .cards-diferenciais{
        grid-template-columns:1fr;
        gap:18px;
    }

    .cards-diferenciais > div{
        border-right:none;
        border-bottom:1px solid #e4e8f0;
        padding:0 0 22px 0;
    }

    .cards-diferenciais > div:last-child{
        border-bottom:none;
    }

    .cards-diferenciais img{
        width:55px;
        height:55px;
        margin-bottom:16px;
    }

    .cards-diferenciais h4{
        font-size:21px;
        margin-bottom:10px;
    }

    .cards-diferenciais p{
        font-size:15px;
        line-height:1.55;
    }

/*segmentos*/
    #segmentos{
        padding:55px 22px;
    }

    .section-tag{
    font-size:12px;
    line-height:1.3;
    letter-spacing:1.5px;
    }

    #segmentos h2{
        font-size:26px;
        line-height:1.2;
        margin:12px 0 28px;
    }

    .cards-segmentos{
        grid-template-columns:1fr;
        gap:32px;
    }

    .segmento-card img{
        height:180px;
    }

/*estrutura*/
    #estrutura{
        padding:45px 22px;
        grid-template-columns:1fr;
        gap:28px;
    }

    .estrutura-icon img{
        width:28px;
        height:auto;
        max-height:28px;
        display:block;
    }

    .estrutura-texto h2{
        font-size:30px;
        line-height:1.15;
        margin:14px 0 18px;
    }

    .estrutura-texto p{
        font-size:16px;
        line-height:1.65;
        margin-bottom:24px;
    }

    .btn-estrutura{
        width:100%;
        text-align:center;
        padding:15px 18px;
    }

    .estrutura-cards{
        grid-template-columns:1fr;
        gap:28px;
    }

    .estrutura-card img{
        height:180px;
        object-fit:cover;
    }

/*numeros*/
    #numeros{
        padding:45px 24px;
    }

    #numeros > span{
        font-size:12px;
        line-height:1.35;
        display:block;
        margin-bottom:35px;
    }

    .numeros-grid{
        grid-template-columns:1fr;
        gap:24px;
        margin-top:0;
    }

    .numero-item{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.22);
        padding:0 0 24px 0;
    }

    .numero-item:last-child{
        border-bottom:none;
    }

    .numero-topo{
        gap:12px;
        margin-bottom:14px;
    }

    .numero-item img{
        width:30px;
        height:30px;
    }

    .numero-item h3{
        font-size:34px;
        line-height:1.1;
    }

    .numero-item h3.titulo-menor{
        font-size:22px !important;
        line-height:1.15 !important;
    }

    .numero-item p{
        font-size:14px;
        line-height:1.4;
    }

    .numero-item:last-child .numero-topo{
        width:fit-content;
        margin-left:auto;
        margin-right:auto;

        display:flex;
        align-items:center;
        justify-content:center;
        gap:0px;
    }

    .numero-item:last-child .numero-topo img{
        position:relative;
        left:-10px;
    }

    .numero-item:last-child .titulo-menor{
        display:inline-block;
        width:auto;
        text-align:center;
    }


/* SOBRE */

    #sobre{
        padding:60px 24px;
    }

    .sobre-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:30px;
    }

    .sobre-conteudo{
        max-width:100%;
    }

    .sobre-conteudo span{
        font-size:13px;
        margin-bottom:14px;
    }

    .sobre-conteudo h2{
        font-size:30px;
        line-height:1.15;
        margin-bottom:24px;
    }

    .sobre-conteudo p{
        font-size:15px;
        line-height:1.75;
        margin-bottom:18px;
    }


/*cta final*/ 

    #cta-final{
        padding:35px 24px;
        flex-direction:column;
        text-align:center;
    }

    .cta-texto h2{
        font-size:24px;
    }

    .cta-botoes{
        flex-direction:column;
        width:100%;
    }

    .btn-whatsapp,
    .btn-cta-final{
        width:100%;
        text-align:center;
    }
    .footer{
        padding:45px 24px 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer-logo{
        width:110px;
        margin-bottom:15px;
    }

    .footer-col{
        text-align:left;
    }

    .footer-col h3{
        font-size:14px;
        margin-bottom:12px;
    }

    .footer-col p,
    .footer-col a,
    .footer-link{
        font-size:14px;
        line-height:1.7;
    }

    .footer-col iframe{
        width:100%;
        height:220px;
        display:block;
        border-radius:8px;
    }

    .footer-bottom{
        margin-top:25px;
        padding-top:18px;
        font-size:12px;
    }
}