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

body {
text-decoration: none;
    background-color: rgba(255,255,255,1.00);
    color: #333;
    /* Adiciona um espaço no topo igual à altura do header para o conteúdo não sumir atrás dele */
    padding-top: 76px; 
}

/* Remove a formatação padrão de links de telefone */
.link-telefone, 
a[href^="tel"] {
    color: inherit; /* Puxa a cor branca do texto pai */
    text-decoration: none !important; /* Tira a linha azul forçadamente */
}

/* CORES PRINCIPAIS */
:root {
    --azul-escuro: #1b263b;
    --vermelho: #e60000;
    --verde-whats: #00664d;
    --cinza-escuro: #2a2a2a;
}


/* --- NOVO RODAPÉ --- */
.footer {
    background-color: var(--azul-escuro);
    color: #fff;
    padding: 0; /* Zerado para o bloco branco preencher a altura */
    border-top: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Estica os itens para terem a mesma altura */
    max-width: 1200px; /* Um pouco mais largo para dar respiro */
    margin: 0 auto;
}

/* 1. Bloco do Logo */
.footer-logo-box {
    background-color: #fff;
 
    
    align-items: center;
    justify-content: center;
}
.footer-logo-box img {
    width: 258px;
 
    object-position: center;
    object-fit: cover;
}

/* 2. Menu de Links */
.footer-links {
    display: flex;
    align-items: center;
    padding: 20px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--vermelho);
}

/* 3 e 4. Blocos de Contato (Endereço e Whats) */
.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
    text-decoration: none !important; /* Tira a linha azul forçadamente */
}

.footer-contact-item a p {

color: rgba(255,255,255,1.00);
list-style: none;
text-decoration: none !important; /* Tira a linha azul forçadamente */
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.5px;
}
.footer-contact-item p {

color: rgba(255,255,255,1.00);
list-style: none;
text-decoration: none !important; /* Tira a linha azul forçadamente */
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.5px;
}
.phone-text {
list-style: none;
text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}
.phone-text .ddd {
list-style: none;
text-decoration: none;
    font-size: 16px;
    vertical-align: top;
    margin-right: 2px;
}

/* 5. Redes Sociais */
.footer-socials-new {
float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 40px 40px 20px 20px;
}
.social-circle {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s;
}
.social-circle:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}










/* --- RESPONSIVIDADE DO RODAPÉ (MOBILE) --- */
/* RESPONSIVIDADE BÁSICA */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-box {
        width: 100%; /* Ocupa 100% da largura no celular */
        padding: 30px 20px;
        margin-bottom: 20px;
        text-align: center;
         margin: 0 auto;
    }
    
    .footer-logo-box img {
    width: 258px;
     height: 140px;
    object-position: center;
    object-fit: cover;
}

    
    
    
    .footer-links {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-contact-item {
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    .footer-socials-new {
        flex-direction: row; /* Coloca os ícones lado a lado no celular */
        padding: 10px 20px 40px 20px;
    }
}
