/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
    background: #F3E6D8;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

/* Menu */
nav {
    display: flex;
}

.menu-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.menu-list li a {
    text-decoration: none;
    color: #C96A3D;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: block;
}

.menu-list li a:hover {
    background-color: #C96A3D;
    color: white;
}

.menu-list li a.active {
    background-color: #C96A3D;
    color: white;
}

/* Botão Matrícula */
.btn-matricula {
    background-color: #C96A3D !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
}

.btn-matricula:hover {
    background-color: #a0522d !important;
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-mobile span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #C96A3D;
    border-radius: 3px;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #F3E6D8;
    padding: 60px 0 0 0;
    margin-top: 0;
}

.footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 40px;
}

/* Coluna 1 - Info */
.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #C96A3D;
    font-weight: 800;
}

.footer-info > p {
    color: #C96A3D;
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Ícones Sociais */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 106, 61, 0.15);
    color: #C96A3D;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icon:first-child:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon:last-child:hover {
    background: #25D366;
}

/* Coluna 2 - Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #C96A3D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #C96A3D;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: #a0522d;
    opacity: 1;
    transform: translateX(5px);
}

/* Coluna 3 - Contato */
.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C96A3D;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact-link:hover {
    color: #a0522d;
    opacity: 1;
}

.footer-contact-link svg {
    flex-shrink: 0;
}

/* Barra inferior */
.footer-bottom {
    border-top: 1px solid rgba(201, 106, 61, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #C96A3D;
    opacity: 0.7;
}

/* ========== RESPONSIVO GLOBAL ========== */
@media (max-width: 1024px) {
    .logo img {
        height: 60px;
    }
    
    .menu-list li a {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        height: 80px;
    }
    
    body {
        padding-top: 80px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .menu-mobile {
        display: flex;
    }
    
    .menu-list {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: #F3E6D8;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }
    
    .menu-list.active {
        left: 0;
    }
    
    .menu-list li {
        width: 100%;
    }
    
    .menu-list li a {
        padding: 15px;
        border-bottom: 1px solid rgba(201, 106, 61, 0.2);
        border-radius: 0;
    }
    
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-info {
        grid-column: 1;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #C96A3D;
        margin: 10px auto 0;
    }
    
    .footer-links ul li a:hover {
        transform: none;
    }
    
    .footer-contact-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .footer-info h3 {
        font-size: 1.5rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
}