/* Importando Fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

/* ---- HEADER ---- */
.hero {
    position: relative;
    background: url('fundo.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Escurecendo a imagem */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: #2E7D32;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #1B5E20;
}




/* ---- FAIXA BRANCA NO TOPO ---- */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 20px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.top-bar p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2E7D32;
    margin: 0 auto;
}

/* ---- LOGO ---- */
.logo {
    width: 150px; /* Ajuste conforme necessário */
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* ---- ANIMAÇÃO DO CORAÇÃO ---- */
.heart {
    color: red;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 120px; /* Reduz o tamanho para telas menores */
        margin-bottom: 5px;
    }

    .top-bar p {
        font-size: 1rem;
    }
}




/* ---- BENEFÍCIOS ---- */
.benefits {
    text-align: center;
    padding: 60px 20px;
    background: #f0f8f0;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.benefit {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 10px;
}





/* ---- PARA QUEM ---- */
.for-who {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.for-who-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.for-who-item {
    flex: 1;
    min-width: 280px;
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.for-who-item:hover {
    transform: scale(1.05);
}

.for-who-item i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 10px;
}




/* ---- GALERIA ---- */
.gallery {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ---- MODAL DA GALERIA ---- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.modal-content {
    margin-top: 2%;
    max-width: 500px;
    max-height: 700px;
    width: 90%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev, .next {
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.prev {
    margin-left: 20px;
}

.next {
    margin-right: 20px;
}

.modal-content, .close, .prev, .next {
    transition: 0.3s;
}

.close:hover, .prev:hover, .next:hover {
    opacity: 0.7;
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ---- QUEM É A BAQUET ---- */
.about {
    padding: 60px 20px;
    background: #f0f8f0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    gap: 40px;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image img {
        max-width: 100%;
    }
}


/* ---- DEPOIMENTOS ---- */
.testimonials {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.testimonials-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
}

.testimonials-grid img:hover {
    transform: scale(1.05);
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}




/* === SEÇÃO CLIENTES === */
.clientes {
    padding: 6rem 1rem;
    background-color: #064e3b; /* tom escuro verde (Tailwind: bg-green-900) */
    color: white;
    text-align: center;
}

.clientes h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.clientes-grid img {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.clientes-grid img:hover {
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 640px) {
    .clientes h2 {
        font-size: 1.5rem;
    }

    .clientes-grid img {
        width: 9rem;
        height: 9rem;
    }
}





/* ---- FAQ ---- */
.faq {
    text-align: center;
    padding: 60px 20px;
    background: #f0f8f0;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    background: #e8f5e9;
    border-radius: 8px;
}

.faq-question:hover {
    background: #d7edd9;
}

.faq-question i {
    transition: transform 0.3s ease-in-out;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .faq-container {
        width: 100%;
    }
}


/* ---- OUTROS SERVIÇOS ---- */
.other-services {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.other-services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

.service-item {
    position: relative;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-decoration: none;
}

.service-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 1.2rem;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item:hover .service-overlay {
    background: rgba(0, 0, 0, 0.8);
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}



/* ---- FOOTER ---- */
.footer {
    background: #600000; /* Cor semelhante ao print */
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 1rem;
}

.footer a {
    color: #FFA500; /* Laranja/dourado para destacar */
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

