        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        /* ================= HEADER ================= */
        header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .top-bar {
            background-color: #2d55a5;
            color: white;
            padding: 8px 0;
            text-align: right;
        }

        .top-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-size: 14px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
        }

        .logo img {
            height: 110px;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin-left: 25px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 10px 15px;
            transition: color 0.3s;
            display: block;
        }

        nav ul li a:hover {
            color: #2d55a5;
        }

        .area-cliente {
            border: 2px solid #2d55a5;
            border-radius: 4px;
            padding: 8px 15px !important;
        }

        .area-cliente:hover {
            background-color: #2d55a5;
            color: white !important;
        }

        .submenu {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 250px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            left: 0;
            top: 100%;
        }

        .submenu li a {
            padding: 10px 15px;
            display: block;
            border-bottom: 1px solid #eee;
        }

        nav ul li:hover > .submenu {
            display: block;
        }

        /* ================= HERO ================= */
        .hero {
            background-image: url('../img/background.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 150px;
            position: relative;
            opacity: 1 !important;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.85);
            z-index: -1;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        /* ===== ANIMAÇÃO SOMENTE NO TEXTO ===== */
        .hero-text h1,
        .hero-text p {
            opacity: 0;
            transform: translateY(15px);
            animation: revelarTexto 0.9s ease forwards;
            color:#2d55a5;
        }

        .hero-text p {
            animation-delay: 0.3s;
        }

        @keyframes revelarTexto {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #2d55a5;
            margin-bottom: 20px;
        }

        /* ================= FORM ================= */
        .form-container {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .form-container h2 {
            margin-bottom: 20px;
            font-size: 1.5rem;
            color:#2d55a5;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .btn {
            background-color: #2d55a5;
            color: white;
            border: none;
            padding: 12px;
            width: 100%;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn:hover {
            background-color: #555;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }

            nav ul {
                flex-direction: column;
                margin-top: 20px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }






/* ================= SECTION CONEXÃO ================= */

.section-conexao {
    padding: 80px 20px;
    background-color: #ffffff;
}

.conexao-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
    align-items: center;
    gap: 40px;
}

.conexao-imagem img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.conexao-divisor {
    width: 3px;
    height: 80%;
    background-color: #2d55a5;
    margin: 0 auto;
}

.conexao-texto h2 {
    font-size: 2rem;
    color: #808185;
    margin-bottom: 20px;
    line-height: 1.3;
}

.conexao-texto h3 {
    font-size: 1.5rem;
    color: #2d55a5;
    margin-bottom: 15px;
}

.conexao-texto p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.btn-conexao {
    display: inline-block;
    background-color: #2d55a5;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-conexao:hover {
    background-color: #1f3f7a;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 768px) {
    .conexao-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conexao-divisor {
        display: none;
    }

    .conexao-texto h2 {
        font-size: 1.6rem;
    }

    .conexao-texto h3 {
        font-size: 1.3rem;
    }
}





.section-servicos-slider {
    background-color: #f4f7fc;
    padding: 80px 20px;
}

.container-servicos {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-servicos-slider h2 {
    color: #2d55a5;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.subtitulo {
    color: #808185;
    margin-bottom: 50px;
}

.servico-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
    height: 100%;
}

.servico-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.servico-card h3 {
    color: #2d55a5;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.servico-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Setas */
.swiper-button-next,
.swiper-button-prev {
    color: #2d55a5;
}
.servicos-slider {
    position: relative;
    padding: 20px 40px;
}

.swiper-button-next,
.swiper-button-prev {
    display: flex !important;
    color: #2d55a5;
}


.servico-card:hover h3 {
    text-decoration: underline;
}
.servico-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(45, 85, 165, 0.25);
}

.servico-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.servico-card h3 {
    color: #2d55a5;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.servico-card p {
    font-size: 0.9rem;
    color: #555;
}








.section-historia {
    background: #ffffff;
    padding: 80px 0;
}

.container-historia {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 4px 1fr;
    gap: 50px;
    align-items: center;
}

.historia-texto h2 {
    font-size: 2.2rem;
    color: #6b6b6b;
    margin-bottom: 20px;
}

.historia-texto p {
    font-size: 1rem;
    color: #7a7a7a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.historia-divisor {
    width: 4px;
    height: 100%;
    background: #1e90ff; /* azul do projeto */
    border-radius: 2px;
}

.btn-historia {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #050a52;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-historia:hover {
    background: #1e90ff;
}

.historia-imagem img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
@media (max-width: 900px) {
    .container-historia {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .historia-divisor {
        display: none;
    }
}




.section-destaque-frase {
    background-color: #fde500;
    height: 420px;
    position: relative;
    overflow: visible;
    margin-top: 120px; /* 👈 AUMENTA O ESPAÇO ENTRE AS SECTIONS */
}

.container-frase {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
}

/* IMAGEM */
.frase-imagem {
    position: relative;
    height: 100%;
}

.frase-imagem img {
    position: absolute;
    bottom: 0; /* ENCOSTA NO RODAPÉ DO AMARELO */
    left: 50%;
    transform: translateX(-50%);
    max-height: 560px; /* imagem maior que a section */
    width: auto;
}

/* TEXTO */
.frase-texto h2 {
    color: #2d55a5;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 600;
    max-width: 420px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .section-destaque-frase {
        height: auto;
        padding: 60px 20px;
    }

    .container-frase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .frase-imagem img {
        position: relative;
        max-height: 380px;
        transform: none;
        left: auto;
        margin: 0 auto;
    }
}



.footer {
    background-color: #2d55a5;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
}

/* LOGO */
.footer-logo {
    display: flex;
    justify-content: center;
}

.logo-box {
    background: #fff;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    max-width: 80px;
}

/* TEXTO */
.footer-texto p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-col h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* REDES */
.footer-social {
    margin-top: 10px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #fde500;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}








/* ================= BANNER TOPO QUEM SOMOS ================= */

.banner-topo-lateral {
    background-color: #fde500;
    padding: 100px 0 0; /* espaço superior + imagem encostada embaixo */
    overflow: hidden;   /* evita imagem “vazando” */
}



.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center; /* 👈 corrige alinhamento do texto */
    padding: 0 20px;
}


/* ===== TEXTO ===== */
.banner-texto {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 👈 centraliza verticalmente */
}

.banner-texto h1 {
    font-size: 44px;
    color: #2d55a5;
    line-height: 1.15;
    margin-bottom: 20px;
}

.banner-texto p {
    font-size: 17px;
    color: #2d55a5;
    max-width: 520px;
    line-height: 1.6;
}

.banner-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #2d55a5;
    margin-bottom: 12px;
    letter-spacing: 1px;
}


/* ===== IMAGEM ===== */
.banner-imagem {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 40px; /* 👈 desce a imagem */
}


.banner-imagem img {
    max-height: 520px;
    width: auto;
    display: block;
}



/* ================= RESPONSIVO ================= */

@media (max-width: 1024px) {
    .banner-texto h1 {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-texto {
        padding-top: 0;
    }

    .banner-texto p {
        margin: 0 auto;
    }

    .banner-imagem {
        margin-top: 30px;
    }

    .banner-imagem img {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .banner-texto h1 {
        font-size: 28px;
    }

    .banner-texto p {
        font-size: 16px;
    }
}
















.institucional-moderno {
    padding: 100px 20px;
    background-color: #ffffff;
}

.institucional-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* INTRO */
.institucional-intro {
    max-width: 800px;
    margin-bottom: 70px;
}

.institucional-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #2d55a5;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.institucional-intro h2 {
    font-size: 38px;
    color: #2d55a5;
    margin-bottom: 25px;
    line-height: 1.2;
}

.institucional-intro p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* CARDS */
.institucional-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.institucional-card {
    background: #f9f9f9;
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.institucional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.institucional-card i {
    font-size: 34px;
    color: #fde500;
    margin-bottom: 18px;
}

.institucional-card h3 {
    font-size: 22px;
    color: #2d55a5;
    margin-bottom: 12px;
}

.institucional-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .institucional-cards {
        grid-template-columns: 1fr;
    }

    .institucional-intro h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .institucional-moderno {
        padding: 70px 15px;
    }

    .institucional-intro h2 {
        font-size: 26px;
    }
}










/* ================= CONTATO ================= */

.contato-page {
    padding: 100px 20px;
    background: #ffffff;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* CABEÇALHO */
.contato-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.contato-tag {
    font-size: 13px;
    font-weight: 700;
    color: #2d55a5;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.contato-header h1 {
    font-size: 38px;
    color: #2d55a5;
    margin-bottom: 20px;
}

.contato-header p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

/* INFO */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 22px;
    color: #fde500;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 16px;
    color: #2d55a5;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
}

/* FORM */
.contato-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
}

.contato-form h3 {
    color: #2d55a5;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.btn-contato {
    width: 100%;
    padding: 14px;
    background: #2d55a5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-contato:hover {
    background: #1f3f7a;
}

/* MAPA */
.contato-mapa iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 14px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-header h1 {
        font-size: 30px;
    }
}


.scroll-reveal {
    transform: translateY(40px);
    transition: transform 0.8s ease;
    will-change: transform;
}

.scroll-reveal.active {
    transform: translateY(0);
}

