/* Fontes utilizadas */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swa');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Configurações da página */
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Altura e largura da página */
html, body 
{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Body com layout flex */
body 
{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Cabeçalho */
.cabecalho 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

/* Container do cabeçalho */
.conteudo-cabecalho 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img 
{
    width: 180px;
    height: auto;
    cursor: pointer;
}

/* Menu */
.menu 
{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

/* Links */
.menu a 
{
    text-decoration: none;
    color: #2a0770;
    font-weight: 400;
    font-size: 18px;
}

/* Cor dos links */
.menu a:hover 
{
    color: rgb(36, 119, 96);
}

/* Ícones de redes no cabeçalho */
.sociais-header
{
    margin-left: auto;
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Estilo dos ícones */
.sociais-header i
{
    font-size: 22px;
    color: #2a0770;
    transition: 0.3s;
}

.sociais-header i:hover
{
    color: rgb(36, 119, 96);
    transform: scale(1.15);
}

/* Rodapé */
.rodape 
{
    position: relative;
    width: 100%;
    background-color: azure;
    text-align: center;
    padding: 10px 0;
    box-sizing: border-box;
}

/* Itens dentro do rodapé */
.conteudo-rodape 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2a0770;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 5px;
    line-height: 1.3;
    font-size: 18px;
    flex-wrap: nowrap;
}

/* Logo no rodapé */
.logo-rodape img 
{
    width: 130px;
    height: auto;
    cursor: pointer;
}

/* Informações do rodapé */
.texto 
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
}

/* Ícones de redes sociais */
.sociais 
{
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 24px;
}

/* Efeito dos ícones */
.sociais i:hover 
{
    color: rgb(36, 119, 96);
}

/* Estilização Botão WhatsApp */
.whatsapp-fixo
{
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #2a0770;
    color: #fff;
    font-size: 32px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px #00000055;
    z-index: 9999;
    transition: transform .3s, background-color .3s;
}

.whatsapp-fixo:hover
{
    transform: scale(1.15);
    background-color: #3d0a8f;
}

.whatsapp-fixo:active
{
    transform: scale(0.95);
    box-shadow: 0 2px 5px #00000055;
}

/* ... código existente ... */

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1024px) {
    .conteudo-cabecalho {
        padding: 15px 20px;
    }
    
    .menu {
        gap: 15px;
    }
    
    .menu a {
        font-size: 16px;
    }
    
    .conteudo-rodape {
        padding: 10px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .whatsapp-fixo {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .conteudo-cabecalho {
        flex-direction: column;
        gap: 15px;
        padding: 10px 15px;
    }
    
    .menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 15px;
        margin-left: 0;
    }
    
    .menu a {
        font-size: 14px;
    }
    
    .sociais-header {
        margin-left: 0;
        order: 2;
    }
    
    .conteudo-rodape {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo img {
        width: 150px;
    }
    
    .logo-rodape img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .menu {
        gap: 8px 12px;
    }
    
    .menu a {
        font-size: 13px;
    }
    
    .sociais-header {
        gap: 12px;
    }
    
    .whatsapp-fixo {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
        font-size: 20px;
    }
}