* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    position: relative;
}

/* CONTAINER */
.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
/* HERO */
.hero {
    background: #fffaf3;
    padding: 60px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXTO */
.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #3a2e2a;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #5a4a45;
}
/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* BOTÃO */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ícone */
.whatsapp-float .icon {
    font-size: 26px;
}

/* tooltip */
.tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
}

/* aparece no hover (PC) */
.whatsapp-float:hover .tooltip {
    opacity: 1;
}
.whatsapp-float.full {
    width: auto;
    padding: 12px 18px;
    border-radius: 30px;
    gap: 8px;
    font-weight: bold;
}

.whatsapp-float.full .icon {
    font-size: 20px;
}

.whatsapp-float.full .text {
    font-size: 0.95rem;
}
/* BOTÕES */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    background: #d4a373;
    color: white;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #b08968;
}

.btn-outline {
    border: 2px solid #d4a373;
    color: #d4a373;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline:hover {
    background: #d4a373;
    color: white;
}

/* IMAGEM */
.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
}


/*.btn {
    background: #d4a373;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #b08968;
}*/

/* SOBRE */
.sobre {
    padding: 60px 20px;
    text-align: center;
}

/* BENEFÍCIOS */
.beneficios {
    padding: 80px 20px;
    text-align: center;
}

.beneficios h2 {
    margin-bottom: 40px;
}

.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #fff8f0;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* GALERIA */
.galeria {
    padding: 80px 20px;
    text-align: center;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.grid-galeria img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.grid-galeria img:hover {
    transform: scale(1.05);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: #6b3e26;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
}

/* RESPONSIVO */
/*@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-img {
        width: 100%;
        height: auto;
    }

    .hero .container {
        position: static; /* 👈 chave do problema */
        transform: none;
        padding: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-top: 15px;
    }/*
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ícone */
.whatsapp-float .icon {
    font-size: 26px;
}

/* tooltip */
.tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
}

/* aparece no hover (PC) */
.whatsapp-float:hover .tooltip {
    opacity: 1;
}
.whatsapp-float.full {
    width: auto;
    padding: 14px 20px;
    border-radius: 30px;
    gap: 8px;
    font-weight: bold;
}

.whatsapp-float.full .icon {
    font-size: 20px;
}

.whatsapp-float.full .text {
    font-size: 0.95rem;
}
}