/* Reset básico */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #020111;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- HERO ---------- */
.hero {
    background-color: #000110;
    background-image: url('assets/hero-desktop.avif');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 95vh;
    padding: 81px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-wrap {
    width: 21%;
    max-width: 260px;
    display: flex;
    justify-content: center;
}

.logo-hero {
    width: 100%;
    height: auto;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    max-width: 54%;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #CC8F4E 0%, #F0CE99 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.scroll-arrow {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

/* ---------- CITIES ---------- */
.cities {
    padding: 30px 20px 100px;
    background-color: #020111;
}

.cities-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.city-card {
    display: block;
    width: 100%;
    max-width: 700px;
    transition: transform 0.4s ease;
}

.city-card:hover {
    transform: scale(1.05);
}

.city-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: #000022;
    padding: 25px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.logo-footer {
    width: 21%;
    max-width: 220px;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: #F0CE99; }

.footer-regulamento {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.footer-regulamento a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-regulamento a:hover { color: #F0CE99; }

.footer-copy {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #A8A8A8;
    margin: 10px 0 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .logo-wrap { max-width: 200px; width: 34%; }
    .hero-title { font-size: 36px; max-width: 80%; }
}

@media (max-width: 767px) {
    .hero {
        background-image: url('assets/hero-mobile.avif');
        background-size: contain;
        min-height: auto;
        padding: 120px 20px 8px;
        gap: 10px;
    }

    .hero-inner { gap: 10px; }

    .logo-wrap {
        width: 211px;
        max-width: 211px;
    }

    .logo-hero {
        max-width: 64%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 17px;
        max-width: 100%;
    }

    .cities { padding: 10px 15px 20px; }
    .cities-inner { gap: 15px; }

    .footer { padding: 25px 15px; }
    .logo-footer { width: 184px; max-width: 184px; }
    .footer-links a { font-size: 14px; }
    .footer-regulamento { font-size: 13px; margin: 10px 0 0; }
    .footer-copy { font-size: 12px; margin: 6px 0 0; }
}
