/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas na imagem */
    --orange-neon: #FF6B35;
    --green-neon: #7FFF00;
    --pink-neon: #FF1493;
    --purple-neon: #8A2BE2;
    --dark-bg: #1A0B2E;
    --black-bg: #000000;
    --white-text: #FFFFFF;
    
    /* Tipografia */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Inter', sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--black-bg);
    color: var(--white-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Containers e Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-bg), var(--black-bg));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-neon), var(--green-neon));
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--orange-neon);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white-text);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 100px;
    background: 
        linear-gradient(180deg, 
            rgba(26, 11, 46, 0.8) 0%, 
            rgba(138, 43, 226, 0.6) 30%,
            rgba(255, 20, 147, 0.4) 60%,
            rgba(255, 107, 53, 0.6) 80%,
            rgba(255, 165, 0, 0.8) 100%
        ),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 255, 0, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

/* Elementos de praia */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: 
        radial-gradient(ellipse 80% 100% at center bottom, 
            rgba(255, 223, 186, 0.3) 0%, 
            rgba(238, 203, 173, 0.2) 40%, 
            transparent 70%
        );
    z-index: 0;
}

/* Ondas do mar */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 191, 255, 0.2) 20%, 
            rgba(30, 144, 255, 0.3) 50%, 
            rgba(0, 191, 255, 0.2) 80%, 
            transparent 100%
        );
    animation: wave 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(-20px) scaleY(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translateX(20px) scaleY(1.2);
        opacity: 0.9;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.stars {
    position: absolute;
    width: 100%;
    height: 70%;
    background-image: 
        /* Estrelas grandes */
        radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 223, 186, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 223, 186, 0.9), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.8), transparent),
        /* Estrelas médias */
        radial-gradient(1px 1px at 200px 50px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 250px 20px, rgba(255, 223, 186, 0.7), transparent),
        radial-gradient(1px 1px at 300px 90px, rgba(255, 255, 255, 0.5), transparent),
        /* Constelações */
        radial-gradient(1px 1px at 180px 60px, rgba(127, 255, 0, 0.4), transparent),
        radial-gradient(1px 1px at 320px 40px, rgba(255, 20, 147, 0.3), transparent);
    background-repeat: repeat;
    background-size: 400px 200px;
    animation: twinkle 6s infinite ease-in-out;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

/* Palmeiras decorativas */
.palm-trees {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.palm-left, .palm-right {
    position: absolute;
    bottom: 0;
    width: 150px;
    height: 400px;
    background: 
        radial-gradient(ellipse 15px 200px at 50% 100%, 
            rgba(34, 139, 34, 0.3) 0%, 
            rgba(34, 139, 34, 0.1) 60%, 
            transparent 100%
        );
    opacity: 0.4;
    animation: palmSway 8s ease-in-out infinite;
}

.palm-left {
    left: -50px;
    transform-origin: bottom center;
    animation-delay: 0s;
}

.palm-right {
    right: -50px;
    transform-origin: bottom center;
    animation-delay: 2s;
}

.palm-left::before, .palm-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(ellipse 40px 30px at center, 
            rgba(34, 139, 34, 0.4) 0%, 
            rgba(34, 139, 34, 0.2) 50%,
            transparent 100%
        );
    border-radius: 50% 50% 20% 20%;
}

@keyframes palmSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    z-index: 2;
    margin-top: 20px;
    position: relative;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    z-index: 3;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: 
        radial-gradient(ellipse 120% 80% at center, 
            rgba(255, 223, 186, 0.1) 0%, 
            rgba(127, 255, 0, 0.05) 30%,
            rgba(255, 20, 147, 0.08) 60%,
            transparent 100%
        );
    border-radius: 30px;
    z-index: -1;
    animation: beachGlow 6s ease-in-out infinite alternate;
}

@keyframes beachGlow {
    0% { 
        opacity: 0.4; 
        transform: scale(1) rotate(-1deg); 
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02) rotate(0deg);
    }
    100% { 
        opacity: 0.5; 
        transform: scale(1.01) rotate(1deg); 
    }
}

.leaders-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 650px;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 223, 186, 0.2),
        inset 0 0 60px rgba(255, 107, 53, 0.1);
    transition: var(--transition-smooth);
    object-fit: contain;
    object-position: center;
    filter: 
        drop-shadow(0 0 20px rgba(255, 223, 186, 0.3))
        drop-shadow(0 0 40px rgba(255, 107, 53, 0.2));
    position: relative;
    z-index: 2;
}

.leaders-img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 223, 186, 0.4),
        inset 0 0 80px rgba(255, 107, 53, 0.2);
    filter: 
        drop-shadow(0 0 30px rgba(255, 223, 186, 0.5))
        drop-shadow(0 0 50px rgba(255, 107, 53, 0.3));
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    animation: logoFloat 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(127, 255, 0, 0.1) 30%,
        rgba(255, 20, 147, 0.08) 60%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: -1;
    animation: logoGlow 4s ease-in-out infinite;
}

.hero-logo-img {
    height: 160px;
    width: auto;
    transition: var(--transition-smooth);
    cursor: pointer;
    animation: logoPulse 3s ease-in-out infinite;
    filter: 
        drop-shadow(0 0 25px rgba(255, 107, 53, 0.8))
        drop-shadow(0 0 40px rgba(127, 255, 0, 0.6))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    position: relative;
    z-index: 2;
}

.hero-logo-img:hover {
    transform: scale(1.15);
    filter: 
        drop-shadow(0 0 40px rgba(255, 107, 53, 1))
        drop-shadow(0 0 60px rgba(127, 255, 0, 0.8))
        drop-shadow(0 0 80px rgba(255, 20, 147, 0.6))
        drop-shadow(0 6px 12px rgba(0, 0, 0, 0.9));
    animation-play-state: paused;
}

@keyframes logoFloat {
    0% { 
        transform: translateY(0px);
    }
    100% { 
        transform: translateY(-15px);
    }
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateX(-50%) scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(-50%) scale(1.1); 
    }
}

@keyframes logoPulse {
    0%, 100% { 
        filter: 
            drop-shadow(0 0 25px rgba(255, 107, 53, 0.8))
            drop-shadow(0 0 40px rgba(127, 255, 0, 0.6))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    }
    25% { 
        filter: 
            drop-shadow(0 0 30px rgba(127, 255, 0, 0.9))
            drop-shadow(0 0 45px rgba(255, 107, 53, 0.7))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    }
    50% { 
        filter: 
            drop-shadow(0 0 35px rgba(255, 20, 147, 0.8))
            drop-shadow(0 0 50px rgba(138, 43, 226, 0.6))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    }
    75% { 
        filter: 
            drop-shadow(0 0 30px rgba(138, 43, 226, 0.9))
            drop-shadow(0 0 45px rgba(255, 20, 147, 0.7))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    }
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--orange-neon), var(--green-neon), var(--pink-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 223, 186, 0.2);
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-verse {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 255, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.verse-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--green-neon);
    text-shadow: 0 0 10px rgba(127, 255, 0, 0.3);
    margin-bottom: 8px;
    line-height: 1.4;
}

.verse-reference {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-motto {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-button {
    background: linear-gradient(45deg, var(--orange-neon), var(--pink-neon));
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: var(--white-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.cta-button i {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        rgba(255, 223, 186, 0.1) 0%, 
        rgba(255, 107, 53, 0.05) 50%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: -1;
    animation: scrollGlow 3s ease-in-out infinite;
}

@keyframes scrollGlow {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(-50%) scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: translateX(-50%) scale(1.2); 
    }
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 223, 186, 0.1);
}

.wheel {
    width: 4px;
    height: 10px;
    background: linear-gradient(180deg, var(--orange-neon), var(--green-neon));
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2.5s infinite;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
        opacity: 0.8;
    }
    40% { 
        transform: translateX(-50%) translateY(-8px); 
        opacity: 1;
    }
    60% { 
        transform: translateX(-50%) translateY(-4px); 
        opacity: 0.9;
    }
}

@keyframes scroll {
    0% { 
        opacity: 1; 
        top: 10px; 
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(0.8);
    }
    100% { 
        opacity: 0; 
        top: 25px; 
        transform: translateX(-50%) scale(0.6);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--orange-neon), var(--green-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-neon), var(--green-neon), var(--pink-neon));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--black-bg) 0%, var(--dark-bg) 100%);
    padding: 60px 0 20px;
}

/* Sub-sections styling */
.historia-section, .celulas-section, .vale-section {
    padding: 40px 0;
    position: relative;
}

.historia-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.celulas-section {
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.05) 0%, var(--dark-bg) 100%);
}

.vale-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(255, 20, 147, 0.05) 100%);
}

.historia-content, .celulas-content, .vale-content {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.celulas-content {
    grid-template-columns: 1fr 260px;
}

.historia-icon, .celulas-icon, .vale-icon {
    width: 220px;
    height: 160px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-text);
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.historia-icon:hover, .celulas-icon:hover, .vale-icon:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.historia-icon:hover {
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.4);
}

.celulas-icon:hover {
    box-shadow: 0 20px 45px rgba(127, 255, 0, 0.4);
}

.vale-icon:hover {
    box-shadow: 0 20px 45px rgba(255, 20, 147, 0.4);
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: var(--transition-smooth);
    filter: brightness(1.1) contrast(1.1);
}

.section-image:hover {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.2);
}

.historia-icon {
    background: linear-gradient(135deg, var(--orange-neon), var(--pink-neon), var(--orange-neon));
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.3),
        0 5px 15px rgba(255, 20, 147, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 6px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.historia-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(255, 20, 147, 0.3) 50%,
        rgba(255, 107, 53, 0.4) 100%
    );
    z-index: -1;
    filter: blur(12px);
    opacity: 0.8;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { 
        opacity: 0.6; 
        transform: scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

.celulas-icon {
    background: linear-gradient(135deg, var(--green-neon), var(--orange-neon), var(--green-neon));
    box-shadow: 
        0 15px 35px rgba(127, 255, 0, 0.3),
        0 5px 15px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 6px;
    border: 2px solid rgba(127, 255, 0, 0.3);
}

.celulas-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, 
        rgba(127, 255, 0, 0.4) 0%, 
        rgba(255, 107, 53, 0.3) 50%,
        rgba(127, 255, 0, 0.4) 100%
    );
    z-index: -1;
    filter: blur(12px);
    opacity: 0.8;
    animation: glowPulseGreen 3s ease-in-out infinite alternate;
}

@keyframes glowPulseGreen {
    0% { 
        opacity: 0.6; 
        transform: scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

.vale-icon {
    background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--pink-neon));
    box-shadow: 
        0 15px 35px rgba(255, 20, 147, 0.3),
        0 5px 15px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 6px;
    border: 2px solid rgba(255, 20, 147, 0.3);
}

.vale-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.4) 0%, 
        rgba(138, 43, 226, 0.3) 50%,
        rgba(255, 20, 147, 0.4) 100%
    );
    z-index: -1;
    filter: blur(12px);
    opacity: 0.8;
    animation: glowPulsePink 3s ease-in-out infinite alternate;
}

@keyframes glowPulsePink {
    0% { 
        opacity: 0.6; 
        transform: scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

.historia-text h3, .celulas-text h3, .vale-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.historia-text h3 {
    background: linear-gradient(45deg, var(--orange-neon), var(--pink-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.celulas-text h3 {
    background: linear-gradient(45deg, var(--green-neon), var(--orange-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vale-text h3 {
    background: linear-gradient(45deg, var(--pink-neon), var(--purple-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.historia-text p, .celulas-text p, .vale-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-neon);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--orange-neon), var(--pink-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white-text);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--green-neon);
}

/* Leaders Section */
.leaders {
    background: var(--dark-bg);
}

.leaders-unified {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.leaders-image {
    position: relative;
    width: 260px;
    height: 200px;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-neon), var(--pink-neon), var(--green-neon));
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(127, 255, 0, 0.3),
        0 8px 20px rgba(255, 20, 147, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.leaders-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(127, 255, 0, 0.4);
}

.leaders-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 35px;
    background: linear-gradient(135deg, 
        rgba(127, 255, 0, 0.4) 0%, 
        rgba(255, 20, 147, 0.3) 50%,
        rgba(127, 255, 0, 0.4) 100%
    );
    z-index: -1;
    filter: blur(15px);
    opacity: 0.8;
    animation: glowPulseLeaders 3s ease-in-out infinite alternate;
}

@keyframes glowPulseLeaders {
    0% { 
        opacity: 0.6; 
        transform: scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

.leaders-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    transition: var(--transition-smooth);
    filter: brightness(1.1) contrast(1.1);
}

.leaders-photo:hover {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.2);
}

.leaders-info {
    padding: 20px 0;
}

.leaders-info h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    font-weight: 700;
    background: linear-gradient(45deg, var(--green-neon), var(--pink-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(127, 255, 0, 0.3);
}

.leaders-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    justify-items: center;
}

.leader-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 255, 0, 0.2);
    transition: var(--transition-smooth);
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--green-neon);
    box-shadow: 0 20px 40px rgba(127, 255, 0, 0.2);
}

.leader-card:hover .avatar-frame {
    animation-duration: 2s;
}

.leader-card:hover .leader-photo {
    transform: scale(1.1);
    border-color: var(--green-neon);
    box-shadow: 0 0 25px rgba(127, 255, 0, 0.6);
}

.leader-avatar {
    margin-bottom: 20px;
}

.avatar-frame {
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, var(--green-neon), var(--pink-neon));
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    animation: rotate 10s linear infinite;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-frame::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--dark-bg);
    border-radius: 50%;
    z-index: 1;
}

.leader-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 2;
    border: 2px solid var(--white-text);
    transition: var(--transition-smooth);
}

.leader-photo:hover {
    transform: scale(1.05);
    border-color: var(--green-neon);
    box-shadow: 0 0 20px rgba(127, 255, 0, 0.5);
}

/* Ajustes específicos para cada líder se necessário */
.leader-card:first-child .leader-photo {
    object-position: center center; /* Para Camila */
}

.leader-card:last-child .leader-photo {
    object-position: center top; /* Para Paulo Vitor */
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.leader-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-neon);
}

/* Event Section */
.event {
    background: linear-gradient(135deg, var(--black-bg) 0%, var(--dark-bg) 100%);
}

.event-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink-neon);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--pink-neon), var(--purple-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.info-card h3 {
    color: var(--pink-neon);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.countdown {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.countdown h3 {
    color: var(--purple-neon);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.time-unit {
    text-align: center;
}

.time-unit span {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-neon);
    text-shadow: 0 0 10px var(--purple-neon);
}

.time-unit label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Rateio Section */
.rateio {
    background: var(--dark-bg);
}

.rateio-content {
    display: flex;
    justify-content: center;
}

.rateio-card {
    background: radial-gradient(circle, var(--dark-bg), var(--black-bg));
    border: 2px solid var(--orange-neon);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.rateio-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--orange-neon), var(--green-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    animation: pulse-coin 2s infinite;
}

@keyframes pulse-coin {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rateio-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--orange-neon);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--green-neon);
}

.amount {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-neon);
    text-shadow: 0 0 20px var(--orange-neon);
}

.status-badge {
    background: linear-gradient(45deg, var(--pink-neon), var(--purple-neon));
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: blink 2s infinite;
}

.status-badge.confirmed {
    background: linear-gradient(45deg, var(--green-neon), var(--orange-neon));
    animation: confirmPulse 2s ease-in-out infinite alternate;
}

@keyframes confirmPulse {
    0% { 
        opacity: 0.9; 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(127, 255, 0, 0.3);
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(127, 255, 0, 0.6);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.6; }
}

.payment-options {
    margin: 30px 0;
}

.payment-options h4 {
    color: var(--green-neon);
    margin-bottom: 15px;
}

.payment-options ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-options li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.payment-options i {
    color: var(--orange-neon);
}

.payment-button {
    background: linear-gradient(45deg, var(--green-neon), var(--orange-neon));
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 25px;
    color: var(--black-bg);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: var(--transition-bounce);
    box-shadow: 
        0 10px 25px rgba(127, 255, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.payment-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(127, 255, 0, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.payment-button:disabled {
    background: linear-gradient(45deg, #666, #444);
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.payment-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--black-bg) 0%, var(--dark-bg) 100%);
}

.procedure-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.procedure-image {
    position: relative;
    width: 280px;
    height: 220px;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--orange-neon), var(--green-neon), var(--orange-neon));
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.3),
        0 8px 20px rgba(127, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-smooth);
}

.procedure-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.procedure-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 35px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(127, 255, 0, 0.3) 50%,
        rgba(255, 107, 53, 0.4) 100%
    );
    z-index: -1;
    filter: blur(15px);
    opacity: 0.8;
    animation: glowPulseProcedure 3s ease-in-out infinite alternate;
}

@keyframes glowPulseProcedure {
    0% { 
        opacity: 0.6; 
        transform: scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

.confra-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    transition: var(--transition-smooth);
    filter: brightness(1.1) contrast(1.1);
}

.confra-photo:hover {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.2);
}

.procedure-info {
    padding: 20px 0;
}

.procedure-info h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-family: var(--font-primary);
    font-weight: 700;
    background: linear-gradient(45deg, var(--orange-neon), var(--green-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--orange-neon);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.step:hover {
    transform: translateX(10px);
    border-left-color: var(--green-neon);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--orange-neon), var(--green-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black-bg);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--green-neon);
    font-weight: 600;
}

.step-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(127, 255, 0, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--green-neon);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--white-text);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--green-neon);
    box-shadow: 0 0 15px rgba(127, 255, 0, 0.2);
}

.submit-button {
    background: linear-gradient(45deg, var(--green-neon), var(--orange-neon));
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    color: var(--black-bg);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(127, 255, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--black-bg);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    height: 60px;
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--pink-neon), var(--orange-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-text);
    text-decoration: none;
    font-size: 1.4rem;
    transition: var(--transition-bounce);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 
        0 15px 35px rgba(255, 20, 147, 0.5),
        0 0 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        .hero-logo,
        .hero-logo-img {
            display: none !important;
        }
        
        /* Ajustar espaçamento do texto sem a logo */
        .hero-text {
            gap: 15px;
        }
        
        .hero-subtitle {
            margin-top: 0;
        }
    
    /* Ajustar espaçamento do texto sem a logo */
    .hero-text {
        gap: 15px;
    }
    
    .hero-subtitle {
        margin-top: 0;
    }
        
        
        
    
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-top: 0;
    }

    .hero-image {
        order: 1;
        margin-bottom: 20px;
        min-height: 450px;
    }

    .hero-text {
        order: 2;
        padding: 10px;
    }

    .leaders-img {
        max-width: 100%;
        max-height: 550px;
    }

    .neon-title {
        font-size: 2.8rem;
        gap: 5px;
    }

    .hero-logo-img {
        height: 130px;
    }

    .hero-logo::before {
        width: 160px;
        height: 160px;
    }

    .hero-verse {
        padding: 15px;
        margin: 20px 0;
    }

    .verse-text {
        font-size: 1rem;
    }

    .verse-reference {
        font-size: 0.8rem;
    }

    .palm-left, .palm-right {
        height: 300px;
        width: 100px;
    }

    .palm-left {
        left: -30px;
    }

    .palm-right {
        right: -30px;
    }

    .neon-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 6px 12px;
    }

    .event-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .leaders-unified {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .leaders-image {
        width: 220px;
        height: 170px;
        margin: 0 auto;
        transform: perspective(800px) rotateY(0deg);
    }

    .leaders-info h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .leaders-info p {
        font-size: 1rem;
        text-align: center;
    }

    .contact-form {
        padding: 30px;
    }

    .procedure-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .procedure-image {
        width: 250px;
        height: 190px;
        margin: 0 auto;
        transform: perspective(800px) rotateY(0deg);
    }

    .procedure-info h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .step {
        text-align: left;
        padding: 15px;
    }

    .step-text h4 {
        font-size: 1.2rem;
    }

    .step-text p {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .historia-content, .celulas-content, .vale-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .celulas-content {
        grid-template-columns: 1fr;
    }

    .historia-content, .celulas-content, .vale-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .celulas-content {
        grid-template-columns: 1fr;
    }

    /* Garantir ordem correta no mobile: imagem primeiro, texto depois */
    .historia-content .historia-icon,
    .celulas-content .celulas-icon,
    .vale-content .vale-icon {
        order: 1;
    }

    .historia-content .historia-text,
    .celulas-content .celulas-text,
    .vale-content .vale-text {
        order: 2;
    }

    .historia-icon, .celulas-icon, .vale-icon {
        width: 180px;
        height: 130px;
        font-size: 2rem;
        padding: 5px;
        transform: perspective(800px) rotateY(0deg);
        border-radius: 20px;
    }

    .section-image {
        width: 100%;
        height: 100%;
        border-radius: 16px;
    }

    .historia-text h3, .celulas-text h3, .vale-text h3 {
        font-size: 1.5rem;
    }

    .historia-text p, .celulas-text p, .vale-text p {
        font-size: 1rem;
        text-align: center;
    }

    .event-info {
        grid-template-columns: 1fr;
    }

    .avatar-frame {
        width: 120px;
        height: 120px;
    }

    .leader-photo {
        width: 110px;
        height: 110px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .neon-title {
        font-size: 2.2rem;
        gap: 3px;
    }

    .hero-logo-img {
        height: 100px;
    }

    .hero-logo::before {
        width: 120px;
        height: 120px;
    }

    .hero-verse {
        padding: 12px;
        margin: 15px 0;
    }

    .verse-text {
        font-size: 0.95rem;
    }

    .verse-reference {
        font-size: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 5px 10px;
    }

    .hero {
        padding: 100px 15px 80px;
        min-height: 100vh;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    .mouse {
        width: 24px;
        height: 40px;
    }

    .scroll-indicator p {
        font-size: 0.8rem;
    }

    .hero-image {
        min-height: 350px;
    }

    .leaders-img {
        max-height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-card, .leader-card, .info-card {
        padding: 25px;
    }

    .rateio-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 20px;
    }
    
    .hero-logo,
    .hero-logo-img {
        display: none !important;
    }
}
