body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #f8f9fa;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.hero {
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
    height: 90vh;
    position: relative;
    color: white;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.btn {
    background: #d4af37;
    color: black;
    padding: 12px 30px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 500;
}

.btn-dark {
    background: black;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3, .card p {
    padding: 15px;
}

.financeiro {
    background: #1e1e1e;
    color: white;
    text-align: center;
}

.diferenciais ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.depoimentos {
    background: #f0f0f0;
}

.testimonial {
    margin-bottom: 30px;
}

.cta {
    background: #d4af37;
    text-align: center;
    padding: 60px 20px;
}

footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
}
