.contato-body main{
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
/* ===========================
   CONTATO
   =========================== */
.contato-section {
    background: #0d2318;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 40px 110px;   
}
.contato-section .contato-center {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    gap: 60px;
    align-items: stretch;

}
/*===========================
   CONTATO - TABELA ESQUERDA
   =========================== */
.contato-section .contato-center .tabelaEsq{
    flex: 0 0 380px;
    color: #fff;
}
.contato-section .contato-center .tabelaEsq h2{
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
}
.contato-subtitulo {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 36px;
}

.contato-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.contato-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contato-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.contato-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: #6fcfa0;
}
.contato-info-text strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}
.contato-info-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
}
/*===========================
   CONTATO - BOTÕES
   =========================== */
.contato-buttons {
    display: flex;
    gap: 12px;
}
.button-wpp{
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 13px 16px;
background: #25D366;
color : white;
border-radius: 10px;
text-decoration: none;
font-weight: 700;
font-size: 0.9rem;
transition: opacity 0.2s, transform 0.15s;
}
.button-wpp:hover{
    opacity: 0.88;
    transform: translateY(-2px);
}
.button-ig{
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 13px 16px;
gap: 8px;
background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
color: #fff;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: opacity 0.2s, transform 0.2s;
}
.button-ig:hover{
    opacity: 0.88;
    transform: translateY(-2px);
}
/*===========================
   CONTATO - MAPA
   =========================== */
.contatomapa {
    flex: 1;
    align-self: stretch;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.8);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.contatomapa iframe {
    width: 100%;
    height: 100%;
    min-height: 390px;
    display: block;
    border: 0;
}
/* ===========================
   FAQ
   =========================== */
.faq-section {
    width: 100%;
    max-width: 1100px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 40px;
}
.faq-titulo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.2;
}
.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s;
}
.faq-item.faq-aberto {
    border-color: rgba(111, 207, 160, 0.45);
    background: rgba(111, 207, 160, 0.05);
}
.faq-pergunta {
    width: 100%;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
    font-family: inherit;
    line-height: 1.4;
}
.faq-pergunta:hover {
    color: #6fcfa0;
}
.faq-item.faq-aberto .faq-pergunta {
    color: #6fcfa0;
}
.faq-chevron {
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.25s ease;
}
.faq-item.faq-aberto .faq-chevron {
    transform: rotate(180deg);
}
.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s ease;
    padding: 0 20px;
}
.faq-item.faq-aberto .faq-resposta {
    max-height: 200px;
    padding: 0 20px 18px;
}
.faq-resposta p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   CONTATO - RESPONSIVO
   =========================== */
@media (max-width: 900px) {
    .contato-section {
        padding: 40px 20px 80px;
    }
    .contato-section .contato-center {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    .contato-section .contato-center .tabelaEsq {
        flex: none;
        width: 100%;
        
    }
    .contact-info-item {
        justify-content: flex-start;
    }
    .contato-buttons {
        justify-content: center;
    }
    .contatomapa {
        width: 100%;
        height: 300px;
    }
    .contatomapa iframe {
        height: 280px;
    }
}
@media (max-width: 600px) {
    .contato-section {
        padding: 32px 20px 60px;
    }
    .contato-section .contato-center .tabelaEsq h2 {
        font-size: 1.8rem;
    }
    .contato-subtitulo {
        font-size: 0.88rem;
    }
    .contato-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .button-wpp,
    .button-ig {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    .contatomapa iframe {
        height: 280px;
    }
    .faq-section {
        margin-top: 32px;
        padding-top: 28px;
    }
    .faq-titulo {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    .faq-pergunta {
        font-size: 0.875rem;
        padding: 14px 16px;
    }
    .faq-item.faq-aberto .faq-resposta {
        padding: 0 16px 14px;
    }
}


