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

/* BASE */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #2c2c2c, #4d4d4d);
    color: white;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

/* HEADER */

header {
    background: rgba(0,0,0,0.25);
    border-bottom: 2px solid #c8a45a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

/* LOGO */

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #c8a45a;
}

/* NAV MENU */

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #c8a45a;
}

/* LOGIN BUTTON */

.btn-login {
    background: #c8a45a;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ccc;
}

/* BOTÕES */

.hero-buttons a {
    margin-right: 10px;
}

.btn-primary {
    background: #c8a45a;
    color: #000;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* IMAGEM */

.hero-image img {
    width: 350px;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.25);
}

footer p {
    color: white;
}

/* RESPONSIVO */

@media (max-width: 900px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 350px;
    }

    nav {
        display: none;
    }

}
