/* FONTES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    overflow-x: hidden; /* Garante que não haverá barra de rolagem horizontal indesejada */
}

/* CONFIGURAÇÕES GERAIS */
h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #FFFF;
    line-height: 1.05;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #81aaf7;
    line-height: 1.5;
    margin: 2rem 0;
}

/* HERO */
.hero {
    width: 100vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; /* Centraliza o conteúdo horizontalmente */
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 5%;
    border-bottom-right-radius: 5%;
}

.hero-container {
    width: 75%;
    flex: 1;
    display: flex; /* Permite que o conteúdo e a imagem fiquem lado a lado */
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center; /* Centraliza a imagem verticalmente */
    justify-content: center;
}

.hero-image img {
    width: 100%;
}

/* BARRA DE NAVEGAÇÃO */
.navbar {
    width: 75%;
    height: 80px;
    display: flex; /* Permite que os itens da navbar fiquem lado a lado */
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    background-color: transparent;
}

.navbar-links {
    width: 100%;
    display: flex;
    align-items: center; /* Centraliza os links verticalmente */
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.navbar-links a {
    text-decoration: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-links a:hover {
    color: #81aaf7;
}

.navbar-cta {
    text-decoration: none;
    background-color: #fff;
    color: #234a94;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(35, 74, 148, 0.15);
    transition: 0.3s;
}

.navbar-cta:hover {
    background-color: #3774e6;
    color: #fff;
    transform: translateY(-5px);
}

.navbar-brand {
    width: 100%; /* Ajusta a largura automaticamente */
}

.navbar-logo {
    width: 40%;
}

.navbar-actions {
    width: 100%;
    display: flex; /* Permite que o botão de ação seja alinhado */
    justify-content: flex-end;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.navbar-toggle:hover {
    color: #81aaf7;
}

/* BOTÕES */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Peso da fonte para botões */
    margin-right: 1rem;
    transition: 0.3s;
}

.btn-session {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Peso da fonte para botões */
    margin-right: 1rem;
    transition: 0.3s;
    background-color: #234a94;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-session:hover {
    background-color: #3774e6;
    color: #fff;
    box-shadow: 0 6px 20px rgba(129, 170, 247, 0.3);
    transform: translateY(-5px);
}

.btn:first-of-type {
    background-color: #fff;
    color: #234a94;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:first-of-type:hover {
    background-color: #3774e6;
    color: #fff;
    box-shadow: 0 6px 20px rgba(129, 170, 247, 0.3);
    transform: translateY(-5px);
}

.btn:last-of-type {
    border: 2px solid #fff;
    color: #fff;
}

.btn:last-of-type:hover {
    background-color: #fff;
    color: #234a94;
    transform: translateY(-5px);
}

/* SEÇÃO BENEFÍCIOS */
.beneficios {
    padding: 100px 0;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo */
    background-color: #f8faff;
}

.beneficios-container {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.beneficio-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35, 74, 148, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(129, 170, 247, 0.1); /* Borda sutil */
    display: flex;
    flex-direction: column;
}

.beneficio-card i {
    font-size: 3rem; /* Tamanho do ícone */
    color: #234a94; /* Cor primária */
    margin-bottom: 1rem; /* Espaçamento entre o ícone e o título */
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(35, 74, 148, 0.12);
}

.beneficio-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #234a94;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.beneficio-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #556b8d; /* Tom de azul acinzentado para melhor leitura em fundo branco */
    line-height: 1.6;
    margin: 0; /* Resetando o margin global de 2rem */
}

/* SEÇÃO MÓDULOS */
.modulos {
    padding: 100px 0;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo */
    background-color: #fff;
}

.modulos-container {
    width: 75%;
}

.modulos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modulos-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #234a94;
    margin-bottom: 1rem;
}

.modulos-header p {
    color: #556b8d;
    margin: 0;
}

.modulos-wrapper {
    display: flex; /* Permite que as abas e o conteúdo fiquem lado a lado */
    gap: 4rem;
    min-height: 450px;
}

.modulos-tabs {
    flex: 1;
    list-style: none;
    display: flex; /* Organiza os itens da aba verticalmente */
    flex-direction: column;
    gap: 0.5rem;
}

.tab-item {
    padding: 1rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #556b8d;
    background-color: #f8faff;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

.tab-item:hover {
    background-color: #eef3ff;
    color: #234a94;
    box-shadow: 0 4px 10px rgba(35, 74, 148, 0.05);
}

.tab-item.active {
    background-color: #234a94;
    color: #fff;
    border-left: 4px solid #81aaf7;
    box-shadow: 0 8px 25px rgba(35, 74, 148, 0.25);
}

.modulos-display {
    flex: 1.5;
    background-color: #f8faff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(35, 74, 148, 0.12);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

.pane-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #234a94;
    margin-bottom: 1.5rem;
}

.pane-content p {
    color: #556b8d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.pane-list {
    list-style: none;
    padding: 0;
}

.pane-list li {
    font-family: 'Inter', sans-serif;
    color: #556b8d;
    margin-bottom: 0.8rem;
    display: flex; /* Alinha o ícone de checkmark com o texto */
    align-items: center;
}

.pane-list li::before {
    content: '✓';
    color: #234a94;
    font-weight: bold;
    margin-right: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* SEÇÃO SEGMENTOS */
.segmentos {
    padding: 100px 0;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo */
    background-color: #f8faff; /* Um fundo levemente diferente para destacar */
}

.segmentos-container {
    width: 75%;
    display: flex;
    align-items: center; /* Alinha verticalmente os itens */
    gap: 4rem; /* Espaço entre o conteúdo e a imagem */
}

.segmentos-content {
    flex: 1; /* Ocupa o espaço disponível */
}

.segmentos-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #234a94;
    margin-bottom: 1.5rem;
}

.segmentos-content p {
    color: #556b8d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    /* Resetando o margin global de 2rem para este parágrafo */
    margin-top: 0; 
}

.segmentos-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.segmentos-list li {
    font-family: 'Inter', sans-serif;
    color: #556b8d;
    margin-bottom: 0.8rem;
    display: flex; /* Alinha o ícone de checkmark com o texto */
    align-items: center;
    font-size: 1rem;
}

.segmentos-list li::before {
    content: '✓';
    color: #81aaf7; /* Cor de destaque para o checkmark */
    font-weight: bold;
    margin-right: 10px;
}

.segmentos-image {
    flex: 1; /* Ocupa o espaço disponível */
    display: flex;
    justify-content: center; /* Centraliza a imagem */
    align-items: center;
}

.segmentos-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Borda arredondada para a imagem */
}

/* Ajustes para o botão CTA na seção de segmentos */
.segmentos-content .btn {
    margin-right: 0; /* Remove a margem direita se houver apenas um botão */
    background-color: #234a94; /* Cor primária para o CTA */
    color: #fff;
    box-shadow: 0 6px 20px rgba(35, 74, 148, 0.25);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.segmentos-content .btn:hover {
    background-color: #1a3a7a; /* Escurece no hover */
    box-shadow: 0 8px 25px rgba(35, 74, 148, 0.35);
}

/* SEÇÃO VISÃO GERAL */
.visao-geral {
    padding: 100px 0;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo */
    background-color: #fff; /* Fundo branco para alternar com a seção anterior */
}

.visao-geral-container {
    width: 75%;
    display: flex;
    align-items: center;
    gap: 4rem; /* Espaço entre o conteúdo e a imagem */
}

.visao-geral-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visao-geral-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.visao-geral-content {
    flex: 1;
}

.visao-geral-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #234a94;
    margin-bottom: 1.5rem;
}

.visao-geral-content p {
    color: #556b8d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.visao-geral-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.visao-geral-list li {
    font-family: 'Inter', sans-serif;
    color: #556b8d;
    margin-bottom: 0.8rem;
    display: flex; /* Alinha o ícone de checkmark com o texto */
    align-items: center;
    font-size: 1rem;
}

.visao-geral-list li::before {
    content: '✓';
    color: #81aaf7;
    font-weight: bold;
    margin-right: 10px;
}

.visao-geral-content .btn {
    margin-right: 0;
    background-color: #234a94;
    color: #fff;
    box-shadow: 0 6px 20px rgba(35, 74, 148, 0.25);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.visao-geral-content .btn:hover {
    background-color: #1a3a7a;
    box-shadow: 0 8px 25px rgba(35, 74, 148, 0.35);
}

/* FOOTER */
.footer {
    background-color: #234a94;
    padding: 80px 0 30px;
    display: flex; /* Permite organizar o conteúdo do footer */
    flex-direction: column;
    align-items: center;
}

.footer-container {
    width: 75%;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr; /* Define as colunas do grid */
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 50%;
    margin-bottom: 1.5rem;
} /* Ajusta o tamanho do logo no footer */

.footer-description {
    color: #81aaf7;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    max-width: 65%;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
} /* Remove o estilo padrão da lista */

.footer-column ul li {
    color: #81aaf7;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    width: 75%;
    border-top: 1px solid rgba(129, 170, 247, 0.2);
    padding-top: 2rem; /* Espaçamento superior */
    text-align: center;
}

.footer-bottom p {
    color: #81aaf7;
    font-size: 0.85rem;
    margin: 0;
}

/* SEÇÃO DEPOIMENTOS */
.depoimentos {
    padding: 100px 0;
    display: flex;
    flex-direction: column; /* Organiza o conteúdo verticalmente */
    align-items: center;
    background-color: #f8faff; /* Fundo leve para destacar do branco da seção anterior */
}

.depoimentos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.depoimentos-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #234a94;
    margin-bottom: 1rem;
}

.depoimentos-header p {
    color: #556b8d;
    margin: 0;
}

.depoimentos-container {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Grid responsivo para cards */
    gap: 2rem;
}

.depoimento-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35, 74, 148, 0.05);
    display: flex;
    flex-direction: column; /* Organiza o conteúdo do card verticalmente */
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(129, 170, 247, 0.1);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(35, 74, 148, 0.1);
}

.depoimento-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #556b8d;
    line-height: 1.6;
    margin: 0 0 2rem 0; /* Resetando o margin global e adicionando apenas no bottom */
}

.depoimento-author strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #234a94;
}

.depoimento-author span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #81aaf7;
}

/* SEÇÃO FAQ */
.faq {
    padding: 100px 0;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo */
    background-color: #fff;
}

.faq-container {
    width: 75%;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #234a94;
    margin-bottom: 1rem;
}

.faq-header p {
    color: #556b8d;
    margin: 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex; /* Organiza os itens da FAQ verticalmente */
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background-color: #f8faff;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(129, 170, 247, 0.1);
}

.faq-item[open] {
    box-shadow: 0 10px 25px rgba(35, 74, 148, 0.08);
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #234a94;
    list-style: none; /* Remove o marcador padrão da lista */
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(129, 170, 247, 0.2);
    animation: fadeIn 0.4s ease forwards;
}

.faq-answer p {
    font-size: 1rem;
    color: #556b8d;
    margin: 0;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* Tablets e Desktops Menores (max-width: 992px) */
@media (max-width: 992px) {
    /* Configurações Gerais */
    h1 {
        font-size: 48px;
    }

    p {
        font-size: 16px;
    }

    .hero-container,
    .navbar,
    .beneficios-container,
    .modulos-container,
    .segmentos-container,
    .visao-geral-container,
    .depoimentos-container,
    .faq-container,
    .footer-container,
    .footer-bottom {
        width: 90%; /* Aumenta a largura para ocupar mais espaço em telas menores */
    }

    /* Hero Section */
    .hero {
        height: auto; /* Altura automática para se ajustar ao conteúdo */
        padding-bottom: 4rem;
    }

    .hero-container {
        flex-direction: column; /* Empilha o conteúdo e a imagem verticalmente */
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-image {
        order: 1; /* Coloca a imagem antes do conteúdo em telas menores */
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 80%;
    }

    .btn {
        margin: 0.5rem; /* Ajusta margem para botões empilhados */
    }

    /* Navbar */
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 1.5rem 0;
        position: relative;
        z-index: 1000;
    }

    .navbar-brand {
        width: auto;
        margin-bottom: 0;
    }

    .navbar-logo {
        width: 150px; /* Tamanho fixo para o logo */
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none; /* Esconde os links de navegação para telas menores */
        width: 100%;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1.5rem;
        background-color: rgba(35, 74, 148, 0.98);
        padding: 2rem;
        border-radius: 15px 15px 0 0;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .navbar-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .navbar-actions {
        display: none;
        width: 100%;
        justify-content: center;
        margin-top: 0;
        border-radius: 0 0 15px 15px;
        background-color: rgba(35, 74, 148, 0.98);
        padding: 25px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    }

    .navbar.active .navbar-links,
    .navbar.active .navbar-actions {
        display: flex;
    }

    /* Beneficios Section */
    .beneficios-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajusta o min-width dos cards */
    }

    /* Modulos Section */
    .modulos-wrapper {
        flex-direction: column; /* Empilha as abas e o conteúdo */
        gap: 2rem;
    }

    .modulos-tabs {
        flex-direction: row; /* Abas em linha para melhor uso do espaço */
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-item {
        flex: 1 1 auto; /* Permite que os itens da aba se ajustem */
        text-align: center;
        border-left: none;
        border-bottom: 4px solid transparent;
    }

    .tab-item.active {
        border-left: none;
        border-bottom: 4px solid #81aaf7;
    }

    .modulos-display {
        padding: 2rem;
    }

    /* Segmentos e Visão Geral Sections */
    .segmentos-container,
    .visao-geral-container {
        flex-direction: column; /* Empilha o conteúdo e a imagem */
        text-align: center;
    }

    .segmentos-image,
    .visao-geral-image {
        order: 1; /* Imagem antes do conteúdo */
        margin-bottom: 2rem;
    }

    .segmentos-content,
    .visao-geral-content {
        margin-top: 2rem;
    }

    /* Depoimentos Section */
    .depoimentos-container {
        grid-template-columns: 1fr; /* Uma coluna para os depoimentos */
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr; /* Uma coluna para o footer */
        text-align: center;
    }

    .footer-logo {
        width: 150px;
        margin: 0 auto 1.5rem auto; /* Centraliza o logo */
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-column ul {
        padding-left: 0;
    }
}

/* Celulares (max-width: 576px) */
@media (max-width: 576px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .beneficios-container {
        grid-template-columns: 1fr; /* Uma coluna para os benefícios */
    }

    .beneficio-card {
        padding: 1.5rem;
    }

    .modulos-tabs {
        flex-direction: column; /* Abas empilhadas verticalmente */
    }

    .tab-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .modulos-display {
        padding: 1.5rem;
    }

    .pane-content h3 {
        font-size: 1.5rem;
    }

    .pane-content p {
        font-size: 1rem;
    }

    .segmentos-content p,
    .visao-geral-content p {
        font-size: 1rem;
    }

    .depoimento-card p {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column ul li,
    .footer-description,
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

.faq-item[open] {
    box-shadow: 0 10px 25px rgba(35, 74, 148, 0.08);
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #234a94;
    list-style: none;
    list-style: none; /* Remove o marcador padrão da lista */
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(129, 170, 247, 0.2);
    animation: fadeIn 0.4s ease forwards;
}

.faq-answer p {
    font-size: 1rem;
    color: #556b8d;
    margin: 0;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* Tablets e Desktops Menores (max-width: 992px) */
@media (max-width: 992px) {
    /* Configurações Gerais */
    h1 {
        font-size: 48px;
    }

    p {
        font-size: 16px;
    }

    .hero-container,
    .navbar,
    .beneficios-container,
    .modulos-container,
    .segmentos-container,
    .visao-geral-container,
    .depoimentos-container,
    .faq-container,
    .footer-container,
    .footer-bottom {
        width: 90%; /* Aumenta a largura para ocupar mais espaço em telas menores */
    }

    /* Hero Section */
    .hero {
        height: auto; /* Altura automática para se ajustar ao conteúdo */
        padding-bottom: 4rem;
    }

    .hero-container {
        flex-direction: column; /* Empilha o conteúdo e a imagem verticalmente */
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-image {
        order: 1; /* Coloca a imagem antes do conteúdo em telas menores */
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 80%;
    }

    .btn {
        margin: 0.5rem; /* Ajusta margem para botões empilhados */
    }

    /* Navbar */
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 1.5rem 0;
        position: relative;
        z-index: 1000;
    }

    .navbar-brand {
        width: auto;
        margin-bottom: 0;
    }

    .navbar-logo {
        width: 150px; /* Tamanho fixo para o logo */
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        display: none; /* Esconde os links de navegação para telas menores */
        width: 100%;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .navbar-actions {
        display: none;
        width: 100%;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .navbar.active .navbar-links,
    .navbar.active .navbar-actions {
        display: flex;
    }

    /* Beneficios Section */
    .beneficios-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajusta o min-width dos cards */
    }

    /* Modulos Section */
    .modulos-wrapper {
        flex-direction: column; /* Empilha as abas e o conteúdo */
        gap: 2rem;
    }

    .modulos-tabs {
        flex-direction: row; /* Abas em linha para melhor uso do espaço */
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-item {
        flex: 1 1 auto; /* Permite que os itens da aba se ajustem */
        text-align: center;
        border-left: none;
        border-bottom: 4px solid transparent;
    }

    .tab-item.active {
        border-left: none;
        border-bottom: 4px solid #81aaf7;
    }

    .modulos-display {
        padding: 2rem;
    }

    /* Segmentos e Visão Geral Sections */
    .segmentos-container,
    .visao-geral-container {
        flex-direction: column; /* Empilha o conteúdo e a imagem */
        text-align: center;
    }

    .segmentos-image,
    .visao-geral-image {
        order: 1; /* Imagem antes do conteúdo */
        margin-bottom: 2rem;
    }

    .segmentos-content,
    .visao-geral-content {
        margin-top: 2rem;
    }

    /* Depoimentos Section */
    .depoimentos-container {
        grid-template-columns: 1fr; /* Uma coluna para os depoimentos */
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr; /* Uma coluna para o footer */
        text-align: center;
    }

    .footer-logo {
        width: 150px;
        margin: 0 auto 1.5rem auto; /* Centraliza o logo */
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-column ul {
        padding-left: 0;
    }
}

/* Celulares (max-width: 576px) */
@media (max-width: 576px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .beneficios-container {
        grid-template-columns: 1fr; /* Uma coluna para os benefícios */
    }

    .beneficio-card {
        padding: 1.5rem;
    }

    .modulos-tabs {
        flex-direction: column; /* Abas empilhadas verticalmente */
    }

    .tab-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .modulos-display {
        padding: 1.5rem;
    }

    .pane-content h3 {
        font-size: 1.5rem;
    }

    .pane-content p {
        font-size: 1rem;
    }

    .segmentos-content p,
    .visao-geral-content p {
        font-size: 1rem;
    }

    .depoimento-card p {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column ul li,
    .footer-description,
    .footer-bottom p {
        font-size: 0.8rem;
    }
}