body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f9f6f1;
}


.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
        url('cabeçalho.png') center/cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    color: #e07b07;
}

.button {
    width: 80%;
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -90%);
}

h1 {
    color: #ff7b00;
    margin: 0px;
}

.btn {
    background: #e67e22;
    color: white;
    padding: 12px 25px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 30px;
    text-decoration: none;
}

.navbar {
    position: sticky;
    top: 0;
    background: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    display: flex;
    list-style: none;
}

li a {
    color: brown;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
}

.navbar li {
    margin-left: 20px;

}

.container {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.cards-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.grid-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.cta {
    background: #8b4513;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

footer {
    background: #726653;
    color: white;
    text-align: center;
    padding: 0.1px;
}

/* animação */
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}


footer a {
    color: #ff8a04;
    text-decoration: none;
}