:root {
    --background: #f0f4f8; /* Alterado para combinar com neomorphism.css */
    --background-orange: #f7b90f;
    --squad-block: #ffb508;
    --title-block: #254061;
    --white-block: #345a88;
    --black-block: #3d6aa1;
    --beige-block: #5485c0;
    --pink-block: #89aad3;
    --text-primary: #2d3748;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --bg-secondary: #ffffff;
    --background-color: #f5f7fa;
    --box-shadow-soft: 0 4px 8px rgba(0, 0, 0, 0.08);
    --accent-color: #0a2b4e;
    --box-shadow: 5px 5px 10px var(--shadow-light), -5px -5px 10px var(--bg-secondary);
    --borders-color: #546587;
    --padding-lateral-corpo: 20px; /* Nova variável para padding em vez de borda fixa */
    --primary-dark: #1557b1;
    --border-input: #b2b4b88a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--text-primary); /* Cor de texto padrão */
    /* line-height: 1.6; Melhor legibilidade */
    /* max-width: 80vw; */
    /* width: 1200px; */
    margin: 0 auto;
    /* background-color: var(--borders-color); */
}

/* .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background);
} */

.container.geral { /* Renomeei para evitar conflito se .container for usado de forma genérica */
    width: 900px;
    max-width: 100%; /* Largura máxima do conteúdo central */
    margin: 0 auto;
    background-color: var(--background);
}

/* Cabeçalho do Site */
.site-header {
    background-color: var(--background-color);
    padding: 10px 0;
    box-shadow: var(--box-shadow-soft);
    position: fixed;
    width: 100%;
    top: 0;
    margin-bottom: 30px; /* Espaço entre header e conteúdo principal */
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px; /* Para alinhar com o .container.geral */
    margin: 0 auto;
    /* padding: 0 20px; Padding interno no header */
    text-align: center;
}

.logoSm {
    max-width: 10rem;
    height: auto;
}

.site-nav .btn-cta-header {
    background-color: #f8b74ee3;
    color: var(--color-white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: var(--border-radius-base);
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
    /* border: 1px solid #f8b74eef; */
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Container Principal */
.pagina-index-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* padding: 1rem; */
    color: black;
    padding-top: 80px; /* Espaço para o header fixo (altura aproximada do header) */
    /* Este container pode ter as "bordas coloridas" como padding ou um wrapper interno */
    /* background-color: var(--background); */
}

.corpo {
    /* width: 60%; */
    /* margin: 0 auto; */
    width: 100%; /* Ocupa a largura do seu container pai */
    /* max-width: 1200px; Uma largura máxima para o conteúdo central legível */
    max-width: 1000px; /* Uma largura máxima para o conteúdo central legível */
    margin: 0 auto;
    /*padding: 20px; /* Padding interno para o conteúdo não colar nas bordas */
    /*background-color: #fff; /* Fundo para o conteúdo principal se as "bordas" forem o body */
    background-color: var(--borders-color);
}

.topColor {
    color: var(--bg-secondary);
    text-align: center;
    background-color: var(--borders-color);
    height: 260px;
    padding-top: 6rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.topColor-index {
    padding-top: 6.8rem;
    font-size: 1.1rem;
}

.topColor h1 { /* Se h1 estiver dentro de .topColor */
    font-size: 1.3rem; /* Ajustar se necessário */
    line-height: 1.2;
    color: inherit; /* Herdar cor do pai (.topColor) */
    margin-bottom: 10px;
    max-width: 560px;
    margin: 0 auto;
}

.topColor-index h1 { /* Se h1 estiver dentro de .topColor */
    font-size: 1.3rem; /* Ajustar se necessário */
    margin-bottom: 10px;
}

.description1 {
    line-height: 1.2;
    background-color: var(--background-orange);
    padding: 20px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    max-width: 530px;
    box-shadow: var(--box-shadow);
    color: var(--background);
    font-weight: 700;
    /* margin: 0 auto; */
    text-align: center;
    /* margin-bottom: 20px; */
    margin-top: -3rem !important;
    margin: 20px auto 40px auto; /* Ajustar margens */
}

.description1Pad {
    max-width: 530px;
}

/* Container Principal */
.index-container1 {
    padding: 0;
    color: black;
}

/* Login e Cadastro */
.cadastro-container {
    max-width: 500px;
    padding: 1rem 0 2rem 0;
    text-align: center;
    margin: 0 auto;
}

.cadastro-form {
    padding: 1rem 2rem 2rem 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    margin: 0 auto;
}

.login-container {
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
}

.login-form,
.cadastro-form {
    padding: 1rem 2rem 2rem 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    margin: 0 auto;
}

/* Formulários */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--borders-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
}

input[type="checkbox"] {
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    transform: scale(1.7);
    /* width: 18px;
    height: 18px; */
}

.form-links {
    margin-top: 1rem;
    text-align: center;
}

button, .btn-primary, .btn-secondary {
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Bloco Lateral de Informações */
.sidebar-info {
    padding: .5rem 1rem;
    background-color: var(--borders-color);
    border-radius: 0 50px 50px 0;
    font-size: 1.2rem;
    Color: #fff;
    font-weight: 700;
    /* width: 35rem; */
    width: auto; /* Deixar automático e controlar com max-width se necessário */
    max-width: fit-content; /* Limitar largura em telas maiores */
    margin: 0 20px 10px 0; /* Espaço abaixo */
}

.sidebar-info p { /* Para garantir que o texto não quebre estranho */
    word-break: break-word;
}

.avalComp {
    color: var(--borders-color);
    font-weight: 700;
    /* margin-left: 4rem; */
    font-size: 1.2rem;
    /* max-width: 600px; */
    max-width: 100%;
    margin: 1rem 0 1rem 3rem;
}

.avalComp ul li {
    margin-bottom: 8px; /* Espaço entre itens da lista */
    padding-left: 20px; /* Espaço para o marcador */
    position: relative;
}

.avalComp ul li::before { /* Adicionar marcadores personalizados */
    /* content: "\2022"; Bullet point */
    color: var(--borders-color); /* Cor do marcador */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.2em; /* Alinhar com o texto */
    position: absolute;
    left: 0;
}

.seguir {
    width: 100%;
    /* margin: 0 auto; */
    text-align: center; /* Centralizar o botão */
    margin: 40px 0;*/
}

.btn-secondary {
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    /* transition: all var(--transition-speed); */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Melhorar transição */ 
    /* display: block; */
    display: inline-block; /* Para respeitar text-align: center do pai */
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    background-color: var(--background-orange);
    color: var(--background);
    max-width: 300px;
    text-align: center;
    font-weight: 600;
    margin-top: 57px;
    box-shadow: var(--box-shadow);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

.payment {
    display: flex;
    gap: 41px;
    color: var(--borders-color);
    font-size: 1.2rem;
    font-weight: 700;
    align-items: start;
    line-height: 1.2;
    margin: 88px 0;
    justify-content: center;
    flex-wrap: wrap; /* Permitir quebra de linha em telas menores */
    text-align: center; /* Centralizar texto dentro de cada item */
}

.payment > * { /* Para cada filho direto do .payment */
    margin-bottom: 15px; /* Adicionar margem inferior para quando quebrar linha */
}

/* .paymentCompl {
    margin-top: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    align-items: start;
}

.paymentCompl2 {
    margin-top: 0rem;
} */

.payment .fa-solid, .payment .fa-pix {
    color: var(--borders-color);
    font-size: 3rem;
    margin-bottom: 5px; /* Espaço abaixo do ícone */
}

.cache {  /* Link do coupon e cifrão */
    display: grid;
    font-size: .7rem;
    text-decoration: none;
    text-align: center;
    color: var(--borders-color);
    width: 65px;
    flex-direction: column;
    align-items: center;
}

.cache i { /* Ícone dentro do .cache */
    font-size: 2rem; /* Ajustar tamanho do ícone específico */
    margin-bottom: 3px;
}

/* FOOTER */
.final.corpo { /* Seção final com logo e texto */
    text-align: center;
    margin-top: 30px;
    padding-bottom: 20px;
}

.logoFooter {
    width: 10rem;
    margin-top: 30px !important;
    margin: 0 auto;
}

/* .final p {
    text-align: center;
}

.final img {
    justify-content: center;
    display: flex;
} */

.final.corpo p { /* Texto abaixo do logo no footer */
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 5px;
}

footer.bottomColor { /* Rodapé final com copyright */
    /* border-bottom: 50px solid var(--borders-color);  Remover, a cor virá do background */
    background-color: var(--borders-color);
    color: #ffffff; /* Texto claro no fundo escuro */
    padding: 15px 0; /* Ajustar padding */
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto; /* Empurra o footer para o final se o conteúdo for curto */
}

/* .ajustes {
    width: 500px;  *
    /* max-width: 500px; 
    width: 100%;
    /* margin: 0 auto; *
    margin: 20px auto; /* Adicionar margem vertical *
} */

/* FIM DA INDICAÇÃO GEMINI */
/* header {
    text-align: center;
} */

/* .bordersColor {
    border-left: 3.2rem solid var(--borders-color);
    border-right: 3.2rem solid var(--borders-color);
} */

.bottomColor {
    border-bottom: 3.2rem solid var(--borders-color);
}

.cabecalEspecial {
    margin-bottom: -4rem;
}

/* LOGO CRIADO HTML */
/* .prime {
    display: flex;
    align-items: center;
} */

.titleBlock {
    color: var(--title-block);
    line-height: 1.2;
}

.titleBlock:hover {
    color: var(--beige-block);
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    margin: 0 10px;
}

.site-nav .btn-cta-header:hover {
    background-color: var(--irrelevante-color);
    border: 2px solid orange;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Description Página index */
.description {
    font-size: 1.2rem;
    color: var(--background);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 700;
    margin-top: -7rem;
    margin-bottom: 5rem;
    text-align: center;
}

/* Description Página index */
.description2 {
    top: -6rem;
    line-height: 1.2;
    color: #fff;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 1000;
    position: relative;
}

.description3 {
    font-size: 1.5rem;
    color: var(--background);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 700;
    padding-bottom: 6rem;
}

.description4 {
    padding-bottom: 4rem;
}

/* Conteúdo Principal */
.main-content {
    flex: 3 1 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Bloco do Título */
.title-block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto;
}

/* Container dos Blocos de Avaliação */
.assessment-blocks-container {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    gap: 1.5rem;
    justify-content: center;

    align-items: center;   /* Centraliza os blocos horizontalmente dentro do container */
    padding: 1rem 0;       /* Padding vertical no container */
    width: 100%;           /* O container ocupa a largura disponível */
}

.doubt-block p {
    font-size: 1.2rem;
    margin: 10px;
}

.block {
    /* flex: 1 1 160px;
    max-width: 600px;
    min-width: 600px; */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    padding: .5rem 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 80px 20px !important;
    margin: 0 auto;

    /* align-items: center; Centraliza o conteúdo interno do bloco */
    /* text-align: center; */
    color: inherit;
     width: 100%;          /* O bloco tenta ocupar 100% da largura do seu container pai (assessment-blocks-container) */
     max-width: 600px;     /* LARGURA MÁXIMA DESEJADA para o bloco */
     box-shadow: 5px 5px 10px #d1d1d1, -5px -5px 10px #ffffff; /* Exemplo Neumórfico */
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;     /* O gap do container pai cuida do espaçamento vertical */
}

.block h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    color: var(--white-block);
}

.block p {
    font-size: .85rem;
    line-height: 1.2;
    margin-bottom: .5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    color: var(--title-block);
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 1;
    margin-top: auto;
    max-width: fit-content;
}

.grupoTipo {
    background-color: var(--accent-color);
    color: var(--background-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    align-content: center;
    text-align: center;
    box-shadow: var(--box-shadow);
}

/* Estilo do Botão de Ajuda '?' */
.help-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.help-btn:hover,
.help-btn:focus {
    background-color: #0056b3;
    transform: scale(1.1);
    outline: none;
}

/* Estilos para o Modal de Ajuda */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    cursor: pointer;
}

.modal-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background);
    padding: 45px 25px 25px 25px;
    border-radius: var(--border-radius);
    z-index: 1001;
    max-width: 90%;
    width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #fff;
}

.modal-content {
    line-height: 1.7;
    color: var(--text-primary);
    text-align: center;
    cursor: pointer;
    margin-top: 12px;
}

.modal-content h4 {
    margin-bottom: .3rem;
    color: #007bff;
    font-size: 1.1rem;
    line-height: 1.2;
}

.modal-content p {
    line-height: 1.2;
}

.modal-content ul {
    margin-left: 20px;
    margin-bottom: 1rem;
    font-size: .85rem;
    text-align: left;
    line-height: 1.3;
}

.modal-content strong {
    font-weight: 600;
}

.modal-overlay.active,
.modal-container.active {
    display: block;
}

footer {
    text-align: center;
    color: #555;
    padding: 1rem 0;
    margin: 0 auto;
}

/* Modal Coupon */
#modalCoupon {
    display: none; /* Começa escondido */
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 234px;
    width: 20%;
    height: 33%;
    overflow: auto;
    background-color: rgb(0 0 0 / 90%);
    border-radius: 7px;
    min-width: 280px;
}

.modalButton {
    padding: 2px 30px;
    background-color: blue;
    color: #fff;
    border-radius: 7px;
    max-width: fit-content;
    margin-bottom: 10px;
}

.inputModal {
    max-width: 80%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 8px;
    margin: 0 20px 10px 20px;
}

#mensagemCoupon {
    line-height: 1.2;
    font-size: .95rem;
    font-weight: 400;
    margin-top: 7px;
    color: #fff;
    width: 200px;
    margin: 0 auto;
}
/* Modal Coupon */

/* PIX */
.container-pix {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: 0 auto;
}

.form-group-pix {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    /* width: 100%; */
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #ff4757;
}

.hidden-pix {
    display: none;
}

#qrCodeArea {
    margin-top: 20px;
    text-align: center;
}
/* FIM - PIX */