

.hero {
    min-height: 600px; /* altura mínima fixa */
    padding-top: 110px;
    padding-bottom: 180px;
    /* padding-top: 110px; */
    background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
    }
}

header {
    height: 110px;
}
header::before {
    content: "";
    display: block;
    height: 10px;
    background-color: #82bebf;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.subtitle {
    margin-bottom: 20px;
}

.btn-green {
    background: #16a34a;
    padding: 10px 20px;
    border-radius: 6px;
}

.btn-dark {
    background: #1f2937;
    padding: 10px 20px;
    border-radius: 6px;
}



.card-container {
    max-width: 1100px;
    margin: -120px auto 0;
    position: relative;
    z-index: 40;
    padding: 0 20px;
}
/* CARD */
@media (max-width: 768px) {
    .card-container {
        margin: 0px auto 0;
    }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    gap: 20px;
}

.card-item {
    text-align: center;
    min-height: 200px;
}

.card-item .icon {
    font-size: 24px;
    color: #16a34a;
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: #111827;
    color: #4ade80;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    gap: 20px;
}

.copy {
    color: white;
}

.spacer {
    height: 120px;
}

