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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    overflow-x: hidden;
}

/* Partículas mágicas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.8), transparent);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(2n) {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6), transparent);
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    background: radial-gradient(circle, rgba(64, 224, 208, 0.7), transparent);
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 105, 180, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff69b4, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #ff69b4, #40e0d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(45deg, #ff69b4, #40e0d0);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

/* Hero Section com Slide */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(255, 105, 180, 0.3), rgba(64, 224, 208, 0.3)), 
                url('/assets/slide1.jpg') center/cover;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 255, 255, 0.3), rgba(255, 105, 180, 0.3)), 
                url('/assets/slide2.jpg') center/cover;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(64, 224, 208, 0.3), rgba(0, 255, 255, 0.3)), 
                url('/assets/slide3.jpg') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff69b4, #40e0d0, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8)); }
    to { filter: drop-shadow(0 0 30px rgba(64, 224, 208, 0.8)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #40e0d0;
    text-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.magic-button {
    background: linear-gradient(45deg, #ff69b4, #40e0d0);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.magic-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

/* Seções */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff69b4, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
    border-color: rgba(64, 224, 208, 0.5);
}

.card-icon {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 1rem;
    text-align: center;
}

.card h3 {
    color: #40e0d0;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Seção de eventos */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.evento-item {
    background: rgba(64, 224, 208, 0.1);
    border-left: 4px solid #40e0d0;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.evento-item:hover {
    background: rgba(64, 224, 208, 0.2);
    transform: translateX(10px);
}

.evento-day {
    color: #ff69b4;
    font-weight: bold;
    font-size: 1.1rem;
}

.evento-name {
    color: #40e0d0;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Download Section */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-btn {
    background: linear-gradient(45deg, #40e0d0, #00ffff);
    padding: 1.2rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.6);
}

/* Community Section */
.community-content {
    text-align: center;
    background: rgba(255, 105, 180, 0.1);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    background: linear-gradient(45deg, #ff69b4, #40e0d0);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.9);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 105, 180, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .magic-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animações suaves de scroll */
html {
    scroll-behavior: smooth;
}

/* Flores mágicas */
.magic-flower {
    position: absolute;
    color: rgba(255, 105, 180, 0.6);
    font-size: 1.5rem;
    animation: flower-float 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes flower-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-50px) rotate(180deg); opacity: 1; }
}
