
/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
}


/* =========================
   CONTEÚDO
========================= */

.hero-content {
    text-align: center;
    max-width: 700px;

    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;

    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;

    margin-bottom: 35px;
}


/* =========================
   BOTÃO APOIE
========================= */

.btn-apoie {
    display: inline-block;

    padding: 16px 45px;

    background-color: #ffffff;
    color: #222;

    text-decoration: none;

    font-size: 1rem;
    font-weight: bold;

    border-radius: 6px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.btn-apoie:hover {
    transform: translateY(-3px);

    background-color: #222;
    color: #ffffff;
}


/* =========================
   RESPONSIVIDADE
========================= */

@media (max-width: 600px) {

    .hero {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-apoie {
        width: 100%;
        max-width: 300px;
    }
}

