:root {
    --cor-principal: #011127;
    --cor-secundaria: #f58326;
    --fundo-transparente: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #d8dad5;
    background-attachment: fixed;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    background-color: #01112783;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--cor-secundaria);
}


.menu-toggle, .menu-close, .contato-mobile-item {
    display: none;
}

.btn-contato-desktop {
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid var(--cor-secundaria);
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1;
}

.btn-contato-desktop:hover {
    background-color: var(--cor-secundaria);
    color: var(--cor-principal);
}

.hero-section {
    min-height: calc(100vh - 80px);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
    padding: 60px 20px;
    background-image: url('UtilFile/img/fundo_inicio.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 75px;
    border-bottom-right-radius: 75px;
    overflow: hidden; 
}

.hero-content {
    max-width: 900px; 
    color: white;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-around;
}

.hero-content h1 {
    font-size: 4em;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}

.hero-content p {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 650px;
    opacity: 1;
    text-align: center;
}

.btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cor-secundaria);
    color: white;
    font-weight: 900;
    font-size: 2em;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 500px;
    height: 90px;
    box-sizing: border-box;
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* --- SEÇÃO: COMPROMISSO / SOBRE NÓS --- */

.commitment-section {
    background-color: #d8dad5;
    padding: 0px 100px 20px;
}

.commitment-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0;
}

.commitment-left {
    flex: 1;
    max-width: 55%;
}

.commitment-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.commitment-tag {
    color: var(--cor-secundaria);
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.commitment-left h2 {
    color: var(--cor-principal);
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
}

.commitment-text {
    color: #0f4558;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.commitment-header-logo {
    display: flex;
    align-items: center;
    margin: 60px auto 0;
    max-width: 1200px;
    padding: 0 20px;
}

.commitment-logo-img {
    height: 30px; 
    margin-right: 10px;
    flex-shrink: 0;
}

.logo-divider {
    height: 2px;
    width: 100%;
    flex-grow: 1;
    background-color: var(--cor-secundaria); 
    border-radius: 5px;
}

.vantagens-section {
    background-color: var(--cor-principal);
    padding: 80px 20px;
    text-align: center;
}

.vantagens-content-central {
    max-width: 1200px;
    margin: 0 auto;
}

.vantagens-header-central {
    text-align: center;
    margin-bottom: 80px;
}

.vantagens-header-central h2 {
    color: white;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.vantagens-header-central p {
    color: #a0a0a0;
    font-size: 1.1em;
    font-weight: 400;
    margin: 0;
}

.vantagens-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* --- ESTILO DOS CARDS --- */

.vantagem-card {
    background-color: #0d233e;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: left;
    height: 100%;
    transition: transform 0.3s ease; 
}

.vantagem-card:hover {
    transform: translateY(-5px);
}

.vantagem-icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--cor-secundaria);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.vantagem-icon {
    width: 35px;
    height: 35px;
    filter: invert(1);
}

.vantagem-card h3 {
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.vantagem-card p {
    color: #cccccc;
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

/* --- BOTÃO GRANDE CENTRALIZADO --- */

.btn-solicitar-proposta-central {
    background-color: var(--cor-secundaria);
    color: white;
    font-weight: 900;
    font-size: 1.7rem;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 70px;
    text-align: center;
    margin: 0 auto;
}

.btn-solicitar-proposta-central:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-solicitar-proposta-desktop, .btn-solicitar-proposta-mobile {
    display: none !important; 
}

/* --- SEÇÃO DEPOIMENTOS DE CLIENTES --- */

#depoimentos-clientes {
    background-color: #011127;
    color: white;
    padding-bottom: 80px;
}

.depoimentos-carrossel-area {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-image: url('UtilFile/background-carrossel.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

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

.depoimentos-scroller-container {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(
        to right, 
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to right, 
        transparent 0%, 
        black 10%, 
        black 90%, 
        transparent 100%
    );
}

.depoimentos-scroller {
    display: flex;
    width: max-content;
    gap: 30px;
    padding: 0 50px;
}

.depoimento-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.depoimento-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ff9900;
}

.depoimento-texto {
    font-size: 0.95em;
    line-height: 1.5;
    color: #f0f0f0;
}

.depoimentos-content-container {
    text-align: center;
    padding-top: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.depoimentos-subtitulo {
    font-size: 0.9em;
    color: #bbb;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.depoimentos-titulo {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.depoimentos-titulo .destaque-laranja {
    color: #ff9900;
}

.depoimentos-descricao {
    font-size: 1.1em;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 25px;
}

.btn-solicitar-proposta-depoimentos {
    display: inline-block;
    background-color: #ff9900;
    color: #011127;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.btn-solicitar-proposta-depoimentos:hover {
    background-color: #e68a00;
}

/* --- SEÇÃO NOSSA HISTÓRIA --- */

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

.history-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-title {
    color: var(--cor-principal);
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.history-main-content {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 50px;
    text-align: left;
}

.history-text {
    flex: 1;
    max-width: 55%;
    color: #0f4558;
    font-size: 1.1em;
    line-height: 1.6;
}

.history-text p {
    margin-bottom: 20px;
}

.history-text strong {
    font-weight: 700;
    color: var(--cor-principal);
}

.history-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-image-main {
    max-width: 100%;
    height: auto;
}

.history-divider {
    height: 2px;
    width: auto; 
    max-width: 1200px;
    background-color: var(--cor-secundaria); 
    margin: 0 auto;
    border-radius: 5px;
}

/* --- SEÇÃO SOLUÇÕES --- */

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

.solutions-content-central {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-title {
    color: var(--cor-principal);
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.solutions-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.solution-card {
    background-color: var(--cor-principal);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease; 
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon-container {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    border: 3px solid var(--cor-secundaria);
}

.solution-icon {
    width: 45px;
    height: 45px;
    filter: none;
}

.solution-card-title {
    color: white;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.solution-card-text {
    color: #cccccc;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.solutions-divider {
    width: auto;
    max-width: 1200px;
    height: 2px;
    background-color: var(--cor-secundaria);
    margin: 50px auto 0 auto;
    border-radius: 2px;
}

/* --- SEÇÃO PERGUNTAS FREQUENTES (FAQ) --- */

.faq-section {
    background-color: var(--cor-principal); 
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre cada item do FAQ */
}

.faq-item {
    background-color: #0d233e; /* Um tom um pouco mais claro que o fundo */
    border-radius: 8px;
    overflow: hidden; /* Importante para o efeito sanfona */
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover, .faq-item.active .faq-question {
    background-color: #14355f; 
}

/* Estilo do Ícone (seta) */
.faq-icon {
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white; 
    transition: transform 0.3s ease;
}

/* Rotação do ícone quando ativo */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    border-top: 6px solid var(--cor-secundaria); 
}

/* Conteúdo da Resposta */
.faq-answer {
    max-height: 0;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    overflow: hidden;
    background-color: #081d33; /* Fundo diferente para a resposta */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Um valor alto o suficiente para caber o texto */
    padding: 15px 25px 20px;
}

.faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.5;
    color: #cccccc;
}

/* --- SEÇÃO CONTATO --- */

.contact-section {
    background-color: var(--cor-principal); 
    padding: 80px 20px;
    color: white;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coluna da Esquerda (Info) */
.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-title {
    font-size: 3em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-description {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #cccccc;
}

.contact-description strong {
    color: var(--cor-secundaria);
    font-weight: 700;
}

.btn-fale-conosco {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cor-secundaria);
    color: white;
    font-weight: 700;
    font-size: 1.5em;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.btn-fale-conosco:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.btn-fale-conosco .fab {
    margin-right: 10px;
    font-size: 1.2em;
}

.contact-phone {
    font-size: 1.1em;
    color: #999999;
    margin-top: 20px;
}

/* Coluna da Direita (Formulário) */
.contact-form-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3); /* Cor do campo com transparência */
    color: white;
    font-size: 1em;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 2px var(--cor-secundaria);
}

.form-textarea {
    resize: vertical;
    min-height: 180px; /* Altura do campo de texto conforme a imagem */
}

/* --- ESTILO DO BOTÃO DE SUBMISSÃO --- */

.btn-submit {
    /* Herda o estilo do .btn-cta, mas ajusta para o contexto do formulário */
    width: 100%;
    height: 60px;
    font-size: 1.5em;
    margin-top: 5px; /* Pequeno espaçamento */
    cursor: pointer;
}

.btn-submit:disabled {
    background-color: #555; /* Cor cinza/escura quando desabilitado */
    opacity: 0.6;
    cursor: not-allowed;
    transform: none; /* Remove efeito de hover/press em estado desabilitado */
    box-shadow: none;
}

.btn-submit:disabled:hover {
    opacity: 0.6;
    transform: none;
}

/* --- ESTILO DO FOOTER (RODAPÉ) --- */

.footer {
    background-color: var(--cor-principal);
    padding: 60px 20px;
    color: white;
}

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

.footer-col {
    flex: 1;
    min-width: 200px; /* Garante que as colunas não fiquem muito estreitas */
}

/* --- Coluna 1: Info e Social --- */

.footer-col-info {
    max-width: 350px;
    flex: 1.5;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-ratings {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

/* --- Coluna 2 e 3: Links --- */

.footer-col-links, .footer-col-contato {
    min-width: 180px;
    padding-top: 20px; /* Alinha o conteúdo com a base do logo */
}

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

.footer-list li {
    margin-bottom: 15px;
    font-size: 1em;
}

.footer-list a {
    color: #cccccc;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-list a:hover {
    color: var(--cor-secundaria);
}

.cnpj {
    color: #cccccc;
    font-size: 0.9em;
    margin-top: 25px;
}

.btn-central-ajuda {
    display: inline-block;
    background-color: var(--cor-secundaria);
    color: white;
    font-weight: 700;
    font-size: 1em;
    padding: 12px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.btn-central-ajuda:hover {
    opacity: 0.9;
}

/* --- NOVO ESTILO PARA AS ESTRELAS (IMAGEM PNG) --- */

.star-icon {
    width: 18px; /* Tamanho padrão da estrela */
    height: 18px; 
    vertical-align: middle; /* Alinha a imagem verticalmente */
    margin: 0 1px; /* Espaçamento entre estrelas */
}

/* Ajuste para o tamanho no RODAPÉ */
.footer-stars .star-icon {
    width: 25px; /* Tamanho maior no rodapé */
    height: 25px;
    margin: 0 2px;
}

/* Removemos o estilo de cor que era aplicado ao Font Awesome */
.depoimento-estrelas {
    /* Cor não é mais necessária, pois está na imagem */
    margin-bottom: 10px;
    font-size: 1.1em; /* Mantenha para espaçamento, mas o tamanho é definido pelo .star-icon */
}

.footer-stars {
    /* Cor não é mais necessária, pois está na imagem */
    font-size: 1.2em; /* Mantenha para espaçamento */
    margin-bottom: 20px;
}

/* --- RESPONSIVIDADE --- */

@media (max-width: 1200px) {
    .depoimentos-scroller {
        padding: 0 30px;
    }
}

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

    .solutions-grid-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
    }

    .solution-card-title {
        font-size: 1.4em; /* Ajuste para telas menores */
    }

    .solution-card-text {
        font-size: 0.95em; /* Ajuste para telas menores */
    }
}

@media (max-width: 1024px) {
    .parceiros-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .depoimentos-titulo {
        font-size: 2.3em;
    }

    .depoimento-card {
        min-width: 250px;
        max-width: 280px;
    }

    .depoimentos-scroller {
        gap: 20px;
        animation-duration: 40s;
    }
}

@media (max-width: 900px) {
    
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    
    .icon-menu {
        width: 30px;
        height: 30px;
        filter: invert(1);
    }

    .btn-contato-desktop, .nav-list {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--cor-principal);
        z-index: 999;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .icon-close {
        width: 30px;
        height: 30px;
        filter: invert(0);
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 0;
    }

    .nav-list a {
        color: white;
        font-size: 24px;
        font-weight: 700;
        padding: 10px;
    }

    .contato-mobile-item {
        display: block;
        margin-top: 20px;
    }

    .btn-contato-mobile {
        color: white;
        border: 2px solid var(--cor-secundaria);
        padding: 10px 30px;
        border-radius: 5px;
        transition: background-color 0.3s;
        font-size: 20px;
    }

    .btn-contato-mobile:hover {
        background-color: var(--cor-secundaria);
        color: var(--cor-principal);
    }

    /* RESPONSIVIDADE PARA A SEÇÃO COMPROMISSO */

    .commitment-section {
        padding: 60px 20px;
    }

    .commitment-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .commitment-left, .commitment-right {
        max-width: 100%;
    }
    
    .commitment-left h2 {
        font-size: 2em;
    }

    .commitment-right {
        max-width: 80%;
    }

    .mockup-img {
        width: 100%;
    }

    .commitment-tag, .commitment-left h2 {
        text-align: center;
    }

    .commitment-header-logo {
        width: 100%;
        margin: 60px auto 0;
        padding: 0 0 0 20px;
        justify-content: flex-start; 
    }

    .history-main-content {
        flex-direction: column;
        gap: 40px;
    }

    .history-text, .history-image {
        max-width: 100%;
    }

    .history-text {
        text-align: left;
    }

    .history-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .contact-info, .contact-form-container {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .contact-info {
        order: 2; /* Move as info para baixo no mobile */
    }

    .contact-form-container {
        order: 1; /* Move o formulário para cima no mobile */
    }
    
    .contact-title {
        font-size: 2.5em;
    }

    .contact-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .btn-fale-conosco {
        width: 100%;
        max-width: 300px;
        font-size: 1.3em;
    }

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

    .footer-col {
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px;
        padding-top: 0;
    }
    
    .footer-col-info {
        max-width: 400px;
        order: 1; /* Mantém a logo no topo */
    }

    .footer-col-links {
        order: 2; /* Links de info no meio */
    }
    
    .footer-col-contato {
        order: 3; /* Contato por último */
    }

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

    .footer-list {
        text-align: center;
    }

    .footer-list li {
        margin-bottom: 10px;
    }

    .cnpj {
        margin-top: 15px;
    }
    
    .btn-central-ajuda {
        width: 100%;
        max-width: 300px;
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .btn-cta {
        font-size: 1.1em;
        min-width: 200px;
        height: 50px;
    }

    .depoimentos-carrossel-area {
        height: 280px;
    }

    .depoimentos-titulo {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .depoimentos-descricao {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .depoimento-card {
        min-width: 220px;
        max-width: 250px;
        height: 170px;
        padding: 15px;
    }

    .depoimento-avatar {
        width: 60px;
        height: 60px;
    }

    .depoimento-texto {
        font-size: 0.9em;
    }

    .depoimentos-scroller {
        padding: 0 20px;
        animation-duration: 50s;
    }

    .solutions-section {
        padding: 60px 20px;
    }
    
    .solutions-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .solution-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .solution-icon {
        width: 40px;
        height: 40px;
    }

    .solution-card-title {
        font-size: 1.3em;
    }

    .solution-card-text {
        font-size: 0.9em;
    }

    .faq-title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
}

@media (max-width: 650px) {
    .vantagens-grid-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vantagens-header-central h2 {
        font-size: 2em;
    }

    .btn-solicitar-proposta-central {
        font-size: 1.5em;
        width: 100%;
        max-width: 300px;
        height: 60px;
    }

    .solutions-grid-cards {
        grid-template-columns: 1fr;
    }
    
    .solutions-title {
        font-size: 1.8em;
    }

    .solution-card {
        padding: 30px 20px;
    }

    .solution-card-title {
        font-size: 1.2em;
    }

    .solution-card-text {
        font-size: 0.85em;
    }
}

@media (max-width: 600px) {
    .history-section {
        padding: 60px 20px;
    }
    
    .history-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-section {
        min-height: calc(80vh - 80px);
    }

    .depoimentos-carrossel-area {
        height: 250px;
    }

    .depoimentos-titulo {
        font-size: 1.5em;
    }

    .depoimento-card {
        min-width: 180px;
        max-width: 200px;
        height: 160px;
        padding: 10px;
    }

    .depoimento-avatar {
        width: 50px;
        height: 50px;
    }

    .depoimento-estrelas {
        font-size: 0.9em;
    }

    .depoimento-texto {
        font-size: 0.85em;
    }

    .btn-solicitar-proposta-depoimentos {
        padding: 12px 25px;
        font-size: 1em;
    }
}