* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background: #fcbc3c;
    color: #fff;
    text-align: center;
    padding: 1.5em 1em;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

header p {
    font-size: 1.2em;
    opacity: 0.8;
}

main {
    padding: 1em;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 2em;
}

section h2 {
    font-size: 2em;
    color: #000;
    margin-bottom: 0.5em;
}

section p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

.call-to-action {
    background: #fff494;
    color: #fff;
    text-align: center;
    padding: 1em;
    margin: 2em 0;
    border-radius: 5px;
    margin-top: 100px;
}

.call-to-action a {
    display: inline-block;
    margin-top: 1em;
    text-decoration: none;
    color: #fff;
    background: #000000;
    padding: 0.7em 1.5em;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.call-to-action a:hover {
    background: #e65c00;
}

footer {
    background: #fcbc3c;
    color: #fff;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
    margin-top: 21  0px;
}

footer a {
    color: #ff6f00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section h2 {
        font-size: 1.5em;
    }

    section p {
        font-size: 1em;
    }
}