/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #fff;
    color: #222;
    line-height: 1.5;
    overflow-x: hidden !important;
}

/* ====== NAVBAR ====== */
.navbar {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.logo img {
    height: 55px;
    cursor: pointer;
}

/* Links do menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #1DB954;
}

/* Botão WhatsApp Desktop */
.btn-whatsapp {
    background-color: #1DB954;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #18a349;
    transform: scale(1.05);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
}


/* ====== HERO ====== */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 700px;
    z-index: 2;
}

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

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 14px 30px;
}

/* ====== RESPONSIVIDADE ====== */
/* ====== RESPONSIVIDADE ====== */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #000;
        display: flex; /* Adicionado para melhor alinhamento */
        flex-direction: column;
        align-items: center; /* Adicionado para centralizar os links */
        gap: 25px; /* Adiciona um espaço entre os links */
        
        padding: 20px; /* Padding ajustado */
        transition: right 0.4s ease-in-out; /* 'right' e transição mais suave */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.1rem; /* Aumenta um pouco a fonte no mobile */
    }

    /* ---- CORREÇÃO DO BOTÃO E ÍCONE 'X' ---- */
    .menu-toggle {
        display: block;
        position: relative; /* Necessário para o z-index funcionar bem */
        z-index: 1000; /* ⭐ MUITO IMPORTANTE: Garante que o botão fique ACIMA do menu */
    }

    .menu-toggle .fa-times {
        display: none; /* O 'X' começa escondido */
    }

    /* Quando o menu estiver ativo... */
    .menu-toggle.active .fa-bars {
        display: none; /* ...o hambúrguer some. */
    }
    
    .menu-toggle.active .fa-times {
        display: block; /* ...e o 'X' aparece. */
    }
    /* -------------------------------------- */

    .btn-whatsapp {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}



/* ====== SEÇÃO AUTORIDADE ====== */
.autoridade {
    padding: 100px 5%;
    background-color: #f8f8f8;
}

.autoridade-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ====== LADO ESQUERDO — IMAGEM ====== */
.autoridade-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* ====== LADO DIREITO — TEXTO ====== */
.autoridade-text {
    flex: 1;
    text-align: left;
}

.autoridade-text h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.autoridade-text p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ====== LISTA DE DIFERENCIAIS ====== */
.diferenciais {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.diferenciais li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.diferenciais li i {
    font-size: 1.2rem;
    color: #1DB954; /* Verde padrão WhatsApp */
}

/* ====== BOTÃO WHATSAPP ====== */
.autoridade .btn-whatsapp {
    padding: 14px 34px;     /* Botão um pouco mais "alto" e "largo" */
    font-size: 1.05rem;     /* Fonte levemente maior */
    max-width: 320px;       /* Botão com limite mais amplo */
}


.autoridade .btn-whatsapp:hover {
    background-color: #18a349;
    transform: scale(1.05);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 991px) {
    .autoridade-content {
        flex-direction: column;
        text-align: center;
    }

    .autoridade-img img {
        max-width: 300px;
    }

    .autoridade-text {
        text-align: center;
    }

    .autoridade-text h2 {
        font-size: 1.6rem;
    }

    .autoridade-text p {
        text-align: center;
    }

    .diferenciais li {
        justify-content: center;
        text-align: center;
    }
}





/* ====== SEÇÃO GALERIA ====== */
.galeria {
    padding: 100px 5%;
    background-color: #fff;
    text-align: center;
}

.galeria h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
    font-weight: 700;
}

.galeria p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

/* ====== GRADE DE IMAGENS ====== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.galeria-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* ====== BOTÃO CTA CENTRALIZADO ====== */
.galeria-cta {
    display: flex;
    justify-content: center;
}

.galeria .btn-whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1DB954;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    max-width: 280px;
}

.galeria .btn-whatsapp:hover {
    background-color: #18a349;
    transform: scale(1.05);
}

/* ====== LIGHTBOX ====== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Botão fechar */
.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1DB954;
}

/* Controles de navegação */
.lightbox-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    padding: 0 30px;
}

.prev, .next {
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.prev:hover, .next:hover {
    color: #1DB954;
}

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

@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .galeria-item {
        height: 220px;
    }
}



/* ====== SEÇÃO SERVIÇOS ====== */
.servicos {
    padding: 100px 5%;
    background-color: #f8f8f8;
    text-align: center;
}

.servicos h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.servicos p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* GRID DE SERVIÇOS */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

/* CARD INDIVIDUAL */
.card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card h3 {
    font-size: 1.1rem;
    color: #000;
    margin: 15px 0 8px 0;
    font-weight: 700;
}

.card p {
    color: #555;
    font-size: 0.95rem;
    padding: 0 15px 20px 15px;
    line-height: 1.4;
}

/* EFEITOS DE HOVER */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card:hover img {
    transform: scale(1.05);
}

/* BOTÃO CTA CENTRALIZADO */
.servicos-cta {
    display: flex;
    justify-content: center;
}

.servicos .btn-whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1DB954;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    max-width: 300px;
}

.servicos .btn-whatsapp:hover {
    background-color: #18a349;
    transform: scale(1.05);
}

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

@media (max-width: 600px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 180px;
    }
}





/* ====== SEÇÃO PROVA SOCIAL ====== */
.provasocial {
    padding: 100px 5%;
    background-color: #fff;
    text-align: center;
}

.provasocial h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.provasocial p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* GRID DE PRINTS */
.provasocial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.provasocial-card {
    background-color: #f8f8f8;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.provasocial-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* HOVER NOS CARDS */
.provasocial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.provasocial-card:hover img {
    transform: scale(1.03);
}

/* BOTÃO CTA CENTRALIZADO */
.provasocial-cta {
    display: flex;
    justify-content: center;
}

.provasocial .btn-whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1DB954;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    max-width: 300px;
}

.provasocial .btn-whatsapp:hover {
    background-color: #18a349;
    transform: scale(1.05);
}

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

@media (max-width: 600px) {
    .provasocial-grid {
        grid-template-columns: 1fr;
    }
}





/* ====== SEÇÃO CHAMADA PARA ORÇAMENTO ====== */
.orcamento {
    position: relative;
    padding: 120px 5%;
    text-align: center;
    color: #fff;
    background: url('img/image1.jpg') no-repeat center center/cover;
}

.orcamento .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.orcamento .container {
    position: relative;
    z-index: 2;
}

.orcamento h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.orcamento p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

/* BOTÃO CTA COM EFEITO PULSANTE */
.orcamento-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.orcamento .btn-whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1DB954;
    color: #fff;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 40px;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.orcamento .btn-whatsapp:hover {
    background-color: #18a349;
    transform: scale(1.08);
}

/* Efeito pulsante */
.pulse {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(29, 185, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0); }
}

/* BENEFÍCIOS */
.beneficios {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.beneficios li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #fff;
}

.beneficios li i {
    color: #1DB954;
    font-size: 1.2rem;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
    .orcamento h2 {
        font-size: 1.6rem;
    }

    .orcamento p {
        font-size: 1rem;
    }

    .orcamento .btn-whatsapp {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .beneficios {
        flex-direction: column;
        gap: 12px;
    }
}





/* ====== SEÇÃO FAQ ====== */
.faq {
    padding: 100px 5%;
    background-color: #f8f8f8;
    text-align: center;
}

.faq h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* CONTEÚDO FAQ */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* ITEM FAQ */
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* PERGUNTA */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    transition: 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

/* ÍCONE */
.faq-question i {
    transition: transform 0.3s ease;
    color: #1DB954;
    font-size: 1.2rem;
}

/* RESPOSTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    color: #555;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* ESTILO QUANDO ABERTO */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

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

/* BOTÃO CTA */
.faq-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.faq .btn-whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1DB954;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    max-width: 300px;
}

.faq .btn-whatsapp:hover {
    background-color: #18a349;
    transform: scale(1.05);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 600px) {
    .faq h2 {
        font-size: 1.6rem;
    }

    .faq p {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}





/* ====== FOOTER ====== */
.footer {
    background-color: #0d0d0d;
    color: #fff;
    padding: 60px 5% 20px 5%;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* LOGO */
.footer-logo img {
    width: 220px;
    height: auto;
}

/* CONTATO */
.footer-contact {
    text-align: left;
}

.footer-contact h3 {
    color: #f0b429;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #ddd;
}

.footer-contact ul li i {
    color: #1DB954;
    font-size: 1.2rem;
    min-width: 22px;
}

/* LINKS */
.footer-contact a {
    color: #1DB954;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #18a349;
}

/* REDES SOCIAIS */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #1DB954;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bbb;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}
