/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Melhorias de acessibilidade e UX */
a {
    transition: all 0.3s ease;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #0F2C5C;
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/*HERO COMPLETO */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #f8f8f8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header_container {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    justify-content: left;
    height: 40px;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: #0f2c5c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ffffff81;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}


/* HERO */
.hero {
    position: relative;
    width: 100%;
    background: url('/images/banner-home.jpg') no-repeat center center/cover;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    padding-bottom: 60px;
}


.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-content .btn {
    background-color: #0F2C5C;
    color: #ffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.hero-content .btn:hover {
    background-color: #254379;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 44, 92, 0.3);
}

.hero-content .btn:active {
    transform: translateY(0);
}


/* RESPONSIVO */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -220px;
        flex-direction: column;
        padding: 30px;
        background: #254379;
        height: calc(100vh - 70px);
        transition: right 0.3s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/*SECTION MAIN*/


.section-cards {

    padding: 100px 50px 100px 50px;
    background-color: #F5F7FA;
    margin: auto;

}


.cards {
    margin: auto;
    display: flex;
    gap: 1rem;
    max-width: 1240px;
    justify-content: space-between;
    max-width: 1240px;
}

.card {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
    font-size: 30px;
    color: #0F2C5C;
}

.card p {
    color: #254279e1;
    max-width: 350px;
}


/*SECTION TITLE*/

.section-title {

    margin: auto;
    max-width: 1240px;
    margin-top: 120px;
    margin-bottom: 150px;
    text-align: center;

}

.section-title h2 {
    font-size: 40px;
    color: #0F2C5C;
}

.section-title P {
    color: #254279e1;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    justify-content: center;
    margin-top: 5rem;
}

.image-box {
    flex: 0 0 320px;
    max-width: 350px;
}

.image-grid img {
    border-radius: 30px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-grid h3 {
    font-size: 20px;
    color: #0F2C5C;
    margin-top: 1rem;
}

.image-box p {
    color: #254379;
    margin-top: 0.5rem;
}


.image-box img {
    max-width: 100%;
    border-radius: 30px;
}


/*TESTEMUNHOS SECTIONS*/

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 4rem 4rem;
    background: #12356D;
}

.testimonial-card {
    background: #254379;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 350px;
    flex: 1 1 300px;
    box-sizing: border-box;
}

.testimonial-card img {
    width: 40px;
    margin-bottom: 1rem;
}



/*TIME DA EMPRESA SECTION*/

.team {
    margin: auto;
    padding: 50px;
    max-width: 1240px;

}

.title_and-lorem-ipsum {
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team h2,
h4 {
    color: #0F2C5C;
}

.team p {
    color: #12356D;
}

.title-team h2 {
    font-size: 40px;
}

.title-team {
    max-width: 500px;
}

.lorem-text {
    max-width: 400px;
}

.lorem-text strong {
    color: #0F2C5C;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
}

.member {
    text-align: center;
    padding: 50px 30px 50px 30px;
    background-color: #ffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}


/*Section-lorem-ispum*/

.container-lorem {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 50px;
    background: #F5F7FA;
}

.lorem_container {
    background: #F5F7FA;
    margin: auto;
    padding: 50px;
    max-width: 1240px;
}

.lorem_container {
    margin-top: 90px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1240px;
}

.lorem_container h2,
h4 {
    color: #0F2C5C;
}

.lorem_container p {
    color: #12356D;
}

.title-team h2 {
    font-size: 40px;
}

.title-team {
    max-width: 500px;
}



/*CTA SECTION*/

.cta {
    max-width: 1240px;
    flex-wrap: wrap;
    display: flex;
    gap: 4rem;
    margin: auto;
    justify-content: space-around;
    padding: 100px 50px 100px 50px;
}

.cta h3,
strong {
    color: #0F2C5C;
}

.cta p {
    max-width: 230px;
    color: #254379;
}

.cta-box {
    max-width: 26%;
}









/*PÁGINA DE QUEM SOMOS */

/*Apresentação Institucional*/
.institucional {
    padding: 100px 50px 200px 50px;
    margin: auto;
    max-width: 1240px;
}

.institucional h1 {
    font-size: 28px;
    color: #0F2C5C;
}

.institucional p {
    color: #254379;
    margin-bottom: 50px;
}


.bnt_saber_mais {
    border: none;
    padding: 0.8rem 1.5rem;
    background: #0F2C5C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.bnt_saber_mais:hover {
    background: #002c99;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 44, 153, 0.3);
}

.bnt_saber_mais:active {
    transform: translateY(0);
}


/*Missão visão e valores*/
.Msssao_section {
    margin-bottom: 100px;
    background-color: #F9F9F9;
    text-align: center;
}

.Msssao_section h2 {
    margin-bottom: 20px;
    color: #0F2C5C;
    font-size: 30px;
}

.cards-MV {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: auto;
    padding: 3rem 2rem;
    max-width: 1240px;
}



.Card_MV {
    flex: 0 0 350px;
    width: 350px;
    min-height: 450px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e8e8e8;
}

.Card_MV:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(15, 44, 92, 0.15);
    border-color: #0F2C5C;
}

.Card_MV img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.Card_MV p {
    text-align: center;
    color: #254379;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.Card_MV h3 {
    margin-bottom: 1.5rem;
    color: #0F2C5C;
    font-size: 24px;
    font-weight: 700;
}



/*Nossa história section*/
.historia {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}


.historia-header {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.historia-header h2 {
    text-align: center;
    font-size: 30px;
    color: #0F2C5C;
}

.linha-tempo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.card h3 {
    font-size: 20px;
    color: #0F2C5C;
    margin-bottom: 8px;
    font-weight: 600;
}

.card p {
    font-size: 15px;
    color: #254379;
}

.linha-individual {
    display: flex;
    align-items: center;
    margin-top: 15px;
    width: 100%;
    position: relative;
    height: 10px;
}

.linha-individual .barra {
    height: 2px;
    background-color: #f4c949;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.linha-individual .ponto {
    width: 12px;
    height: 12px;
    background-color: #1a1a1a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Movimentação do ponto com base no ano */
.ponto-2018 .ponto {
    left: 5%;
}

.ponto-2019 .ponto {
    left: 20%;
}

.ponto-2020 .ponto {
    left: 35%;
}

.ponto-2021 .ponto {
    left: 50%;
}

.ponto-2023 .ponto {
    left: 70%;
}

.ponto-2024 .ponto {
    left: 90%;
}

@media (max-width: 768px) {
    .linha-individual .ponto {
        left: 50% !important;
    }
}

.linha-individual .barra {
    height: 2px;
    background-color: #f4c949;
    flex-grow: 1;
}

@media (max-width: 480px) {
    .historia-header {
        flex-direction: column;
        align-items: flex-start;
    }
}



/*EQUIPE FUNDADORA*/
.equipe {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.equipe-titulo {
    font-size: 30px;
    margin-bottom: 50px;
    color: #0F2C5C;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.membro {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    min-width: 300px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.membro img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.membro h3 {
    color: #0F2C5C;
    font-size: 18px;
    margin: 5px 0;
}

.membro-cargo {
    font-size: 14px;
    color: #0F2C5C;
    margin-bottom: 8px;
}

.membro-desc {
    font-size: 13px;
    color: #254379;
}

/* Botões de navegação */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.arrow:hover {
    background: #f4c949;
    color: black;
}

.prev {
    left: -10px;
}

.next {
    right: -10px;
}

@media (max-width: 768px) {
    .arrow {
        display: none;
    }

    .carousel {
        scroll-snap-type: x mandatory;
    }

    .membro {
        scroll-snap-align: start;
    }
}



/*Reconhcimento Section*/
.reconhecimento {
    padding: 50px;
    background-color: #0F2C5C;
    color: #ffffff;
    justify-content: center;
    margin: auto;
    text-align: center;
    margin-bottom: 150px;
    margin-top: 150px;
}

.rec-empresas {
    color: #ffffffde;
    max-width: 1240px;
}

.empresa {
    margin-bottom: 30px;
}

.reconhecimento hr {
    margin: auto;
    text-align: center;
    justify-content: center;
    width: 55%;
}


.title-empresa {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}

.tiltle-reconhecimento {
    max-width: 1240px;
    margin-bottom: 50px;
}

.tiltle-reconhecimento h1 {
    font-size: 30px;
}

.tiltle-reconhecimento p {
    color: #ffffffce;
    font-size: 20px;
    margin: auto;
    text-align: center;
    max-width: 700px;
}



/*PÁGINA DE OFICINAS*/
.mapa-section {
    justify-content: space-between;
    margin: auto;
    padding: 50px;
    max-width: 1240px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mapa-text {
    max-width: 40%;
}

.mapa-text h1 {
    font-size: 28px;
    color: #0F2C5C;
}

.mapa-text p {
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 500px;
    color: #254279e1;
}

.mapa-img img {
    max-width: 400px;
}


@media (max-width: 900px) {
    .mapa-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
    }

    .mapa-text,
    .mapa-img {
        max-width: 100%;
        text-align: center;
    }
}



/*Oficinas Section*/
.oficinas-section {
    background-color: #F9F9F9;
    padding: 80px 20px;
    text-align: center;
}

.oficinas-title h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #254379;
}

.oficinas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}

.oficina-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.oficina-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.oficina-card img {
    margin: 10%;
    width: 80%;
    height: auto;
    display: block;
}

.oficina-card h3 {
    font-size: 20px;
    margin: 16px;
    color: #0F2C5C;
}

.oficina-card .local {
    font-size: 14px;
    color: #777;
    margin: 0 16px 8px;
}

.oficina-card .desc {
    font-size: 14px;
    color: #444;
    margin: 0 16px 20px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .oficinas-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 por linha em tablet */
    }
}

@media (max-width: 600px) {
    .oficinas-grid {
        grid-template-columns: 1fr;
        /* 1 por linha em mobile */
    }
}





/*Diferenciais Section*/
.diferenciais {
    padding: 80px 20px;
    text-align: center;
}

.diferenciais-titulo {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0F2C5C;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1240px;
    margin: auto;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.diferencial-card {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
}

.diferencial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.diferencial-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0F2C5C;
}

.diferencial-card p {
    font-size: 14px;
    color: #555;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0F2C5C;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
    font-size: 18px;
}

.arrow:hover {
    background-color: #444;
}

.arrow.prev {
    left: -10px;
}

.arrow.next {
    right: -10px;
}

@media (max-width: 768px) {
    .diferencial-card {
        flex: 0 0 80%;
    }

    .arrow {
        display: none;
    }
}




/*Chamada para acção*/
.cta-section {
    background-color: #254379;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    margin-bottom: 100px;
}

.cta-titulo {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-subtitulo {
    font-size: 18px;
    margin-bottom: 30px;
}

.botao-acao {
    background-color: #ffffff;
    color: #254379;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.botao-acao:hover {
    background-color: #e5e5e5;
    color: #1a2e50;
}









/*PÁGINA DE SISTEMAS*/
.sistemas-hero {
    background-color: #FCFEFC;
    padding: 100px 20px 60px;
    text-align: center;
    width: 100%;
}

.sistemas-container {
    max-width: 960px;
    margin: 0 auto;
}

.sistemas-titulo {
    font-size: 32px;
    color: #0F2C5C;
    margin-bottom: 20px;
}

.sistemas-descricao {
    font-size: 18px;
    color: #254379;
    line-height: 1.6;
}


.clientes-section {
    background-color: #FCFEFC;
    padding: 80px 20px;
    text-align: center;
}

.clientes-titulo {
    font-size: 32px;
    color: #0F2C5C;
    margin-bottom: 40px;
}

.clientes-grid {
    background-color: #FCFEFC;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    align-items: center;
    justify-items: center;
}

.clientes-grid img {
    max-width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.clientes-grid img:hover {
    filter: grayscale(0%);
}

.clientes-paragrafo {
    font-size: 18px;
    color: #254379;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}


@media (max-width: 992px) {
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .clientes-grid {
        grid-template-columns: 1fr;
    }

    .clientes-paragrafo {
        padding: 0 10px;
    }
}



/*Envio-Rápido Section*/
.enviorapido-section {
    background-color: #F5F7FA;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.enviorapido-container {
    background-color: #ffffff;
    max-width: 1240px;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(37, 67, 121, 0.25);
    width: 100%;
    box-sizing: border-box;
}

.enviorapido-titulo {
    font-size: 28px;
    color: #254379;
    margin-bottom: 30px;

}

.enviorapido-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enviorapido-lista li {
    font-size: 16px;
    color: #254379;
    margin-bottom: 18px;
    line-height: 1.6;
    padding-left: 0;
}





/*PÁGINA DE EXERCITO*/
.parceria-exercito {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.parceria-exercito::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/soldados_treinando-banner.png') no-repeat center center/cover;
    z-index: 1;
}

.parceria-exercito::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 77, 50, 0.6);
    z-index: 1;
}

.parceria-content {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    width: 100%;
    padding: 80px 20px;
}

.parceria-titulo {
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: left;
}

.paragrafos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.paragrafos p {
    flex: 1 1 45%;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.parceria-fecho {
    font-size: 18px;
    color: #F2C12E;
    font-weight: 500;
    text-align: left;
}



/*Casos de sucesso Section*/
.casos-sucesso {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.casos-titulo {
    font-size: 32px;
    color: #0F2C5C;
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1240px;
    margin: 0 auto;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.caso-card {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 40px 20px 20px 40px;
    text-align: left;
    color: #254379;
}

.caso-card p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0F2C5C;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
    font-size: 18px;
}

.arrow:hover {
    background-color: #254379;
}

.arrow.prev {
    left: -10px;
}

.arrow.next {
    right: -10px;
}

@media (max-width: 768px) {
    .caso-card {
        flex: 0 0 85%;
    }

    .arrow {
        display: none;
    }
}




/*Compromisso Section*/
.compromisso-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.overlay-compromisso {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    box-sizing: border-box;
    z-index: 1;
}

.compromisso-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    color: #fff;
}

.compromisso-titulo {
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: left;
}

.compromisso-textos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.compromisso-textos p {
    flex: 1 1 45%;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.compromisso-fecho {
    font-size: 18px;
    color: #F2C12E;
    font-weight: 500;
    text-align: left;
}

@media (max-width: 768px) {
    .compromisso-textos {
        flex-direction: column;
    }

    .compromisso-textos p,
    .compromisso-titulo,
    .compromisso-fecho {
        text-align: center;
    }
}




/*Depoimentos Section*/
.depoimentos-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.depoimentos-titulo {
    font-size: 32px;
    color: #0F2C5C;
    margin-bottom: 40px;
}

.depo-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    max-width: 1240px;
    margin: 0 auto;
    scrollbar-width: none;
}

.depo-carousel::-webkit-scrollbar {
    display: none;
}

.depo-card {
    cursor: pointer;
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 12px 12px 0px 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 30px 25px;
    text-align: left;
    color: #333;
}

.depo-text {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.depo-autor {
    font-weight: 500;
    font-size: 14px;
    color: #254379;
}

@media (max-width: 768px) {
    .depo-card {
        flex: 0 0 85%;
    }
}

.depo-carousel {
    cursor: grab;
}

.depo-carousel.grabbing {
    cursor: grabbing;
}



/*Interessado em trabalhar Conosco Section*/
.trabalhe-conosco {
    margin-bottom: 100px;
    padding: 40px;
    justify-content: center;
    text-align: center;
    background: #E2B540;
}


.trabalhe-conosco h2 {
    margin-bottom: 20px;
    color: #0F2C5C;
}



/*Parceria Section*/
.parceria-section {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.overlay-parceria {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    box-sizing: border-box;
    z-index: 1;
}

.parceria-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    color: #fff;
}

.parceria-titulo {
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: left;
}

.parceria-textos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.parceria-textos p {
    flex: 1 1 45%;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.parceria-fecho {
    margin-bottom: 80px;
    font-size: 18px;
    color: #F2C12E;
    font-weight: 500;
    text-align: left;
}

@media (max-width: 768px) {
    .parceria-textos {
        flex-direction: column;
    }

    .parceria-textos p,
    .parceria-titulo,
    .parceria-fecho {
        text-align: center;
    }
}





/*PÁGINA DE CONTATO/ NOSSO SUPORTE*/
.contato-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    font-family: sans-serif;
    color: #0F2C5C;
}

.contato-subtitulo {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}


.formulario-contato {
    flex: 1 1 500px;
}

.formulario-contato h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.formulario-contato h2 span {
    color: #0F2C5C;
}

.formulario-contato form input,
.formulario-contato form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.formulario-contato form input:focus,
.formulario-contato form textarea:focus {
    border-color: #0F2C5C;
    outline: none;
}

.btn-enviar {
    background-color: #0F2C5C;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-enviar:hover {
    background-color: #092044;
}


.info-contato {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
}

.info-contato h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #0F2C5C;
}

.cta-contato {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}


.btn-contato {
    background-color: #0F2C5C;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-contato:hover {
    background-color: #092044;
}


@media (max-width: 768px) {
    .contato-container {
        text-align: center;
        flex-direction: column;
        gap: 50px;
    }

    .formulario-contato h2,
    .info-contato h3,
    .cta-contato p {
        text-align: center;
    }

    .cta-contato {
        text-align: center;
    }
}




/*Contato*/
.whatsapp {
    margin-bottom: 200px;
    background-color: #25427973;
    padding: 30px 25px;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0F2C5C;
    text-align: center;
    margin: 40px auto;
    transition: transform 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.icon-zap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.icon-zap h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    user-select: none;
}

.icon-zap img {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon-zap img:hover {
    transform: rotate(20deg) scale(1.2);
}

.whatsapp p {
    margin: 6px 0;
    font-size: 1.1rem;
    line-height: 1.4;
    user-select: none;
    transition: color 0.25s ease;
}

.whatsapp p:first-of-type {
    font-weight: 600;
    cursor: pointer;
    color: #25D366;
}

.whatsapp p:first-of-type:hover {
    color: #128C7E;
    text-decoration: underline;
}



@media (max-width: 480px) {
    .whatsapp {
        max-width: 90%;
        padding: 25px 20px;
    }

    .icon-zap h2 {
        font-size: 1.5rem;
    }

    .icon-zap img {
        width: 30px;
        height: 30px;
    }

    .whatsapp p {
        font-size: 1rem;
    }
}




/* FOOTER */
.footer {
    background-color: #717171;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 10px;
}

.menu-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}

.footer-section {
    flex: 1 1 180px;
    min-width: 230px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-section h4 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #fff;
}

.footer-section p {
    max-width: 300px;
}

.footer-section p,
.footer-section li,
.footer-section a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    word-break: break-word;
}

.footer-section ul {
    padding: 0;
    list-style: none;
}

.footer-section ul li {
    display: flex;
    align-items: center;
}

.footer-section ul li img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 30px auto 0;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-socials a img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-socials a:hover {
    color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin: 20px 0;
    }

    .footer-section ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Cards responsivos */
    .cards-MV {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

    .Card_MV {
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }
}

/* Garantir layout em linha para telas grandes */
@media (min-width: 769px) {
    .cards-MV {
        flex-direction: row;
        justify-content: center;
    }
    
    .Card_MV {
        flex: 0 0 350px;
        width: 350px;
    }
}

@media (max-width: 480px) {
    .Card_MV {
        padding: 1.5rem;
    }

    .Card_MV h3 {
        font-size: 20px;
    }

    .Card_MV img {
        width: 60px;
        height: 60px;
    }
}