.elementor-162 .elementor-element.elementor-element-1826cbf{--display:flex;}.elementor-162 .elementor-element.elementor-element-1f6ac57 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-162 .elementor-element.elementor-element-24b94d8{--display:flex;}@media(max-width:767px){.elementor-162 .elementor-element.elementor-element-1f6ac57 > .elementor-widget-container{margin:20px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-1f6ac57 */.logore {
    margin: 0 auto;   
    margin-top: -170px;  
    margin-left: -50px;
}

/* Reset e variáveis */
:root {
    --primary: #e32424;
    --primary-dark: #003d7a;
    --secondary: #cc0000;
    --accent: #244363;
    --light: #f9f9f9;
    --white: #ffffff;
    --gray: #6c757d;
    --dark: rgb(27, 74, 153);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

/* PRIMEIRA LINHA: 3 COLUNAS */
.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--white);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    color: #adb5bd;
}

.footer-links li::before {
    content: '▸';
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.footer-links a {
    color: #adb5bd;
    transition: all 0.3s ease;
    flex: 1;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    margin-bottom: 2rem;
    gap: 2rem; /* Adicionado gap para espaçamento consistente */
}

.contact-wrapper {
    flex: 1;
    max-width: 500px;
}

.contact-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--white);
}

.contact-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.75rem;
    color: #adb5bd;
}

/* REDES SOCIAIS */
.social-footer-right {
    display: flex;
    justify-content: flex-end;
    width: auto;
    /* margin-right: 74px; - REMOVIDO para não atrapalhar o alinhamento */
}

.social-content {
    text-align: left;
    max-width: 300px;
}

.social-content h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
}

.social-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e32424; /* vermelho */
}

.social-links-right {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-links-right a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* Cores dos botões */
.social-fb { background: #316ff6; }
.social-ig { background: linear-gradient(72.44deg, #ff7a00 11.92%, #ff0169 51.56%, #d300c5 85.69%); }
.social-in { background: #0077b5; }
.social-yt { background: #ff0000; }
.social-wa { background: #25d366; }

.social-links-right a:hover {
    transform: translateY(-5px) rotate(5deg);
}

/* COPYRIGHT */
.footer-copyright {
    border-top: 1px solid #9b9b9b;
    padding-top: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Responsividade CORRIGIDA */
@media (max-width: 992px) {
    .footer-bottom-row {
        flex-direction: column;
        align-items: center; /* Centraliza os itens */
        gap: 2rem;
        text-align: center;
    }
    
    .contact-wrapper {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .contact-wrapper h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-list li {
        text-align: center;
        width: 100%;
        max-width: 400px;
    }
    
    .social-footer-right {
        justify-content: center;
        width: 100%;
        margin-right: 0;
    }
    
    .social-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .social-content h3 {
        text-align: center;
    }
    
    .social-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .footer-links li::before {
        display: none; /* Remove as setas no mobile para melhor alinhamento */
    }
    
    .contact-wrapper h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-wrapper {
        text-align: center;
    }
    
    .contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-list li {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .logore {
        margin: 0 auto;
        margin-top: -100px;
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .contact-list li {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .social-links-right a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}/* End custom CSS */