/* ================================
   ESTILO GERAL DA PÁGINA
================================ */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #fdfdfd;
    color: #222;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

p {
    line-height: 1.6;
}

/* ================================
   NAVBAR (mesmo padrão das outras páginas)
================================ */

.navbar {
    width: 100%;
    background: #ffffffee;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-container {
    max-width: 1250px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0a7a4f;
}

.nav-mobile-menu {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.nav-mobile-links {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.nav-mobile-links a {
    padding: 14px 18px;
    text-decoration: none;
    color: #333;
    border-top: 1px solid #eee;
}

.nav-mobile-links a:hover {
    background: #f2f2f2;
}

/* RESPONSIVE MENU */
@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .nav-mobile-menu {
        display: block;
    }

    .nav-logo img {
        height: 40px !important;
    }
}


/* ================================
   BANNER
================================ */

.banner-contato {
    width: 100%;
}

.banner-contato-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



/* ================================
   SEÇÃO 1 — CONTATO DIRETO
================================ */

.contato-section {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
}

.contato-title {
    font-size: 34px;
    color: #0a7a4f;
}

.contato-desc {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 40px;
    color: #444;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.contato-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 3px 12px #00000010;
    transition: 0.25s;
}

.contato-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px #00000015;
}

.contato-card h3 {
    margin-top: 0;
    color: #0a7a4f;
}

.email-text {
    font-size: 17px;
    margin-top: 8px;
}



/* BOTÕES */

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.btn-whatsapp:hover {
    background: #1eb257;
}

.btn-default {
    display: inline-block;
    background: #0a7a4f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.btn-default:hover {
    background: #095d3a;
}



/* ================================
   FORMULÁRIO DE CONTATO
================================ */

.form-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.form-title {
    font-size: 30px;
    color: #0a7a4f;
    text-align: center;
    margin-bottom: 30px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contato-form input,
.contato-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cfcfcf;
    font-size: 16px;
}

.form-btn {
    background: #0a7a4f;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.form-btn:hover {
    background: #095d3a;
}



/* ================================
   INFORMAÇÕES / ENDEREÇO
================================ */

.info-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
    text-align: center;
}

.info-title {
    font-size: 30px;
    color: #0a7a4f;
}

.info-desc {
    margin-bottom: 40px;
    font-size: 18px;
    color: #444;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 3px 12px #00000010;
}

.info-card h3 {
    color: #0a7a4f;
}



/* ================================
   RODAPÉ
================================ */

.xgens-footer {
    background: #f7f7f7ee;
    padding: 50px 20px 0 20px;
    border-top: 1px solid #ddd;
    margin-top: 60px;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #0a7a4f;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    color: #444;
}

.footer-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 40px;
    padding: 18px;
    text-align: center;
    background: #eee;
    border-top: 1px solid #ddd;
}
