/* =========================
ARQUIVO: style.css
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222222;
    overflow-x: hidden;
}

.container{
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* =========================
HEADER
========================= */

.header{
    width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    max-height: 68px;
    width: auto;
    display: block;
}

.nav{
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav a{
    color: #0b3d91;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
    padding: 8px 0;
}

.nav a::after{
    content: "";
    width: 0;
    height: 3px;
    background: #f58220;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    transition: 0.3s;
}

.nav a:hover{
    color: #f58220;
}

.nav a:hover::after{
    width: 100%;
}

/* =========================
HERO VIDEO
========================= */

.hero-video{
    width: 100%;
    height: 92vh;
    position: relative;
    overflow: hidden;
}

.hero-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay{
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5,25,60,0.88),
        rgba(5,25,60,0.45)
    );
    position: absolute;
    top: 0;
    left: 0;
}

.hero-conteudo{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 720px;
    color: #ffffff;
}

.hero-conteudo span{
    display: inline-block;
    background: #f58220;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.hero-conteudo h1{
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-conteudo p{
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #f2f2f2;
}

.hero-conteudo a{
    display: inline-block;
    background: #f58220;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(245,130,32,0.35);
}

.hero-conteudo a:hover{
    background: #0b3d91;
    transform: translateY(-4px);
}

/* =========================
SERVIÇOS
========================= */

.servicos{
    padding: 110px 0;
    background: #f5f7fb;
}

.subtitulo{
    display: inline-block;
    color: #f58220;
    font-weight: bold;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.servicos h1{
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 60px;
    color: #0b3d91;
    max-width: 900px;
}

.cards-servicos{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card-servico{
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 6px solid #f58220;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card-servico::before{
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,#f58220,#0b3d91);
    position: absolute;
    top: 0;
    left: 0;
}

.card-servico:hover{
    transform: translateY(-10px);
}

.card-servico h3{
    font-size: 26px;
    margin-bottom: 22px;
    color: #0b3d91;
    line-height: 1.3;
}

.card-servico p{
    color: #555555;
    line-height: 1.9;
    font-size: 16px;
}

/* =========================
SOBRE
========================= */

.sobre{
    padding: 110px 0;
    background: #ffffff;
}

.sobre-conteudo{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.sobre h2{
    font-size: 48px;
    margin-bottom: 28px;
    color: #0b3d91;
    line-height: 1.2;
}

.sobre p{
    color: #555555;
    line-height: 1.95;
    margin-bottom: 22px;
    font-size: 17px;
}

.sobre-imagem{
    position: relative;
}

.sobre-imagem::before{
    content: "";
    width: 100%;
    height: 100%;
    border: 4px solid #f58220;
    position: absolute;
    left: -18px;
    top: -18px;
    border-radius: 30px;
}

.sobre-imagem img{
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* =========================
FOOTER
========================= */

.footer{
    background: linear-gradient(135deg, #f58220, #d96f12);
    color: #ffffff;
    padding-top: 50px;
}

.footer-conteudo{
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 35px;
    align-items: center;
    padding-bottom: 40px;
}

.footer-logo img{
    max-width: 145px;
    margin-bottom: 18px;
    background: #ffffff;
    padding: 10px;
    border-radius: 14px;
}

.footer-logo p{
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-contato h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-contato p{
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.7;
    font-size: 14px;
}

.footer-contato strong{
    color: #0b3d91;
}

.footer-mapa iframe{
    width: 100%;
    height: 190px;
    border-radius: 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.footer-copy{
    background: #0b3d91;
    text-align: center;
    padding: 16px 0;
}

.footer-copy p{
    color: #ffffff;
    font-size: 13px;
}

/* =========================
WHATSAPP
========================= */

.whatsapp-fixo{
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    width: 68px;
    height: 68px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.whatsapp-fixo:hover{
    transform: scale(1.08);
}

.whatsapp-fixo img{
    width: 38px;
    height: 38px;
}

/* =========================
ESTRUTURA PREMIUM
========================= */

.estrutura-premium-hero{
    min-height: 80vh;
    background:
        linear-gradient(90deg, rgba(7,42,99,0.92), rgba(11,61,145,0.55)),
        url("img/img1.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.estrutura-hero-content{
    color: #ffffff;
    max-width: 850px;
}

.estrutura-hero-content span,
.premium-text span,
.premium-title span{
    display: inline-block;
    background: #f58220;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 22px;
}

.estrutura-hero-content h1{
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.estrutura-hero-content p{
    font-size: 20px;
    line-height: 1.8;
}

.estrutura-destaques{
    margin-top: -65px;
    position: relative;
    z-index: 5;
    padding-bottom: 70px;
}

.destaques-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.destaque-card{
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-bottom: 5px solid #f58220;
}

.destaque-card h3{
    color: #0b3d91;
    font-size: 42px;
    margin-bottom: 10px;
}

.destaque-card p{
    color: #555555;
    font-weight: 700;
}

.estrutura-premium-section{
    padding: 110px 0;
    background: #ffffff;
}

.section-blue{
    background: linear-gradient(135deg, #0b3d91, #061f4c);
}

.premium-grid{
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
}

.invertido .premium-img{
    order: 2;
}

.invertido .premium-text{
    order: 1;
}

.premium-img{
    position: relative;
}

.premium-img::before{
    content: "";
    position: absolute;
    left: -18px;
    top: -18px;
    width: 100%;
    height: 100%;
    border: 4px solid #f58220;
    border-radius: 32px;
}

.premium-img img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    transition: 0.3s;
}

.premium-img img:hover{
    transform: translateY(-6px);
}

.premium-text h2,
.premium-title h2{
    color: #0b3d91;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.premium-text p,
.premium-title p{
    color: #555555;
    line-height: 1.9;
    font-size: 17px;
}

.premium-text.light h2,
.premium-text.light p{
    color: #ffffff;
}

.estrutura-galeria-premium{
    padding: 110px 0;
    background: #ffffff;
}

.fundo-premium{
    background: #f5f7fb;
}

.premium-title{
    text-align: center;
    max-width: 950px;
    margin: auto auto 60px;
}

.premium-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.premium-gallery img{
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.premium-gallery img:hover{
    transform: translateY(-6px);
}

/* =========================
PÁGINAS
========================= */

.pagina{
    padding: 120px 0;
}

.pagina h1{
    font-size: 48px;
    margin-bottom: 20px;
    color: #0b3d91;
}

.pagina p{
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width: 900px){

    .menu{
        flex-direction: column;
        gap: 20px;
    }

    .nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-video{
        height: 80vh;
    }

    .hero-conteudo{
        left: 5%;
        right: 5%;
    }

    .hero-conteudo h1{
        font-size: 38px;
    }

    .hero-conteudo p{
        font-size: 16px;
    }

    .cards-servicos,
    .sobre-conteudo,
    .destaques-grid,
    .premium-grid,
    .premium-gallery,
    .footer-conteudo{
        grid-template-columns: 1fr;
    }

    .invertido .premium-img,
    .invertido .premium-text{
        order: initial;
    }

    .servicos h1,
    .sobre h2,
    .premium-text h2,
    .premium-title h2,
    .pagina h1{
        font-size: 32px;
    }

    .estrutura-hero-content h1{
        font-size: 38px;
    }

    .estrutura-hero-content p{
        font-size: 16px;
    }

    .premium-img img,
    .premium-gallery img{
        height: 300px;
    }

    .footer-conteudo{
        text-align: center;
    }

    .footer-logo img{
        margin: auto auto 18px;
        display: block;
    }

    .footer-logo p{
        margin: auto;
    }

}
/* =========================
HERO COM IMAGEM NA INDEX
========================= */

.hero-imagem{
    width: 100%;
    height: 88vh;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5,25,60,0.88), rgba(5,25,60,0.38)),
        url("img/home-bg.jpg");
    background-size: cover;
    background-position: center;
}

/* =========================
VÍDEO CLICÁVEL NA INDEX
========================= */

.video-apresentacao{
    padding: 100px 0;
    background: #ffffff;
}

.titulo-central-video{
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
}

.titulo-central-video h2{
    font-size: 46px;
    color: #0b3d91;
    margin-bottom: 18px;
}

.titulo-central-video p{
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

.video-box{
    max-width: 1000px;
    margin: auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    border: 6px solid #f58220;
}

.video-box video{
    width: 100%;
    display: block;
    background: #000000;
}

@media(max-width: 900px){

    .hero-imagem{
        height: 78vh;
    }

    .titulo-central-video h2{
        font-size: 32px;
    }

    .video-apresentacao{
        padding: 70px 0;
    }

}
.header-premium{
    width: 100%;
    background: #ffffff !important;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 6px 25px rgba(0,0,0,0.10);
}

.header-container{
    height: 82px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.logo-premium img{
    width: auto !important;
    height: 58px !important;
    max-height: 58px !important;
    display: block !important;
}

.nav-premium{
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #f5f7fb;
    padding: 8px;
    border-radius: 50px;
}

.nav-premium a{
    color: #0b3d91 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 12px 18px !important;
    border-radius: 50px;
}

.btn-menu-contato{
    background: #f58220 !important;
    color: #ffffff !important;
}

@media(max-width: 900px){
    .header-container{
        height: auto !important;
        flex-direction: column !important;
        gap: 15px;
        padding: 15px 0;
    }

    .logo-premium img{
        height: 55px !important;
    }

    .nav-premium{
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
    }
}
/* =========================
PROJETOS PREMIUM
========================= */

.projetos-hero{
    padding: 120px 0 90px;
    background:
        linear-gradient(90deg, rgba(7,42,99,0.94), rgba(11,61,145,0.72)),
        url("img/Proj1.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.projetos-hero h1{
    max-width: 950px;
    margin: 20px auto;
    font-size: 54px;
    line-height: 1.15;
}

.projetos-hero p{
    max-width: 780px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #f2f2f2;
}

.projetos-section{
    padding: 100px 0;
    background: #f5f7fb;
}

.projetos-lista{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.projeto-card{
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    transition: 0.3s;
    border-bottom: 5px solid #f58220;
}

.projeto-card:hover{
    transform: translateY(-8px);
}

.projeto-img{
    background: #ffffff;
    padding: 25px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projeto-img::before{
    display: none;
}

.projeto-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.projeto-texto{
    padding: 30px;
}

.projeto-texto span{
    display: none;
}

.projeto-texto h2{
    font-size: 30px;
    color: #0b3d91;
    margin-bottom: 20px;
    line-height: 1.2;
}

.projeto-texto p{
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

@media(max-width: 1000px){
    .projetos-lista{
        grid-template-columns: 1fr;
    }

    .projetos-hero h1{
        font-size: 34px;
    }

    .projeto-img{
        height: 230px;
    }

    .projeto-texto h2{
        font-size: 28px;
    }
}
/* =========================
CONTATO PREMIUM PRF
========================= */

.contact-page-prf{
    min-height: 88vh;
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(90deg, rgba(7,42,99,0.94), rgba(11,61,145,0.62)),
        url("img/home-bg.jpg");
    background-size: cover;
    background-position: center;
}

.contact-container-prf{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.contact-left-prf{
    color: #ffffff;
}

.contact-tag-prf{
    display: inline-block;
    background: #f58220;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-left-prf h1{
    font-size: 58px;
    line-height: 1.12;
    margin-bottom: 25px;
}

.contact-left-prf > p{
    font-size: 18px;
    line-height: 1.8;
    color: #f2f2f2;
    max-width: 720px;
    margin-bottom: 35px;
}

.contact-cards-prf{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mini-card-prf{
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 22px;
    border-radius: 22px;
}

.mini-card-prf h3{
    color: #f58220;
    font-size: 18px;
    margin-bottom: 10px;
}

.mini-card-prf p,
.mini-card-prf a{
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.mini-card-prf a:hover{
    color: #f58220;
}

.contact-form-box-prf{
    background: #ffffff;
    padding: 42px;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.22);
    border-top: 6px solid #f58220;
}

.contact-form-box-prf h2{
    color: #0b3d91;
    font-size: 32px;
    margin-bottom: 28px;
}

.contact-form-box-prf form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-box-prf input,
.contact-form-box-prf textarea{
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #dde3ef;
    border-radius: 14px;
    font-size: 15px;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s;
}

.contact-form-box-prf textarea{
    height: 140px;
    resize: none;
}

.contact-form-box-prf input:focus,
.contact-form-box-prf textarea:focus{
    border-color: #f58220;
    box-shadow: 0 0 0 4px rgba(245,130,32,0.12);
}

.contact-form-box-prf button{
    border: none;
    background: linear-gradient(135deg, #f58220, #d96f12);
    color: #ffffff;
    padding: 17px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box-prf button:hover{
    background: linear-gradient(135deg, #0b3d91, #072a63);
    transform: translateY(-3px);
}

/* MAPA CONTATO */

.contato-mapa-prf{
    padding: 90px 0;
    background: #f5f7fb;
}

.contato-mapa-titulo{
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
}

.contato-mapa-titulo h2{
    color: #0b3d91;
    font-size: 44px;
    margin-bottom: 15px;
}

.contato-mapa-titulo p{
    color: #555555;
    font-size: 17px;
    line-height: 1.7;
}

.contato-mapa-box{
    overflow: hidden;
    border-radius: 32px;
    border: 6px solid #ffffff;
    box-shadow: 0 22px 55px rgba(0,0,0,0.14);
}

.contato-mapa-box iframe{
    display: block;
    width: 100%;
}

/* RESPONSIVO CONTATO */

@media(max-width: 900px){

    .contact-page-prf{
        padding: 80px 0;
    }

    .contact-container-prf,
    .contact-cards-prf{
        grid-template-columns: 1fr;
    }

    .contact-left-prf h1{
        font-size: 36px;
    }

    .contact-form-box-prf{
        padding: 28px;
    }

    .contato-mapa-titulo h2{
        font-size: 32px;
    }

}