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

html {
    overflow-x: hidden; /* Previne scroll horizontal */
    -webkit-text-size-adjust: 100%; /* Previne zoom automático no iOS */
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden; /* Previne scroll horizontal */
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Seções principais */
section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #28a745;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #28a745;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.logo .highlight {
    color: #20c997;
}

.tagline {
    font-size: 1rem;
    color: #cccccc;
    margin-top: 5px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 50;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.prize-highlight {
    color: #008e11;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
}

@media (max-width: 768px) {
    .benefits {
        padding: 0px;
    }
}

.benefit-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #cccccc;
}

.benefit-desc {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.5;
    display: block;
    margin-bottom: 20px;
}

.benefit-label {
    background: #20c997;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Countdown */
.countdown-section {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 40;
    margin-top: 20px;
}

.countdown-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #28a745;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-item {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    padding: 20px;
    min-width: 80px;
    max-width: 120px;
    border: 2px solid #28a745;
    flex: 0 0 auto;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #28a745;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

/* Forms Section */
.forms-section {
    padding: 60px 0;
    position: relative;
    z-index: 30;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.form-card:hover {
    border-color: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.form-card h3 {
    font-size: 1.8rem;
    color: #28a745;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #cccccc;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #444;
    border-radius: 10px;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

.btn-primary, .btn-secondary {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    color: #28a745;
    border: 2px solid #28a745;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* How it Works */
.how-it-works {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 20;
}

.how-it-works h3 {
    text-align: center;
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 50px;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px;
    max-width: 100%;
    box-sizing: border-box;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.3rem;
    color: #28a745;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #cccccc;
    line-height: 1.5;
}

/* Rules */
.rules {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.rules h3 {
    text-align: center;
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 50px;
    font-weight: 700;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.rule-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #333;
    max-width: 100%;
    box-sizing: border-box;
}

.rule-card h4 {
    font-size: 1.3rem;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: 600;
}

.rule-card ul {
    list-style: none;
}

.rule-card li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.rule-card li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA */
.cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    position: relative;
    z-index: 5;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 30px 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 2px solid #28a745;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98vw;
        padding: 12px 4px;
        border-radius: 12px;
    }
}

/* Loading */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 4px solid #333;
    border-top: 4px solid #28a745;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animação do Sorteio */
.lottery-animation {
    margin: 20px 0;
    padding: 40px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    border-radius: 20px;
    border: 2px solid #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5); }
    100% { box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3); }
}

.lottery-screen {
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottery-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.lottery-number {
    font-size: 4rem;
    font-weight: 800;
    color: #20c997;
    margin: 30px 0;
    font-family: 'Courier New', monospace;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #20c997, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    animation: numberFlicker 0.1s ease-in-out infinite;
}

@keyframes numberFlicker {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.lottery-progress {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.lottery-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #20c997, #28a745);
    width: 0%;
    transition: width 0.2s ease;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 10px rgba(40, 167, 69, 0.5); }
    50% { box-shadow: 0 0 20px rgba(40, 167, 69, 0.8); }
    100% { box-shadow: 0 0 10px rgba(40, 167, 69, 0.5); }
}

.lottery-status {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 20px;
    font-weight: 500;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Estilos para tabela de resultados */
.result-numbers {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    line-height: 1.4;
}

.result-numbers div {
    margin: 2px 0;
}

.result-numbers strong {
    color: #28a745;
}

.result-warning {
    color: #ffa500;
    font-size: 0.85em;
    font-weight: 500;
}

/* Melhorar responsividade da tabela */
@media (max-width: 768px) {
    .result-numbers {
        font-size: 0.8em;
    }
    
    .result-numbers div {
        margin: 1px 0;
    }
}

/* RESPONSIVIDADE PARA CELULARES MUITO PEQUENOS */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .header {
        padding: 10px 0;
    }
    
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .benefits {
        gap: 15px;
        margin-top: 20px;
    }
    
    .benefit-card {
        padding: 15px;
        margin: 0 5px;
    }
    
    .benefit-icon {
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Countdown */
    .countdown-section {
        padding: 20px 0;
    }
    
    .countdown-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .countdown {
        gap: 8px;
        padding: 0 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        padding: 10px;
        min-width: 50px;
        max-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    /* Forms */
    .forms-section {
        padding: 20px 0;
    }
    
    .forms-grid {
        gap: 20px;
        padding: 0 5px;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .form-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 10px;
        font-size: 16px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* How it Works */
    .how-it-works {
        padding: 20px 0;
    }
    
    .how-it-works h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .steps {
        gap: 20px;
        padding: 0 5px;
    }
    
    .step {
        padding: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step h4 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    /* Rules */
    .rules {
        padding: 20px 0;
    }
    
    .rules h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .rules-grid {
        gap: 15px;
        padding: 0 5px;
    }
    
    .rule-card {
        padding: 15px;
    }
    
    .rule-card h4 {
        font-size: 1rem;
    }
    
    .rule-card p {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta {
        padding: 20px 0;
    }
    
    .cta h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        padding: 0 5px;
    }
    
    .cta p {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    /* Modais */
    .modal-content {
        width: 98%;
        margin: 2% auto;
        padding: 15px;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
    
    /* Animação do Sorteio */
    .lottery-animation {
        margin: 10px 0;
        padding: 15px;
    }
    
    .lottery-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .lottery-number {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    .lottery-progress {
        margin: 10px 0;
    }
    
    .lottery-status {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    /* Hero Section */
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .benefit-card {
        padding: 30px;
    }
    
    /* Countdown */
    .countdown {
        gap: 20px;
    }
    
    .countdown-item {
        padding: 20px;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    /* Forms */
    .forms-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .form-card {
        padding: 30px;
    }
    
    .form-card h3 {
        font-size: 1.6rem;
    }
    
    /* How it Works */
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Rules */
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* RESPONSIVIDADE PARA CELULARES */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header {
        padding: 15px 0;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .benefit-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
    }
    
    /* Countdown */
    .countdown-section {
        padding: 30px 0;
        margin-top: 10px;
    }
    
    .countdown-section h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .countdown {
        gap: 10px;
        padding: 0 10px;
    }
    
    .countdown-item {
        padding: 15px;
        min-width: 60px;
        max-width: 90px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    /* Forms */
    .forms-section {
        padding: 30px 0;
    }
    
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .form-card {
        padding: 25px;
        margin: 0;
    }
    
    .form-card h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input {
        padding: 12px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* How it Works */
    .how-it-works {
        padding: 30px 0;
    }
    
    .how-it-works h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .step {
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step h4 {
        font-size: 1.1rem;
    }
    
    /* Rules */
    .rules {
        padding: 30px 0;
    }
    
    .rules h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .rule-card {
        padding: 20px;
    }
    
    .rule-card h4 {
        font-size: 1.1rem;
    }
    
    /* CTA */
    .cta {
        padding: 30px 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .cta p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Modais */
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 5% auto;
        padding: 20px;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
    }
    
    /* Animação do Sorteio */
    .lottery-animation {
        margin: 15px 0;
        padding: 20px;
    }
    
    .lottery-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .lottery-number {
        font-size: 2.5rem;
        margin: 20px 0;
    }
    
    .lottery-progress {
        margin: 15px 0;
    }
    
    .lottery-status {
        font-size: 1rem;
        margin-top: 15px;
    }
}

/* RESPONSIVIDADE PARA CELULARES PEQUENOS */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .benefit-card {
        padding: 15px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .form-group input {
        padding: 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .lottery-number {
        font-size: 2rem;
    }
    
    .lottery-title {
        font-size: 1.1rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
}

/* VIP Alert */
.vip-alert {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 20px 0;
    margin: 20px 0;
}

.vip-alert-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.vip-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.vip-text h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.vip-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vip-alert-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .vip-icon {
        font-size: 2.5rem;
    }
    
    .vip-text h3 {
        font-size: 1.1rem;
    }
}

.indicador-card {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
}

.indicador-info {
    margin: 20px 0;
    display: grid;
    gap: 10px;
}

.indicador-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.prize-amount {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.top-indicadores-section {
    margin: 48px 0 0 0;
    padding: 36px 0 28px 0;
    background: linear-gradient(120deg, #181c1b 60%, #101312 100%);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(32, 201, 151, 0.07);
    border: 1.5px solid rgba(40, 167, 69, 0.13);
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    /* display: none; */
}

.top-indicadores-section::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(32,201,151,0.13) 0%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}
.top-indicadores-section > * {
    position: relative;
    z-index: 1;
}
.top-indicadores-title {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}
.top-indicadores-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.top-indicador-card {
    background: #181818;
    border-radius: 10px;
    padding: 10px 6px;
    color: #fff;
    text-align: center;
    border: 1.5px solid #21e676;
    box-shadow: 0 1px 4px rgba(40,167,69,0.05);
    transition: transform 0.15s;
    min-width: 0;
}

.top-indicador-card:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: #20c997;
}

.top-indicador-pos {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 2px;
}

.top-indicador-nome {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #21e676;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-indicador-indicacoes {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .top-indicadores-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .top-indicador-card {
        padding: 8px 3px;
    }
}
@media (max-width: 480px) {
    .top-indicadores-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

