* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #042d13;
    color: white;
    overflow-x: hidden;
}

/* Fundo */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Navbar */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.logo span {
    color: #f4b400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: .3s;
}

nav a:hover {
    color: #f4b400;
}

.btn {
    background: #f4b400;
    color: black;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    right: -200px;
    width: 850px;
    height: 700px;
    border-radius: 50%;
    background: #f4b400;
    filter: blur(150px);
    opacity: .25;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-small {
    letter-spacing: 5px;
    color: #f4b400;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 6rem;
    line-height: 0.95;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #f4b400;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.primary {
    background: #f4b400;
    color: black;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.secondary {
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

.hero-logo {
    font-size: 12rem;
    z-index: 2;
}

/* Secções */

section {
    padding: 100px 8%;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
}

.section-title span {
    color: #f4b400;
}

.card {
    background: rgba(255, 255, 255, .05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
}

/* Jogos */

.calendar {
    padding: 100px 8%;
}

.calendar-subtitle {
    color: #f4b400;
    letter-spacing: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.calendar h2 {
    font-size: 4rem;
    margin-bottom: 50px;
}

.match-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
}

.date {
    min-width: 90px;
    font-size: 2rem;
    font-weight: 700;
    color: #f4b400;
}

.teams {
    flex: 1;
}

.teams h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.teams span {
    color: #999;
}

.teams p {
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
}

.time {
    min-width: 80px;
    color: #cfcfcf;
}

.badge {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.home {
    background: #f4b400;
    color: black;
}

.away {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #ddd;
}

@media(max-width:800px) {

    .match-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .time {
        margin-top: 10px;
    }

}

/* Contacto */

.contact {
    text-align: center;
}

.contact p {
    margin: 15px 0;
}

/* Footer */

footer {
    padding: 30px;
    text-align: center;
    background: #021d0c;
    margin-top: 50px;
}

@media(max-width:900px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 4rem;
    }

    nav ul {
        display: none;
    }

    .hero-logo {
        z-index: 2;
    }

    .hero-logo img {
        width: 400px;
        max-width: 100%;
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, .2));
    }

    #localizacao {
        padding: 40px;
        text-align: center;
    }

    #localizacao iframe {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

}