/* Base & Reset */
:root {
    --primary: #F6C82B; /* Amarelo Vibrante */
    --primary-dark: #D4A51A;
    --dark-bg: #111111; /* Fundo principal */
    --darker-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-light: #F4F4F4;
    --text-muted: #A0A0A0;
    --transition: 0.3s ease-in-out;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 24px;
    color: var(--text-light);
    letter-spacing: 1px;
    font-style: italic;
}

.logo h2 span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

.btn-nav {
    background-color: var(--primary);
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('fundohero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; /* Escurecer a imagem de fundo para o texto aparecer */
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17,17,17,0.3) 0%, rgba(17,17,17,1) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.countdown-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 30px;
}

.countdown-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

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

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 65px;
}

.time-box span {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.time-box small {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-text .badge {
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.5));
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
    font-style: italic;
}

.hero-subtitle span {
    color: var(--primary);
}

.hero-details {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.detail-item i {
    color: var(--primary);
    font-size: 20px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(246, 200, 43, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(246, 200, 43, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascote-correndo {
    max-width: 120%;
    margin-left: -10%;
    height: auto;
    filter: drop-shadow(15px 15px 25px rgba(0,0,0,0.8));
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Wavy Divider */
.wavy-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V95.8C52.16,93.42,103.44,81.45,153,67,208.66,50.8,265.5,67,321.39,56.44Z" style="fill:%230A0A0A"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}


/* Info Bar */
.info-bar {
    background-color: var(--darker-bg);
    padding: 60px 0;
    position: relative;
    z-index: 3;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    background: #222;
}

.info-icon {
    font-size: 40px;
    color: var(--primary);
}

.info-text h3 {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.info-text h3 span {
    font-size: 24px;
    color: var(--primary);
}

.info-text p {
    color: var(--text-muted);
    font-size: 14px;
}


/* Challenges & Awards */
.challenges {
    background: var(--dark-bg);
    padding: 100px 0;
}

.challenges-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.section-subtitle {
    color: var(--text-light);
    font-weight: 700;
    font-size: 16px;
}

.section-title {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.ticket {
    background: var(--primary);
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.ticket:hover {
    transform: translateY(-5px);
}

.ticket::before, .ticket::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--dark-bg);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ticket::before { left: -10px; }
.ticket::after { right: -10px; }

.ticket-top {
    background: var(--primary);
    color: #000;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    padding: 20px 10px;
    border-bottom: 2px dashed rgba(0,0,0,0.2);
}

.ticket-bottom {
    background: var(--primary-dark);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 15px 10px;
    text-transform: uppercase;
}

.categories-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    display: inline-block;
}

.categories-text i {
    color: var(--primary);
    margin-right: 10px;
}

.awards-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.awards-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.trophy-icon {
    font-size: 40px;
    color: var(--primary);
}

.awards-header h2 {
    font-size: 32px;
    color: var(--primary);
}

.award-highlight {
    margin-bottom: 30px;
}

.award-highlight h3 {
    font-size: 28px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.award-highlight h3 i {
    color: #4CAF50; /* Verde dinheiro */
}

.award-list {
    margin-bottom: 30px;
}

.award-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.gold { color: #FFD700; }
.silver { color: #C0C0C0; }
.bronze { color: #CD7F32; }

.promo-badge {
    background: rgba(246, 200, 43, 0.1);
    color: var(--primary);
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    border: 1px dashed var(--primary);
}

.mascote-premio {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 200px;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.5));
}


/* Experience */
.experience {
    background: url('tratorimagem.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.80); /* Overlay para dar destaque ao texto */
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-title.light-large {
    font-size: 56px;
    color: #fff;
    margin-bottom: 30px;
}

.exp-desc {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

.exp-desc strong {
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
}

.tractor-highlight {
    background: var(--primary);
    color: #000;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: rotate(-1deg);
}

.tractor-icon {
    background: #000;
    color: var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 30px;
}

.tractor-highlight h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.tractor-highlight p {
    font-weight: 600;
    font-size: 14px;
}

.exp-image {
    display: flex;
    justify-content: center;
}

.mascote-festa {
    max-width: 100%;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.8));
    animation: bounce 4s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Footer & CTA */
.footer {
    background: #000;
    padding-top: 80px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.cta-title {
    font-size: 40px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.large-btn {
    font-size: 22px;
    padding: 20px 60px;
    border-radius: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-contact h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 5px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    padding: 25px 0;
    color: var(--text-muted);
    font-size: 14px;
}


/* Responsividade */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }

    .hero-details {
        justify-content: center;
    }
    
    .mascote-correndo {
        max-width: 80%;
        margin-left: 0;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .challenges-container {
        grid-template-columns: 1fr;
    }
    
    .experience-container {
        grid-template-columns: 1fr;
    }
    
    .mascote-premio {
        display: none; /* Hide on smaller screens to prevent overflow */
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
        transition: 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-container .btn-nav {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-title.light-large {
        font-size: 40px;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr 1fr;
    }

    .countdown {
        gap: 10px;
    }

    .time-box {
        min-width: 50px;
        padding: 8px 10px;
    }

    .time-box span {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 18px;
    }
    
    .detail-item {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
