/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* TIPOGRAFIA */
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #1E1E1E;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* BOTÃO CTA */
.btn-cta {
    background: #00A651;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #008f45;
}

