/* ================= MENU GLOBAL ================= */

nav {
    background-color: #ffffff;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.nav-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: absolute;
    left: 30px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--green);
}
/* ================================================================== */
/* BOTÃO WHATSAPP                                                     */
/* ================================================================== */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 16px 30px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
}
/* BOTÃO WHATSAPP POR SERVIÇO */

.btn-whatsapp-servico {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background-color: transparent;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--blue);
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp-servico:hover {
    background-color: var(--blue);
    color: #fff;
}
@media (max-width: 768px) {
    .nav-container {
        max-width: 100%;
        padding: 0 12px;
    }

    .logo {
        left: 12px;
    }

    .logo img {
        height: 42px;
    }

    nav ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 90px;
    }

    nav ul li a {
        font-size: 12px;
        letter-spacing: 0.2px;
    }
}
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 50px auto;
}

/* BOTÃO VOLTAR PADRÃO SERVIÇOS */
.voltar-servicos {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 18px;
    color: #25d366;
    border: 2px solid #25d366;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.voltar-servicos:hover {
    background: #25d366;
    color: #fff;
}

/* ========================================= */
/* LINKS DENTRO DE TEXTO (SEO SEM POLUIR)   */
/* ========================================= */

p a {
    color: inherit;          /* mesma cor do texto */
    text-decoration: none;   /* remove sublinhado */
    font-weight: 500;        /* leve destaque */
    border-bottom: 1px solid rgba(0,0,0,0.2); /* linha sutil */
}

p a:hover {
    color: var(--green);     /* usa cor do site */
    border-bottom: 1px solid var(--green);
}
