@import url('https://fonts.googleapis.com/css2?family=Anton&family=Quicksand:wght@300..700&display=swap');

/* ── RESET ── */
* {
    box-sizing: border-box;
}

/* ── BASE ── */
body {
    font-family: "Quicksand", sans-serif;
    margin: 0;
    font-size: 16px;
    background-color: #fff;
}

h1, h2, h3 {
    font-family: "Anton", sans-serif;
}

h1 { font-size: 42px; }
h2, h3 { font-size: 36px; }

.container p, li, a {
    font-family: "Quicksand", sans-serif;
    font-size: 24px;
}

.container {
    padding-left: 6.25em;
    padding-right: 6.25em;
    justify-content: space-between;
    align-items: center;
}

/* ── NAVBAR ── */
.navbar {
    background-color: #f8c93d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 6.25em;
    padding-right: 6.25em;
}

.navbar img {
    height: 100px;
    padding: 1em;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    padding: 0.625em;
}

.navbar a {
    text-decoration: none;
    color: black;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
}

/* ── BOTÓN ── */
.button {
    border-radius: 1em;
    padding: 1em;
    font-size: 1em;
    border: none;
    color: #ebe9eb;
    background-color: #612096;
    box-shadow: 0 4px 12px #c694ed;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    cursor: pointer;
}

/* ── TÍTULO / HERO ── */
.title {
    background-color: #f8c93d;
    display: flex;
    padding-top: 3em;
    padding-bottom: 3em;
}

.title-text {
    display: flex;
    flex-direction: column;
}

.title-img {
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ── MANIFIESTO ── */
.manifiesto {
    background-color: #c694ed;
    display: flex;
    margin-left: 15em;
    margin-right: 15em;
    margin-top: 6.25em;
    margin-bottom: 6.25em;
    flex-direction: column;
    border-radius: 1em;
    padding-bottom: 1em;
}

/* ── EXPECTATIVAS ── */
.expectativas {
    background-color: #ebe9eb;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    padding-top: 50px;
}

/* ── FACILITADORA ── */
.facilitadora {
    background-color: white;
    display: flex;
}

.facilitadora a {
    color: #1F2937;
}

.facilitadora-text {
    padding-right: 200px;
}

.facilitadora-img img {
    height: 400px;
    padding: 10px;
}

/* ── CTA ── */
.cta {
    background-color: #612096;
    display: flex;
    color: #ebe9eb;
    flex-direction: column;
    padding-top: 3em;
    padding-bottom: 3em;
}

.cta p {
    font-size: 1em;
}

.button-outline {
    color: #c694ed;
}

/* ── FOOTER ── */
footer {
    background-color: #1F2937;
    color: #F9FAF8;
    height: 52px;
    font-family: "Quicksand", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── RESPONSIVE ── */
@media screen and (max-width: 600px) {
    .navbar {
        padding-left: 2em;
        padding-right: 2em;
        justify-content: center;
    }

    .navbar ul {
        display: none;
    }

    .container {
        padding-left: 2em;
        padding-right: 2em;
    }

    .title-img {
        display: none;
    }

    .manifiesto {
        justify-content: center;
        margin: 0;
        border-radius: 0;
    }

    .expectativas {
        justify-content: center;
        margin: 0;
    }

    .facilitadora {
        margin-bottom: 2em;
    }

    .facilitadora-text {
        padding-right: 0;
    }

    .facilitadora img {
        display: none;
    }
}
