/* ========================================
   FuleCopa - Estilos Globais
   Copa do Mundo 2026
   ======================================== */

/* Variáveis de Cores - Fuleco Style */
:root {
    --brown-fuleco: #8B4513;
    --yellow-fuleco: #FFB800;
    --green-soccer: #00A859;
    --white-clean: #F5F5F5;
    --dark-text: #2c2c2c;
    --gray-light: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white-clean);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--brown-fuleco) 0%, #6d3510 100%);
    padding: 25px 0;
    box-shadow: 0 4px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text h1 {
    color: var(--yellow-fuleco);
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.tagline {
    color: white;
    font-size: 0.95em;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-menu a {
    color: var(--brown-fuleco);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95em;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--yellow-fuleco);
    color: var(--brown-fuleco);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.menu-toggle {
    display: none;
    background: var(--yellow-fuleco);
    color: var(--brown-fuleco);
    border: none;
    padding: 10px 20px;
    font-size: 1.5em;
    border-radius: 8px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--green-soccer) 0%, #007a43 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Countdown */
.countdown {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.countdown h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-box {
    background: var(--yellow-fuleco);
    color: var(--brown-fuleco);
    padding: 20px;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.time-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.9em;
    margin-top: 5px;
    font-weight: 600;
}

.countdown-date {
    margin-top: 20px;
    font-size: 1.1em;
    opacity: 0.9;
}

/* ========================================
   SECTIONS
   ======================================== */
.features,
.highlights,
.quick-info {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--brown-fuleco);
    margin-bottom: 40px;
}

/* ========================================
   CARDS GRID
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark-text);
    border: 3px solid var(--gray-light);
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow-fuleco);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.card-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--brown-fuleco);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-cta {
    color: var(--green-soccer);
    font-weight: bold;
    font-size: 1.1em;
}

/* ========================================
   HIGHLIGHTS
   ======================================== */
.highlights {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.highlight-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--yellow-fuleco);
    box-shadow: 0 4px 15px var(--shadow);
}

.highlight-number {
    font-size: 4em;
    font-weight: bold;
    color: var(--green-soccer);
    margin-bottom: 10px;
}

.highlight-text h4 {
    color: var(--brown-fuleco);
    font-size: 1.5em;
    margin-bottom: 5px;
}

.highlight-text p {
    color: #666;
}

/* ========================================
   QUICK INFO
   ======================================== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: linear-gradient(135deg, var(--brown-fuleco) 0%, #6d3510 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
}

.info-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--yellow-fuleco);
}

.info-card p {
    margin: 5px 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--brown-fuleco) 0%, #6d3510 100%);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 10px;
}

.footer-logo p {
    margin: 5px 0;
}

.footer-tagline {
    color: var(--yellow-fuleco);
    font-style: italic;
}

.footer-links h4,
.footer-info h4 {
    color: var(--yellow-fuleco);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 8px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--yellow-fuleco);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9em;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-box {
        min-width: 70px;
        padding: 15px;
    }
    
    .time-number {
        font-size: 2em;
    }
}