/* Estilos para Seção Comemorativa 18 Anos */

.anniversary-section {
    background: linear-gradient(135deg, #0F2E24 0%, #1A4A3D 50%, #26A69A 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.anniversary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,215,0,0.15)"/><circle cx="40" cy="80" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="90" cy="90" r="1.2" fill="rgba(255,215,0,0.12)"/></svg>') repeat;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.anniversary-banner {
    text-align: center;
    margin-bottom: 40px;
}

.anniversary-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.anniversary-image:hover {
    transform: scale(1.02);
}

.anniversary-content {
    position: relative;
    z-index: 2;
}

.anniversary-text {
    text-align: center;
    margin-bottom: 50px;
}

.anniversary-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.anniversary-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 30px;
}

.anniversary-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.anniversary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.anniversary-cta {
    text-align: center;
}

.anniversary-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #1A4A3D;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.anniversary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.anniversary-btn:hover::before {
    left: 100%;
}

.anniversary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #0F2E24;
}

.anniversary-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .anniversary-title {
        font-size: 2.2rem;
    }
    
    .anniversary-subtitle {
        font-size: 1.2rem;
    }
    
    .anniversary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .anniversary-btn {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .anniversary-stats {
        grid-template-columns: 1fr;
    }
    
    .anniversary-title {
        font-size: 1.8rem;
    }
    
    .anniversary-text p {
        font-size: 1rem;
    }
}



/* Estilos para Badge Comemorativo no Hero */
.anniversary-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1A4A3D;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
        transform: scale(1.02);
    }
}

/* Ajustes responsivos para o badge */
@media (max-width: 768px) {
    .anniversary-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .anniversary-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

