/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --gold-color: #D4AF37;
    --dark-bg: #121212;
    --dark-secondary: #1E1E1E;
    --text-color: #E0E0E0;
    --heading-font: 'Oswald', sans-serif;
    --body-font: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: var(--gold-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold-color);
    margin: 10px auto 30px auto;
    border-radius: 5px;
}

p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-section .container {
    padding: 0 20px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.main-headline {
    font-family: var(--heading-font);
    font-size: 6rem;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.5);
}

.sub-headline {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-top: -10px;
}

.cta-button, .cta-button-light {
    display: inline-block;
    padding: 15px 35px;
    margin-top: 30px;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button {
    background: var(--gold-color);
    color: var(--dark-bg);
    border: 2px solid var(--gold-color);
}
.cta-button:hover {
    background: transparent;
    color: var(--gold-color);
    transform: translateY(-3px);
}

/* --- CONTENT SECTIONS --- */
.content-section {
    background-color: var(--dark-bg);
}

.content-section-dark {
    background-color: var(--dark-secondary);
}

.two-columns {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.two-columns .text-content, .two-columns .image-content {
    flex: 1;
}

.two-columns .divider { margin: 10px 0 30px 0; }
.two-columns p { margin: 0; max-width: 100%; }
.two-columns img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}


/* --- RENDIMENTOS FEATURES --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: var(--dark-secondary);
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-color);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}
.feature-card h3 {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 15px;
}
.highlight-text {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    color: var(--gold-color);
    display: block;
    line-height: 1;
}
.highlight-text-small {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--gold-color);
    display: block;
    line-height: 1;
}

.benefits-list {
    list-style: none;
    margin-top: 40px;
    display: inline-block;
    text-align: left;
}
.benefits-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.benefits-list .fa-check-circle {
    color: var(--gold-color);
    margin-right: 10px;
}

/* --- SIMULAÇÃO TABLE --- */
.table-container {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 1.1rem;
}
th, td {
    padding: 15px;
    border: 1px solid #333;
}
thead {
    background-color: #000;
}
th {
    font-family: var(--heading-font);
    color: var(--gold-color);
    font-size: 1.2rem;
}
tbody tr:nth-child(even) {
    background-color: #252525;
}
.highlight-row {
    background-color: rgba(212, 175, 55, 0.15) !important;
    font-weight: bold;
}
td:first-child {
    font-weight: bold;
    color: var(--gold-color);
}

/* --- BÔNUS SECTION --- */
.bonus-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}
.bonus-card {
    background-color: var(--dark-secondary);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    max-width: 450px;
}
.bonus-card h3 {
    font-family: var(--heading-font);
    color: var(--gold-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.bonus-levels {
    list-style: none;
    margin-top: 20px;
}
.bonus-levels li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}
.bonus-levels li:last-child {
    border: none;
}
.bonus-levels li strong {
    font-family: var(--heading-font);
    color: var(--gold-color);
    font-size: 1.5rem;
}

/* --- CTA SECTION (BÔNUS STAKE) --- */
.cta-section {
    background: linear-gradient(45deg, var(--gold-color), #b89b3c);
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('textura.jpg');
    opacity: 0.1;
}
.cta-section h2 {
    color: var(--dark-bg);
}
.cta-section .divider {
    background-color: var(--dark-bg);
}
.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.bonus-money {
    max-width: 150px;
    margin-bottom: 20px;
}
.cta-button-light {
    background: var(--dark-bg);
    color: var(--gold-color);
    border: 2px solid var(--dark-bg);
}
.cta-button-light:hover {
    background: transparent;
    color: var(--dark-bg);
}

/* --- REGRAS GERAIS SECTION --- */
.rules-list {
    list-style: none;
    max-width: 600px;
    margin: 20px auto 0 auto;
    text-align: left;
}
.rules-list li {
    background: var(--dark-secondary);
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid var(--gold-color);
    border-radius: 0 5px 5px 0;
}
.rules-list strong {
    color: var(--gold-color);
}

/* --- FOOTER --- */
.footer {
    background-color: #000;
    text-align: center;
    padding: 40px 20px;
}
.logo-footer {
    width: 80px;
    margin-bottom: 10px;
}
.footer p {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
    max-width: 100%;
}
.social-icons {
    margin: 20px 0;
}
.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--gold-color);
}
.copyright {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: #777;
    letter-spacing: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .two-columns {
        flex-direction: column;
        text-align: center;
    }
    .two-columns .divider { margin: 10px auto 30px auto; }
    .two-columns p { margin: 0 auto; }
}

@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    .main-headline { font-size: 4rem; }
    .sub-headline { font-size: 1.2rem; }
    .bonus-grid { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 40px 15px; }
    h2 { font-size: 1.8rem; }
    .main-headline { font-size: 2.8rem; letter-spacing: 2px; }
    .sub-headline { font-size: 1rem; }
    .cta-button, .cta-button-light { padding: 12px 25px; font-size: 1rem; }
    table { font-size: 0.9rem; }
    th, td { padding: 10px 5px; }
}