/* style.css - ACBIndaiatuba - VERSÃO FINAL CORRIGIDA */

:root {
    /* Cores baseadas no uniforme - com mais laranja e preto */
    --primary: #1A3B6E;      /* Azul royal do uniforme (mantido) */
    --secondary: #C41E3A;     /* Vermelho */
    --orange: #FF6B35;        /* Laranja principal - vibrante */
    --orange-light: #FF9F1C;  /* Laranja claro para detalhes */
    --orange-soft: #FFF1E6;   /* Laranja bem claro para fundos */
    --black: #0A0A0A;         /* Preto puro */
    --black-light: #1A1A1A;   /* Preto com leve tom */
    --dark: #0F1A2F;          /* Azul escuro */
    --darker: #050505;        /* Quase preto */
    --light: #333333;         /* CINZA ESCURO para textos */
    --white: #FFFFFF;         /* BRANCO para fundos */
    --gray-light: #F5F5F5;    /* Cinza claro para fundos alternativos */
    --gray: #666666;          /* Cinza médio */
    --gray-dark: #444444;      /* Cinza mais escuro */
    --success: #2E7D32;       /* Verde mantido */
    --warning: #ED6C02;       /* Laranja escuro */
    --danger: #D32F2F;        /* Vermelho ajustado */
    
    /* Efeitos mantidos */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-neon: 0 0 15px rgba(255, 107, 53, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --container-padding: 2rem;
}

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

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    color: var(--orange-light);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--white);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--container-padding);
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-container a {
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-subtext {
    display: block;
    font-size: 0.7rem;
    color: var(--orange);
    margin-top: -2px;
    letter-spacing: 1px;
}

/* ===== MENU HAMBÚRGUER ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--orange);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.hamburger:hover {
    transform: scale(1.1);
}

/* Overlay para quando o menu estiver aberto */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Navegação - DESKTOP */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li {
    position: relative;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    white-space: nowrap;
}

nav a:hover, 
nav a.active {
    color: var(--orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

nav a:hover::after, 
nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.login-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.1);
    white-space: nowrap;
}

.login-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.mobile-only {
    display: none !important;
}

/* ===== CARROSSEL ===== */
.carousel-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-caption {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 var(--container-padding);
    z-index: 2;
}

.carousel-caption h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.carousel-caption p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--orange);
    color: var(--orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-neon);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--orange);
    box-shadow: 0 0 10px var(--orange);
    transform: scale(1.2);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1503249023944-2c35c0b7b928?ixlib=rb-4.0.3&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--orange), var(--orange-light), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
    letter-spacing: -1.5px;
    line-height: 1.1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { text-shadow: 0 0 10px rgba(255, 107, 53, 0.2); }
    50% { text-shadow: 0 0 25px rgba(255, 159, 28, 0.3), 0 0 35px rgba(255, 107, 53, 0.3); }
    100% { text-shadow: 0 0 10px rgba(255, 107, 53, 0.2); }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light);
}

.next-commitment {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.next-commitment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--orange-light), #FFD700);
}

.next-commitment h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--light);
}

.next-commitment p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.event-date {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 10px;
    font-size: 1rem;
}

/* ===== MAIN CONTENT ===== */
main {
    padding: 3rem var(--container-padding);
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: var(--light);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    border-radius: 2px;
}

/* ===== EVENTOS ===== */
.events-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), var(--shadow-neon);
    border-color: var(--orange);
}

.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
}

.event-img {
    height: 180px;
    width: 100%;
    background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
    overflow: hidden;
    position: relative;
}

.event-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518241357869-4f98f7c9b863?ixlib=rb-4.0.3&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    transition: var(--transition);
}

.event-card:hover .event-img::after {
    opacity: 1;
    transform: scale(1.05);
}

.event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--orange);
}

.event-date {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin: 8px 0;
    font-size: 0.9rem;
    align-self: flex-start;
}

.event-desc {
    margin: 10px 0;
    font-size: 1rem;
    flex: 1;
    color: var(--light);
}

.event-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    padding-right: 25px;
    align-self: flex-start;
}

.event-link::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.event-link:hover::after {
    right: -5px;
}

/* ===== INFO CARDS ===== */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 107, 53, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--orange);
    display: inline-block;
    background: rgba(255, 107, 53, 0.05);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -20px auto 1rem;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--orange-light);
}

.info-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    flex: 1;
    color: var(--light);
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ===== NEWS SECTION ===== */
.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 107, 53, 0.2);
}

.news-img {
    height: 160px;
    width: 100%;
    background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
    position: relative;
    overflow: hidden;
}

.news-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517649763966-c6f66e7f9e8a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    transition: var(--transition);
}

.news-card:hover .news-img::after {
    opacity: 1;
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.85rem;
    align-self: flex-start;
}

.news-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--orange);
}

.news-excerpt {
    margin: 10px 0 15px;
    font-size: 1rem;
    flex: 1;
    color: var(--light);
}

.read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== TEAM SECTION ===== */
.team-section {
    margin-top: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), var(--shadow-neon);
}

.member-img {
    height: 220px;
    width: 100%;
    background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
    overflow: hidden;
    position: relative;
}

.member-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=774&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin: 15px 0 5px;
    color: var(--orange);
}

.member-role {
    color: var(--orange-light);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* ===== DONATION SECTION ===== */
.donation-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), url('https://images.unsplash.com/photo-1485968579580-b6d095142e6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    padding: 3rem 1.5rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.donation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.donation-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    z-index: 1;
}

.donation-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.donation-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.donation-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.donate-btn {
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.donate-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ===== SPONSORS SECTION ===== */
.sponsors-section {
    margin: 4rem 0;
    text-align: center;
}

.sponsors-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--orange);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sponsor-logo {
    height: 110px;
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--orange);
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    padding: 15px;
    box-shadow: var(--shadow);
}

.sponsor-logo:hover {
    transform: scale(1.05);
    border-color: var(--orange);
    box-shadow: var(--shadow-neon);
    background: var(--white);
}

.sponsor-img {
    padding: 10px;
    background: var(--white);
}

.sponsor-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.sponsor-logo:hover .sponsor-image {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px var(--orange));
}

.sponsor-text {
    background: var(--white);
    font-size: 1rem;
    padding: 20px;
}

/* ===== FOOTER CORRIGIDO ===== */
footer {
    background: var(--black-light);
    border-top: 2px solid var(--orange);
    padding: 3rem var(--container-padding) 1.5rem;
    color: var(--white);
    position: relative;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--orange) !important;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40%;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.footer-col p {
    color: var(--gray-light) !important;
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-col a {
    color: var(--gray-light) !important;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin: 8px 0;
    font-size: 1rem;
}

.footer-col a:hover {
    color: var(--orange) !important;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light) !important;
}

.contact-info i {
    color: var(--orange) !important;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--white) !important;
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.social-link:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.social-link.instagram { color: #e1306c !important; }
.social-link.facebook { color: #3b5998 !important; }
.social-link.youtube { color: #ff0000 !important; }

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    font-size: 0.95rem;
    color: var(--gray) !important;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 15px rgba(37, 211, 102, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 25px rgba(37, 211, 102, 0.4);
    color: white;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .carousel-caption h3 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block !important;
    }
    
    /* Menu escondido - FORÇADO */
    nav ul {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        flex-direction: column !important;
        background: var(--white) !important;
        width: 85% !important;
        max-width: 350px !important;
        height: 100vh !important;
        padding: 90px 2rem 2rem !important;
        transition: right 0.3s ease !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1) !important;
        border-left: 2px solid var(--orange) !important;
        z-index: 1001 !important;
        gap: 1.5rem !important;
        margin: 0 !important;
        display: flex !important;
        left: auto !important;
    }
    
    /* Menu aberto */
    nav ul.active {
        right: 0 !important;
    }
    
    nav ul li {
        width: 100% !important;
    }
    
    nav ul li a {
        display: block !important;
        font-size: 1.2rem !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1) !important;
        color: var(--light) !important;
        white-space: normal !important;
    }
    
    .mobile-only {
        display: block !important;
        margin-top: 1rem !important;
    }
    
    .mobile-login {
        color: var(--orange) !important;
        background: rgba(255, 107, 53, 0.05) !important;
        border: 1px solid var(--orange) !important;
        border-radius: 30px !important;
        padding: 12px 20px !important;
        text-align: center !important;
        border-bottom: none !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .menu-overlay.active {
        display: block !important;
    }
    
    .carousel-container {
        height: 400px;
    }
    
    .carousel-caption {
        bottom: 50px;
    }
    
    .carousel-caption h3 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .next-commitment h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtext {
        font-size: 0.6rem;
    }
    
    .logo {
        height: 45px;
    }
    
    .carousel-container {
        height: 350px;
    }
    
    .carousel-caption h3 {
        font-size: 1.6rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-section, 
    .events-section, 
    .news-container, 
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donation-title {
        font-size: 2rem;
    }
    
    .donation-text {
        font-size: 1.1rem;
    }
    
    .donate-btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sponsor-logo {
        height: 90px;
        padding: 10px;
    }
    
    .sponsor-image {
        max-height: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-subtext {
        font-size: 0.55rem;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-logo {
        max-width: 200px;
        margin: 0 auto;
    }
}