/* ================================================================ */
/* ===========      ESTILOS GLOBAIS E FUNDAMENTAIS      =========== */
/* (Baseado no seu style.css original)                          */
/* ================================================================ */

/* Importação e Reset Básico */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --color-dark-blue: #21203b;
    --color-yellow: #fde93a;
    --color-green: #28a745;
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-text: #333;
    --font-family: 'Poppins', sans-serif;
    --container-width: 1140px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== Componentes Reutilizáveis ==================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn--success { background-color: var(--color-green); color: var(--color-white); }
.btn--dark { background-color: var(--color-dark-blue); color: var(--color-white); }
.btn--xlarge { padding: 16px 36px; font-size: 1.1rem; }
.btn--outline { border-color: var(--color-dark-blue); color: var(--color-dark-blue); }
.btn--outline:hover { background-color: var(--color-dark-blue); color: var(--color-white); }
.btn--outline-light { border-color: var(--color-white); color: var(--color-white); }
.btn--outline-light:hover { background-color: var(--color-white); color: var(--color-dark-blue); }

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background-color: var(--color-yellow);
    color: var(--color-text);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-tag--dark { background-color: var(--color-dark-blue); color: var(--color-white); }
.section-title { font-size: 2.5rem; color: var(--color-dark-blue); margin-bottom: 1rem; }
.section-subtitle { max-width: 600px; margin: 0 auto; color: #555; }
.section-header { text-align: center; margin-bottom: 60px; }


/* ==================== Header ==================== */
.header {
    background: var(--color-white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.header__container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { font-weight: 700; font-size: 1.5rem; color: var(--color-dark-blue); text-decoration: none; }
.header__nav ul { display: flex; list-style: none; gap: 35px; }
.header__nav a { text-decoration: none; color: var(--color-text); font-weight: 600; }
.header__actions { display: flex; gap: 15px; }

/* ==================== Hero Section ==================== */
.hero { background-color: var(--color-dark-blue); color: var(--color-white); text-align: center; padding: 80px 0; }
.hero__container { max-width: 800px; }
.hero__tagline { margin-bottom: 1rem; opacity: 0.8; }
.hero__title { font-size: 3.2rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero__subtitle { font-size: 1.1rem; margin-bottom: 2.5rem; opacity: 0.9; }
.hero__actions { display: flex; justify-content: center; gap: 20px; margin-bottom: 4rem; }
.hero__stats { display: flex; justify-content: space-around; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 2rem; }
.stat__value { display: block; font-size: 2rem; font-weight: 700; color: var(--color-yellow); }
.stat__label { font-size: 0.9rem; opacity: 0.8; }

/* ==================== Pools Section (Bolões) ==================== */
.pools { padding: 80px 0; background-color: var(--color-light-gray); }
.pools__container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pools__actions { margin-top: 20px; }
.pools__benefits { display: flex; flex-direction: column; gap: 20px; }
.benefit-card { background: var(--color-white); padding: 25px; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; align-items: flex-start; gap: 20px; }
.benefit-card__icon { font-size: 2rem; margin-top: 5px; }

/* ==================== Features Section ==================== */
.features { padding: 80px 0; }

/* ==================== Footer ==================== */
.footer { background-color: var(--color-dark-blue); color: var(--color-white); padding: 60px 0 20px; }
.footer__container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer__about h4, .footer__links h4 { font-size: 1.2rem; margin-bottom: 15px; }
.footer__about p { opacity: 0.8; margin-bottom: 15px; }
.footer__links ul { list-style: none; }
.footer__links ul li { margin-bottom: 10px; }
.footer__links a { color: var(--color-white); text-decoration: none; opacity: 0.8; transition: opacity 0.2s ease; }
.footer__links a:hover { opacity: 1; color: var(--color-yellow); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.9rem; opacity: 0.7; }

/* ================================================================ */
/* ===========      ESTILOS DAS FERRAMENTAS           =========== */
/* (de ferramentas.css e tools.css)                           */
/* ================================================================ */
.tools-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-link {
    padding: 12px 25px;
    border: 2px solid transparent;
    background-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: #616161;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tab-link.active {
    background-color: #0d47a1;
    color: var(--color-white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === CARTELA DE NÚMEROS (Desdobramento e Histórico) === */
.ticket-container {
    max-width: 480px;
    margin: 0 auto;
}

.lottery-ticket {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.ticket-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #009933; /* Verde Lotofácil */
    text-align: center;
    margin-bottom: 15px;
}

#number-grid-desdobramento,

.number-grid-style {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.number-box {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.3rem;
    color: #616161;
    transition: all 0.2s ease-in-out;
}

.number-box:hover {
    border-color: #009933;
    color: #009933;
}

.number-box.selected {
    background-color: #009933;
    color: var(--color-white);
    border-color: #009933;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 153, 51, 0.5);
}

#counter-desdobramento,
#counter-historico {
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

#counter-desdobramento.valid,
#counter-historico.valid {
    color: #388e3c;
}

#counter-desdobramento.invalid,
#counter-historico.invalid {
    color: #d32f2f;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, #388e3c, #4caf50);
    color: var(--color-white);
    padding: 16px;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(56, 142, 60, 0.4);
    margin-top: 25px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(56, 142, 60, 0.5);
}

.btn-submit:disabled {
    background: #aaa;
    cursor: not-allowed;
    box-shadow: none;
}


/* ================================================================ */
/* ===========      ESTILOS DO BLOG E ARTIGOS         =========== */
/* (de style.css)                                               */
/* ================================================================ */

.blog-header {
    text-align: center;
    padding: 60px 0;
    background-color: var(--color-light-gray);
}
.blog-header h2 { font-size: 2.8rem; color: var(--color-dark-blue); }
.blog-grid-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.article-card { text-decoration: none; color: inherit; background-color: var(--color-white); border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0,0,0,0.07); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.article-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.article-card__image img { width: 100%; height: 200px; object-fit: cover; }
.article-card__content { padding: 25px; }
.article-card__title { font-size: 1.4rem; color: var(--color-dark-blue); margin-bottom: 10px; }
.article-card__excerpt { font-size: 0.95rem; color: #555; margin-bottom: 20px; }
.article-card__cta { font-weight: 700; color: var(--color-green); }

.article-container { max-width: 800px; padding-top: 40px; padding-bottom: 40px; }
.container-botao-voltar { margin-bottom: 30px; }
.btn-voltar-ferramentas { text-decoration: none; color: var(--color-dark-blue); font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.article-content h1 { font-size: 2.5rem; margin-bottom: 15px; }
.article-content h2 { font-size: 1.8rem; margin-top: 40px; margin-bottom: 15px; }
.article-content p { line-height: 1.8; margin-bottom: 20px; }
.article-content .lead { font-size: 1.2rem; color: #444; }
.article-content blockquote { border-left: 4px solid var(--color-green); padding-left: 20px; margin: 30px 0; font-style: italic; font-size: 1.1rem; }
.call-to-action { background-color: var(--color-light-gray); padding: 30px; border-radius: var(--border-radius); text-align: center; margin: 40px 0; }
.btn-cta { display: inline-block; background-color: var(--color-green); color: var(--color-white); padding: 12px 28px; border-radius: var(--border-radius); text-decoration: none; font-weight: 600; }

.article-main-image { margin: 25px 0 35px; width: 100%; border-radius: var(--border-radius); overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.article-main-image img { width: 100%; height: auto; display: block; }
.table-container { margin: 30px 0; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; }
table th, table td { padding: 12px 15px; border-bottom: 1px solid #e0e0e0; }
table th { background-color: var(--color-light-gray); font-weight: 600; }
table tbody tr:hover { background-color: #f8f9fa; }


/* ================================================================ */
/* ===========      ESTILOS PÁGINAS INSTITUCIONAIS    =========== */
/* (de sobre.css e outros)                                      */
/* ================================================================ */
.about-header { background: var(--color-dark-blue); color: #ffffff; padding: 60px 20px; text-align: center; border-bottom: 5px solid var(--color-yellow); }
.about-header h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 10px; text-shadow: 1px 1px 4px rgba(0,0,0,0.3); }
.about-header .subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }

.page-content { padding: 50px 0; }
.about-section { background-color: var(--color-white); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 40px; }
.about-icon { font-size: 3rem; margin-bottom: 15px; }
.about-section h2 { font-size: 2rem; color: var(--color-dark-blue); margin-bottom: 20px; }
.about-section ul { list-style: none; padding-left: 0; }
.about-section ul li { position: relative; padding-left: 30px; margin-bottom: 15px; }
.about-section ul li::before { content: '✅'; position: absolute; left: 0; top: 0; color: var(--color-green); }

.commitment-card { background-color: var(--color-light-gray); border-left: 5px solid var(--color-green); text-align: center; }
.commitment-card .btn { margin-top: 20px; }

/* Página 'Como Usar' */
.page-header { background-color: var(--color-dark-blue); color: var(--color-white); text-align: center; padding: 70px 20px; }
.page-title { font-size: 3rem; margin-bottom: 15px; }
.page-subtitle { font-size: 1.2rem; opacity: 0.85; max-width: 750px; margin: 0 auto; }
.content-blocks-section { padding: 80px 0; background-color: #f7f8fc; }
.content-blocks-section .container { max-width: 900px; }
.content-block { background-color: var(--color-white); border-radius: var(--border-radius); padding: 40px; margin-bottom: 30px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); border: 1px solid #e9ecef; }
.content-block__header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.content-block__icon { flex-shrink: 0; width: 55px; height: 55px; background-color: #e6f4ea; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--color-green); }
.content-block__title { font-size: 1.8rem; color: var(--color-dark-blue); margin: 0; }
.feature-list { list-style: none; padding-left: 5px; margin-top: 20px; }
.feature-list li { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2328a745' d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-ca-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E") no-repeat left center; background-size: 16px; padding-left: 28px; margin-bottom: 12px; }


/* ================================================================ */
/* ===========      ESTILOS DE AUTENTICAÇÃO E CONTA     =========== */
/* (de auth_style.css)                                          */
/* ================================================================ */
.auth-section, .account-container { padding: 60px 15px; background-color: var(--color-light-gray); min-height: 80vh; }
.auth-card, .account-card-new { max-width: 480px; margin: 0 auto; background-color: var(--color-white); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 8px 30px rgba(0,0,0,0.08); text-align: center; }
.account-card-new { max-width: 800px; }
.auth-card__title { font-size: 2rem; margin-bottom: 10px; }
.auth-card__subtitle { font-size: 1.1rem; color: #616161; margin-bottom: 30px; }
.auth-form .form-group { margin-bottom: 20px; text-align: left; }
.auth-form label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
.auth-form .form-control { width: 100%; padding: 14px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.auth-form .form-control:focus { outline: none; border-color: var(--color-green); box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2); }
.btn-auth { width: 100%; padding: 15px; font-size: 1.1rem; font-weight: 700; background: var(--color-green); color: var(--color-white); border: none; border-radius: 8px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.3s ease; }
.btn-auth:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.alert-auth { padding: 15px; margin-bottom: 20px; border-radius: 8px; border: 1px solid transparent; text-align: center; font-weight: 600; }
.alert-auth.danger { background-color: #ffebee; color: #d32f2f; border-color: #ffcdd2; }
.alert-auth.success { background-color: #e8f5e9; color: #388e3c; border-color: #c8e6c9; }

.account-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.account-header h2 { font-size: 2rem; margin: 0; }
.welcome-message { font-size: 1.1rem; color: #555; margin-bottom: 40px; text-align: left; }
.account-section { margin-bottom: 35px; text-align: left; }
.account-section h4 { font-size: 1.2rem; color: var(--color-dark-blue); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.detail-item { display: flex; justify-content: space-between; padding: 10px 0; }
.detail-label { font-weight: 600; }
.account-actions { margin-top: 15px; }
.account-actions a { color: var(--color-green); text-decoration: none; font-weight: 600; margin-right: 20px; }

.quick-actions-grid, .summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.action-box, .summary-card { background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: var(--border-radius); padding: 20px; text-align: center; transition: all 0.2s ease; text-decoration: none; color: inherit; }
.action-box:hover { transform: translateY(-4px); box-shadow: 0 4px 15px rgba(0,0,0,0.07); border-color: var(--color-green); }
.action-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.action-label { font-weight: 600; color: var(--color-dark-blue); }
.summary-value { font-size: 2.5rem; font-weight: 700; color: var(--color-dark-blue); display: block; }
.summary-label { font-size: 0.9rem; color: #6c757d; }
.coming-soon { text-align: center; margin-top: 20px; color: #888; font-style: italic; }


/* ================================================================ */
/* ===========      ESTILOS DE RESULTADOS E ESTATÍSTICAS  =========== */
/* (de tools.css e style.css)                                   */
/* ================================================================ */
.tool-result {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
}
.tool-result h4 {
    color: var(--color-dark-blue);
    border-bottom: 2px solid var(--color-yellow);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.tool-result.error-message p { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 15px; border-radius: var(--border-radius); }

.game-list-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.game-card { background-color: #ffffff; border: 1px solid #dee2e6; border-radius: 10px; padding: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.game-card-header { font-weight: 700; color: #555; font-size: 0.9rem; margin-bottom: 10px; }
.game-card-numbers { display: flex; flex-wrap: wrap; gap: 5px; }
.game-card-numbers .dezena-box { width: 30px; height: 30px; font-size: 0.85rem; }

.stats-page { padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.stat-card { background-color: var(--color-white); padding: 25px; border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.stat-card__title { font-size: 1.3rem; color: var(--color-dark-blue); margin-bottom: 20px; border-bottom: 2px solid var(--color-yellow); padding-bottom: 10px; }
.stat-card__list { list-style: none; padding: 0; }
.stat-card__list li { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.stat-card__list li:last-child { border-bottom: none; }
.dezena-box { display: inline-flex; justify-content: center; align-items: center; width: 32px; height: 32px; border-radius: 50%; background-color: var(--color-dark-blue); color: var(--color-white); font-weight: 600; }
.stat-value { font-weight: 700; }

.chart-container { background: var(--color-white); padding: 20px; border-radius: var(--border-radius); box-shadow: var(--sombra-card); min-height: 450px; }


/* ================================================================ */
/* ===========      CÓDIGO DE CORREÇÃO (COLAR NO FINAL) =========== */
/* Estilos para o formulário da Calculadora e Depoimentos       */
/* ================================================================ */

/* --- CORREÇÃO PARA O FORMULÁRIO DA CALCULADORA --- */
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 650px;
    margin: 20px auto 0;
}

.sim-card {
    background-color: var(--color-light-gray);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: left;
}

.sim-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sim-card__step {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.sim-card__title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--color-dark-blue);
}

.form-group-sim label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control-sim {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: var(--font-family);
}

/* --- CORREÇÃO PARA A SEÇÃO DE DEPOIMENTOS --- */
.testimonials {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-new {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card-new__user-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-yellow);
}

.testimonial-card-new__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-card-new__title {
    font-size: 1.3rem;
    color: var(--color-dark-blue);
    margin-bottom: 10px;
}

.testimonial-card-new__text {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-card-new__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.user-name {
    display: block;
    font-weight: 700;
}

.user-location {
    font-size: 0.9rem;
    color: #777;
}

.star-rating span {
    color: var(--color-yellow);
    font-size: 1.2rem;
}

/* Ajustes no formulário do Conferidor */
.conferidor-form {
    max-width: 700px;
    margin: 20px auto 0;
}
.conferidor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.conferidor-input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    min-height: 80px;



}

/* ================================================================ */
/* ===========      MELHORIAS VISUAIS - CONFERIDOR      =========== */
/* ================================================================ */

/* --- Estilo geral da aba do Conferidor --- */
#conferencia {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#conferencia h3 {
    font-size: 1.8rem;
    color: var(--color-dark-blue);
    margin-bottom: 10px;
}

#conferencia p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* --- Formulário principal --- */
.conferidor-form {
    text-align: left;
}

/* --- Grid que segura os dois cards --- */
.conferidor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* --- Card individual para cada campo de texto --- */
.conferidor-input-group {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border: 1px solid #e9ecef;
}

.conferidor-input-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: 15px;
}

/* --- Adiciona os Ícones --- */
.conferidor-input-group label::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-green);
}

label[for="numeros_apostados"]::before {
    content: '\f3ff'; /* Ícone de bilhete */
}

label[for="numeros_sorteados"]::before {
    content: '\f091'; /* Ícone de troféu */
}

/* --- Área de texto melhorada --- */
.conferidor-input-group textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: var(--font-family);
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.conferidor-input-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
}

/* --- Botão de Conferir com mais destaque --- */
#conferencia .btn--dark.btn--fullwidth {
    background: var(--color-green);
    font-size: 1.2rem;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

#conferencia .btn--dark.btn--fullwidth:hover {
    background: #218838; /* Verde mais escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* ================================================================= */
/* ===========      CORREÇÃO VISUAL - SEÇÃO DE RESULTADOS =========== */
/* ================================================================= */

/* --- 1. ESTILOS PARA O "RESULTADO DA SIMULAÇÃO" --- */

.new-sim-result .sim-result-title {
    font-size: 1.5rem;
    color: var(--color-dark-blue);
    margin: 0;
}

.sim-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.sim-summary-card {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.sim-summary-card .card-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.sim-summary-card .card-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.sim-summary-card .ganho { color: var(--color-green); }
.sim-summary-card .prejuizo { color: #d32f2f; }

.sim-details-card {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.sim-details-card h5 {
    font-size: 1.1rem;
    color: var(--color-dark-blue);
    margin-bottom: 15px;
}

.prize-list {
    list-style: none;
    padding: 0;
}

.prize-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.prize-list li:last-child {
    border-bottom: none;
}

.prize-hits { font-weight: 600; }
.prize-points { color: var(--color-green); font-weight: 700; }

.sim-sorted-numbers {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 1.1rem;
}


/* --- 2. ESTILOS PARA A "ANÁLISE HISTÓRICA" --- */

.historic-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.historic-result-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    text-align: center;
    overflow: hidden;
}

.historic-result-card.highlight {
    border-color: var(--color-yellow);
    box-shadow: 0 4px 20px rgba(253, 233, 58, 0.4);
}

.historic-result-card .card-header {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}
.historic-result-card.highlight .card-header {
    background-color: var(--color-yellow);
    color: var(--color-dark-blue);
}


.historic-result-card .card-body {
    padding: 15px;
    font-size: 1.1rem;
}

.historic-result-card .card-body span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: var(--color-dark-blue);
}

.historic-result-card .card-footer {
    background-color: var(--color-light-gray);
    padding: 15px;
    font-size: 0.9rem;
}

.historic-result-card .card-footer p {
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #555;
}

.historic-result-card .card-footer ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.historic-result-card .card-footer li {
    margin-bottom: 5px;
    color: #777;
}

.no-results-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid #e9ecef;
    grid-column: 1 / -1; /* Ocupa a linha inteira */
}

/* --- 3. ESTILOS PARA O "RESULTADO DA CONFERÊNCIA" --- */

.conferidor-resultado {
    margin-top: 30px;
    text-align: center;
}

.resultado-titulo {
    font-size: 1.5rem;
    color: var(--color-dark-blue);
    margin-bottom: 25px;
}

.resultado-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.resultado-card {
    background-color: var(--color-light-gray);
    border: 1px solid #e0e0e0;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.resultado-card.premiado {
    background-color: #e6f4ea;
    border-color: var(--color-green);
}

.resultado-card__acertos {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 5px;
}

.resultado-card.premiado .resultado-card__acertos {
    color: var(--color-green);
}

.resultado-card__quantidade {
    font-size: 1rem;
    color: #555;
}

/* ================================================================ */
/* ===========      MELHORIA VISUAL - NÚMEROS DA SIMULAÇÃO   =========== */
/* ================================================================ */

.numeros-simulacao-grid {
    display: grid;
    /* Cria 2 colunas em telas maiores, e 1 coluna em telas menores */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* Espaço entre as colunas */
    margin-top: 25px;
    margin-bottom: 25px;
}

.numeros-bloco {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
}

.numeros-label {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.numeros-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Espaço entre as bolinhas */
}

.dezena-simulacao {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Deixa redondo */
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    background-color: var(--color-dark-blue); /* Cor padrão para a aposta */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Cor especial para os números que foram sorteados */
.dezena-simulacao.sorteado {
    background-color: var(--color-green);
}


/* --- Responsividade para telas menores --- */
@media (min-width: 768px) {
    .conferidor-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .conferidor-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===============================================
 * ESTILOS RESPONSIVOS GLOBAIS
 * =============================================== */
@media (max-width: 992px) {
    .header__nav { display: none; }
    .pools__container { grid-template-columns: 1fr; }
    .footer__container { grid-template-columns: 1fr 1fr; }
    .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .hero__title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .pools__container { text-align: center; }
    .pools__content .section-title, .pools__actions { justify-content: center; text-align: center; }
    .footer__container, .footer__bottom { flex-direction: column; text-align: center; gap: 20px; }
    .game-list-columns { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .auth-card, .account-card-new { padding: 30px 20px; }
}