/* ---- 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);
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ---- BOTÃO CTA ---- */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s;
}

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

.cta-button i {
    font-size: 1.5rem;
}

/* ---- TOPO COM LOGO E TEXTO ---- */
.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: 10;
}

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

.logo {
    width: 150px;
    height: auto;
}

.heart {
    color: red;
    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) {
    .hero h1 {
        font-size: 2rem;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 120px;
        margin-bottom: 5px;
    }

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



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

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

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

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

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

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

.benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #004d40;
}

.benefit p {
    font-size: 1rem;
    line-height: 1.5;
}

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


html, body {
    max-width: 100%;
    overflow-x: hidden;
}




/* ---- PARA QUEM É IDEAL ---- */
.para-quem {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.para-quem h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

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

.para-item {
    background: #f3fbf3;
    padding: 30px 20px;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.para-item i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 15px;
}

.para-item h3 {
    font-size: 1.3rem;
    color: #004d40;
    margin-bottom: 10px;
}

.para-item p {
    font-size: 1rem;
    line-height: 1.6;
}

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



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

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

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

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

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

/* ---- MODAL ---- */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 800px;
    width: 90%;
    max-height: 90%;
}

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

.nav-arrow {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transform: translateY(-50%);
}

.left {
    left: 15px;
}

.right {
    right: 15px;
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
    }
}



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

.diferenciais h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}


.diferencial-item {
    background: #f3fbf3;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.diferencial-item i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 15px;
}

.diferencial-item h3 {
    font-size: 1.2rem;
    color: #004d40;
    margin-bottom: 10px;
}

.diferencial-item p {
    font-size: 1rem;
    line-height: 1.6;
}

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




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

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

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

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

.about-text h2 {
    font-size: 2rem;
    color: #004d40;
    margin-bottom: 20px;
}

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

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

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

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




/* === 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: #ffffff;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

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

.faq-item {
    background: #f3fbf3;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: #2E7D32;
}

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

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

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

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


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

.other-services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #004d40;
}

.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: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

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

.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 ease;
}

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

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

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



/* ---- FOOTER ---- */
.footer {
    background: #2E3A2D;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
}

.footer a {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

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

