/* ============================================
   MAIS GATA ESTUDANTIL - ESTILOS GLOBAIS
   Design: Minimalismo Fashionista
   Cores: Preto, Branco, Dourado
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   MENU BURGER
   ============================================ */

.menu-burger {
    position: fixed;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.menu-burger span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
    display: block;
}

.menu-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-burger.active span:nth-child(2) {
    opacity: 0;
}

.menu-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   SIDEBAR MENU
   ============================================ */

.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 40px 40px;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #D4AF37;
}

.menu-items {
    list-style: none;
    margin-bottom: 40px;
}

.menu-items li {
    margin-bottom: 30px;
}

.menu-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    display: block;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
}

.menu-footer {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    font-size: 12px;
    color: #999999;
}

.menu-footer p {
    margin-bottom: 5px;
}

/* ============================================
   OVERLAY
   ============================================ */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 60px 40px;
    background-color: #FFFFFF;
    gap: 60px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin: 20px 0 30px;
    color: #000000;
}

.hero-content p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    animation: slideInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.btn-accent {
    background-color: #D4AF37;
    color: #000000;
    border-color: #D4AF37;
}

.btn-accent:hover {
    background-color: #000000;
    color: #D4AF37;
    border-color: #D4AF37;
}

/* ============================================
   DIVISOR DOURADO
   ============================================ */

.divider-gold {
    width: 48px;
    height: 2px;
    background-color: #D4AF37;
    margin-bottom: 30px;
}

/* ============================================
   SEÇÃO DE PATROCINADORES
   ============================================ */

.sponsors {
    background-color: #FFFFFF;
    padding: 80px 40px;
    border-top: 1px solid #000000;
}

.sponsors h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.sponsors > .container > p {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin-bottom: 60px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.sponsor-card {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sponsor-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.sponsor-card h3 {
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
}

.sponsor-cta {
    background-color: #F5F5F5;
    border-left: 4px solid #D4AF37;
    padding: 40px;
}

.sponsor-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.sponsor-cta p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
    max-width: 600px;
}

/* ============================================
   CALL TO ACTION
   ============================================ */

.cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-section .divider-gold {
    margin: 0 auto 30px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #FFFFFF;
    border-top: 1px solid #000000;
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #666666;
    font-size: 14px;
}

.footer-section a:hover {
    color: #000000;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
    font-size: 12px;
    color: #999999;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVO
   ============================================ */



/* TELAS MENORES QUE 1024px */
@media (max-width: 1024px) {

    .hero {
        gap: 40px;
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }



/* TABLETS */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        width: 100%;
        max-width: 400px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .sponsors {
        padding: 60px 20px;
    }

    .sponsors h2 {
        font-size: 32px;
    }

    .sponsors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sponsor-card {
        min-height: 200px;
        padding: 40px 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

/* CELULARES */
@media (max-width: 480px) {

    .menu-burger {
        top: 20px;
        left: 20px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-image {
        max-width: 300px;
    }

    .divider-gold {
        margin-left: auto;
        margin-right: auto;
    }

    .sponsors h2 {
        font-size: 26px;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-card {
        min-height: 180px;
    }

    .sponsor-icon {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .btn {
        font-size: 12px;
        padding: 12px 20px;
    }

}