* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* HERO */
.hero {
    background: #0f172a;
    color: white;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-size: 2.5rem;
}

.hero-text h2 {
    color: #22c55e;
    margin: 15px 0;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* BOTÕES */
.btn-primary {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #16a34a;
}

.btn-secondary {
    background: #0f172a;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.big {
    font-size: 1.2rem;
    padding: 15px 35px;
}

/* CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* GALERIA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ABOUT */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content img {
    width: 100%;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: #0f172a;
    color: white;
    text-align: center;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    padding: 15px;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: white;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}