/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores do Nordeste */
    --color-primary: #FF8C00;      /* Laranja - sol do nordeste */
    --color-secondary: #8B4513;    /* Marrom - terra/argila */
    --color-accent: #228B22;       /* Verde - vegetação */
    --color-accent2: #1E90FF;      /* Azul - mar/rio */
    --color-sand: #DAA520;         /* Dourado - areia */
    
    /* Cores do tema dark */
    --color-bg: #0B0B0F;
    --color-bg-light: #1A1A1F;
    --color-bg-lighter: #25252D;
    --color-text: #F5F5F5;
    --color-text-light: #A3A3A3;
    --color-border: #333333;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.4);
    
    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.highlight {
    color: var(--color-primary);
}

.text-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-sand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SEÇÕES ===== */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    background: linear-gradient(to right, var(--color-primary), var(--color-sand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-sand));
    border-radius: var(--radius-full);
}

.section-subtitle {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    min-height: calc(100vh - 400px);
    margin-top: 80px;
}

.page-indicator {
    padding: 1rem 0;
    background: linear-gradient(90deg, 
        rgba(255, 140, 0, 0.1) 0%, 
        rgba(139, 69, 19, 0.1) 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-indicator .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-indicator i {
    color: var(--color-primary);
}

.page-title {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--color-primary), var(--color-sand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 4rem 0;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(11, 11, 15, 0.9) 0%, 
        rgba(26, 26, 31, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 L1000,0 L500,100 Z" fill="%23FF8C00" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, 
        rgba(255, 140, 0, 0.1) 0%, 
        transparent 50%),
        radial-gradient(circle at 70% 80%, 
        rgba(139, 69, 19, 0.1) 0%, 
        transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.2), 
        rgba(139, 69, 19, 0.2));
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--color-primary);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, var(--color-primary), var(--color-sand), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid var(--color-border);
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-bg-lighter);
    border-radius: var(--radius-lg);
    min-width: 150px;
}

.stat i {
    font-size: 2rem;
    color: var(--color-primary);
}

.stat h3 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--color-primary);
}

.stat p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== VIDEO ===== */
.video-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--color-border);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== LOJA ===== */
.loja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ===== WHITELIST ===== */
.whitelist-form {
    max-width: 800px;
    margin: 2rem auto 0;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-lighter) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
}

/* ===== UTILITIES ===== */
.hidden {
    display: none !important;
}

.glass {
    background: rgba(26, 26, 31, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== PÁGINA DE REGRAS SIMPLIFICADA ===== */
.regras-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.regra-card {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-lighter) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.regra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

.regra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-sand));
}

.regra-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-sand));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 1.5rem;
}

.regra-content h3 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border);
}

.regra-item {
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.regra-item:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-light);
}

.regra-item h4 {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.regra-item h4 i {
    font-size: 0.9rem;
}

.regra-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 1.5rem;
}

/* ===== INFORMAÇÕES IMPORTANTES ===== */
.regras-importantes {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.1), 
        rgba(139, 69, 19, 0.1));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.importante-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.importante-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-sand));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.importante-text h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.importante-text p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* ===== ACEITAÇÃO SIMPLES ===== */
.aceitacao-regras-simples {
    margin-top: 2rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.1), 
        rgba(22, 163, 74, 0.1));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.aceitacao-regras-simples h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.aceitacao-regras-simples h3 i {
    color: var(--color-primary);
}

.aceitacao-regras-simples p {
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== RESPONSIVIDADE REGRAS ===== */
@media (max-width: 768px) {
    .regras-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .regra-card {
        padding: 1.5rem;
    }
    
    .importante-content {
        flex-direction: column;
        text-align: center;
    }
    
    .importante-icon {
        margin: 0 auto;
    }
    
    .regra-item {
        padding: 1rem;
    }
    
    .regra-item p {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .regra-card {
        padding: 1.25rem;
    }
    
    .regra-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .regra-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .aceitacao-regras-simples {
        padding: 1.5rem 1rem;
    }
}