/* ========================================
   SEÇÕES PRINCIPAIS - CONFERÊNCIA WAVES
   ======================================== */

/* Fallback para vídeo */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.fallback-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.fallback-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.fallback-content p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.fallback-animation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.wave-animation {
    font-size: 2rem;
    animation: waveFloat 2s ease-in-out infinite;
}

.wave-animation:nth-child(2) {
    animation-delay: 0.5s;
}

.wave-animation:nth-child(3) {
    animation-delay: 1s;
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* YouTube Video Styles */
.youtube-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

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

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: heroFadeIn 1.5s ease-out;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.conference-logo {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: textShimmer 3s ease-in-out infinite;
    letter-spacing: 0.1em;
}

.conference-slogan {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 600;
    animation: slideInUp 1s ease-out 0.5s both;
}

.date-text {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #2c5aa0, #1e3d6f);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.6);
    background: linear-gradient(45deg, #1e3d6f, #2c5aa0);
}

.cta-button .cta-text {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.cta-button .cta-icon {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(3px);
}

/* VIDEO HERO SECTION */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-hero-container:hover .video-hero-overlay {
    opacity: 1;
}

.video-hero-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: auto;
    margin-top: 2rem;
    align-self: flex-start;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.control-btn:active {
    transform: scale(0.95);
}

.play-pause-btn .pause-icon,
.mute-btn .mute-icon,
.fullscreen-btn .exit-fullscreen-icon {
    display: none;
}

.play-pause-btn.playing .play-icon,
.mute-btn.muted .sound-icon,
.fullscreen-btn.fullscreen .fullscreen-icon {
    display: none;
}

.play-pause-btn.playing .pause-icon,
.mute-btn.muted .mute-icon,
.fullscreen-btn.fullscreen .exit-fullscreen-icon {
    display: block;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-icon {
    font-size: 1rem;
    color: white;
}

.video-hero-info {
    text-align: center;
    color: white;
    margin-bottom: auto;
    margin-top: auto;
}

.video-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ff6b6b, #feca57, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.video-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    opacity: 1;
}

.video-hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.video-hero-description p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    opacity: 0.9;
}

.video-progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    margin-bottom: 2rem;
    align-self: center;
    width: fit-content;
}

.video-progress-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.video-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #4ecdc4);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.video-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transform: translate(50%, -25%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.video-time-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.time-separator {
    opacity: 0.7;
}

.video-hero-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.video-particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: videoParticleFloat 8s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.particle-3 {
    top: 60%;
    left: 20%;
    animation-delay: 3s;
}

.particle-4 {
    top: 70%;
    right: 25%;
    animation-delay: 4.5s;
}

.particle-5 {
    top: 40%;
    left: 5%;
    animation-delay: 6s;
}

.particle-6 {
    top: 50%;
    right: 10%;
    animation-delay: 7.5s;
}

/* Animações para partículas do vídeo */
@keyframes videoParticleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.05);
        opacity: 0.9;
    }
}

/* Responsividade para vídeo hero */
@media (max-width: 768px) {
    .video-hero-overlay {
        padding: 1rem;
    }
    
    .video-hero-controls {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .volume-control {
        padding: 0.3rem 0.8rem;
    }
    
    .volume-slider {
        width: 60px;
    }
    
    .video-progress-container {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .video-progress-bar {
        width: 150px;
    }
    
    .video-time-display {
        font-size: 0.8rem;
    }
    
    .video-particle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-hero-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .video-progress-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .video-progress-bar {
        width: 120px;
    }
    
    .video-hero-title {
        font-size: 2rem;
    }
    
    .video-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .video-hero-description p {
        font-size: 1rem;
    }
}

/* COUNTDOWN SECTION */
.countdown-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 25%, #ffa500 50%, #ffd700 75%, #ff8c00 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.countdown-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.countdown-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 1;
}

.countdown-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 1;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    width: auto;
    min-width: auto;
    padding: 0;
    text-align: center;
}

/* Específico para dias - sem padding forçado */
#days {
    width: auto !important;
    min-width: auto !important;
    padding: 0 !important;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-cta {
    margin-top: 2rem;
}

.countdown-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.countdown-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #ff8c00, #ffd700);
}

.button-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.countdown-button:hover .button-icon {
    transform: translateX(5px);
}

/* PROMOTIONAL VIDEO SECTION */
.promotional-video-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.promotional-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.promotional-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promotional-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promotional-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0;
}

.promotional-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff8c00;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .promotional-video-section {
        padding: 60px 0;
    }
    
    .promotional-content {
        gap: 40px;
    }
    
    .promotional-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}


/* EXPECTATIONS SECTION - MELHORADA */
.expectations-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.expectations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.expectations-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000000;
    opacity: 1;
    text-shadow: none;
}

/* Título específico da seção de expectativas em branco */
.expectations-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 1;
}

.expectations-counter {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.counter-display {
    margin-bottom: 2rem;
}

.counter-number {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.counter-number.animate {
    animation: counterPulse 0.6s ease-out;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.counter-label {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    opacity: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter-subtitle {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    font-style: italic;
}

.expectations-button-container {
    text-align: center;
    margin-bottom: 3rem;
}

.expectations-button {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.expectations-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ff8c00, #ffd700);
}

.expectations-button:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.expectations-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.button-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    font-style: italic;
}

/* Sistema de Streak */
.streak-card {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.15), rgba(255, 150, 150, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 100, 100, 0.3);
    box-shadow: 0 8px 25px rgba(255, 100, 100, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.streak-card.show {
    display: block;
    animation: streakAppear 0.5s ease-out;
}

.streak-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.streak-icon {
    font-size: 1.8rem;
    animation: streakPulse 2s ease-in-out infinite;
}

.streak-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.streak-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.streak-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.streak-number span:first-child {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    line-height: 1;
}

.streak-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.streak-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.streak-timer {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Animações do Streak */
@keyframes streakAppear {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes streakPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Power-ups */
.power-ups-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.power-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.power-up:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.power-up.active {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.power-up-icon {
    font-size: 1.5rem;
}

.power-up-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

/* Sistema de Comentários */
.comments-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.comment-input-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#commentInput {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

#commentInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.comment-submit {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #2c5aa0, #40e0d0);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.comments-display {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-item {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    font-size: 0.9rem;
    color: #ffffff;
}


.expectations-progress {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-container {
    background: rgba(255, 255, 255, 0.2);
    height: 25px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.progress-bar-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 15px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 15px;
    filter: blur(15px);
    opacity: 0.7;
    animation: progressShimmer 2s ease-in-out infinite;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 1;
}

.progress-percentage {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.milestone {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.milestone::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;
}

.milestone.achieved {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.milestone.achieved::before {
    left: 100%;
}

.milestone-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.milestone-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 1;
    margin-bottom: 5px;
}

.milestone-description {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.8;
    font-style: italic;
}

.expectations-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 600;
}

.expectations-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
}

.expectations-message.show {
    opacity: 1;
    visibility: visible;
    animation: messageBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-content {
    max-width: 300px;
    margin: 0 auto;
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
}

.message-text {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.message-subtitle {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.5;
}

/* ANIMAÇÕES DE EXPLOSÃO DE EMOJIS */
@keyframes emojiExplosion1 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(60px, -80px) scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes emojiExplosion2 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-70px, -90px) scale(1.3) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes emojiExplosion3 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(80px, -60px) scale(1.4) rotate(180deg);
        opacity: 0;
    }
}

@keyframes emojiExplosion4 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-60px, -70px) scale(1.2) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes emojiExplosion5 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(40px, -100px) scale(1.6) rotate(270deg);
        opacity: 0;
    }
}

@keyframes emojiExplosion6 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50px, -85px) scale(1.1) rotate(-270deg);
        opacity: 0;
    }
}

@keyframes emojiExplosion7 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(70px, -75px) scale(1.3) rotate(90deg);
        opacity: 0;
    }
}

@keyframes emojiExplosion8 {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-80px, -60px) scale(1.5) rotate(-90deg);
        opacity: 0;
    }
}

.explosion-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.explosion-emoji {
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.explosion-emoji:nth-child(1) {
    animation: emojiExplosion1 1.5s ease-out forwards;
}

.explosion-emoji:nth-child(2) {
    animation: emojiExplosion2 1.5s ease-out 0.1s forwards;
}

.explosion-emoji:nth-child(3) {
    animation: emojiExplosion3 1.5s ease-out 0.2s forwards;
}

.explosion-emoji:nth-child(4) {
    animation: emojiExplosion4 1.5s ease-out 0.3s forwards;
}

.explosion-emoji:nth-child(5) {
    animation: emojiExplosion5 1.5s ease-out 0.4s forwards;
}

.explosion-emoji:nth-child(6) {
    animation: emojiExplosion6 1.5s ease-out 0.5s forwards;
}

.explosion-emoji:nth-child(7) {
    animation: emojiExplosion7 1.5s ease-out 0.6s forwards;
}

.explosion-emoji:nth-child(8) {
    animation: emojiExplosion8 1.5s ease-out 0.7s forwards;
}

/* ANIMAÇÕES ESPECÍFICAS PARA EXPECTATIVAS */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* FAQ Styles - Consolidados */

/* SEÇÃO DE LOCALIZAÇÃO */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 90, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.location-content {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 1;
}

.location-info {
    padding: 2rem 0;
}

.location-details {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.location-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.address-info {
    margin-bottom: 2rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(44, 90, 160, 0.03);
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.address-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.address-text {
    flex: 1;
    color: #000000;
    line-height: 1.6;
}

.address-text strong {
    color: #2c5aa0;
    font-weight: 700;
}

.location-cta {
    text-align: center;
    margin-top: 2rem;
}

.location-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #2c5aa0, #40e0d0);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-button::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;
}

.location-button:hover::before {
    left: 100%;
}

.location-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.6);
}

.location-button .button-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.location-button:hover .button-icon {
    transform: scale(1.1);
}


/* Responsividade da seção de localização */
@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }
    
    .location-content {
        flex-direction: column;
        align-items: center;
    }
    
    .location-details {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .location-title {
        font-size: 1.5rem;
    }
    
    .address-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .address-icon {
        font-size: 1.3rem;
        margin-top: 0;
    }
    
    .location-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(44, 90, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.gallery-item.main-item {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #ffffff;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(44, 90, 160, 0.2);
}

.gallery-item.main-item {
    grid-row: 1 / 3;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: left;
}

.image-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.image-description {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #2c5aa0, #40e0d0);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-button::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;
}

.gallery-button:hover::before {
    left: 100%;
}

.gallery-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.6);
}

.button-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.gallery-button:hover .button-icon {
    transform: translateX(5px);
}

/* Responsividade da Galeria */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .gallery-item.main-item {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .image-title {
        font-size: 1.3rem;
    }
    
    .image-description {
    font-size: 0.9rem;
}

    .cta-text {
        font-size: 1.1rem;
    }
    
    .gallery-button {
        padding: 15px 30px;
    font-size: 1rem;
    }
}
.about-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Gradiente removido conforme solicitado */

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    color: #2c3e50;
}

.lead-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #2c5aa0;
    opacity: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
    opacity: 1;
}

.about-text em {
    font-style: italic;
    color: #2c5aa0;
    font-weight: 600;
    position: relative;
}

/* Emoji removido conforme solicitado */

.about-text strong {
    font-weight: 700;
    color: #2c5aa0;
    position: relative;
}

.about-text strong {
    color: #000000;
    font-weight: 700;
}

.highlight-text {
    font-weight: 700;
    color: #000000;
    opacity: 1;
}

/* Estilos simplificados - sobreposições e emojis removidos */

/* Blockquote simples para o versículo */
.verse-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid #2c5aa0;
    background: rgba(44, 90, 160, 0.03);
    border-radius: 8px;
    font-style: italic;
}

.verse-quote p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
}

.verse-quote cite {
    display: block;
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    color: #2c5aa0;
    font-style: normal;
}

/* Efeitos visuais para elementos destacados */

.transformation-highlight {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.transformation-highlight::before {
    content: '🔄';
    position: absolute;
    left: -20px;
    top: -2px;
    font-size: 0.7em;
    animation: spin 3s linear infinite;
}

.conference-highlight {
    background: linear-gradient(45deg, #2c5aa0, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.conference-highlight::after {
    content: '🎯';
    position: absolute;
    right: -20px;
    top: -2px;
    font-size: 0.7em;
    animation: bounce 2s ease-in-out infinite;
}

.warning-highlight {
    background: linear-gradient(45deg, #ff6b6b, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.warning-highlight::before {
    content: '⚠️';
    position: absolute;
    left: -20px;
    top: -2px;
    font-size: 0.7em;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Animações adicionais */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}
.verse-reference {
    color: #2c5aa0;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(44, 90, 160, 0.3);
}

.highlight-wave {
    color: #2c5aa0;
    font-weight: 800;
    position: relative;
}

.highlight-wave::after {
    content: '🌊';
    position: absolute;
    right: -25px;
    top: -5px;
    font-size: 0.8em;
    animation: waveFloat 2s ease-in-out infinite;
}

.conference-name {
    color: #2c5aa0;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(44, 90, 160, 0.4);
}

.mission-highlight {
    color: #2c5aa0;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(44, 90, 160, 0.3);
    position: relative;
}

.mission-highlight::before {
    content: '✨';
    position: absolute;
    left: -20px;
    top: -2px;
    font-size: 0.7em;
    animation: sparkle 1.5s ease-in-out infinite;
}

.date-highlight {
    color: #2c5aa0;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(44, 90, 160, 0.3);
    position: relative;
}

.date-highlight::after {
    content: '📅';
    position: absolute;
    right: -20px;
    top: -2px;
    font-size: 0.7em;
    animation: bounce 2s ease-in-out infinite;
}

/* Animações para os efeitos visuais */
@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(5deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .video-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .expectations-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .progress-milestones {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .play-button,
    .preview-play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon,
    .preview-play-icon {
        font-size: 1.5rem;
    }
}

/* Responsividade específica para seção About */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }
    
    .verse-card {
        padding: 1.5rem;
    }
    
    .verse-text {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .verse-text::before,
    .verse-text::after {
        font-size: 2rem;
    }
}

/* Responsividade para telas muito pequenas - Galeria */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item.main-item {
        grid-column: span 1;
    }
    
    .gallery-item {
        height: 180px;
    }
}

/* Responsividade para Contador de Expectativa */
@media (max-width: 768px) {
    .streak-card {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .streak-title {
        font-size: 1rem;
    }
    
    .streak-number span:first-child {
        font-size: 2rem;
    }
    
    .streak-timer-container {
        padding: 0.5rem 1rem;
    }
    
    .streak-timer {
        font-size: 1rem;
    }
    
    .power-ups-container {
        gap: 0.5rem;
    }
    
    .power-up {
        min-width: 50px;
        padding: 0.4rem;
    }
    
    .power-up-icon {
        font-size: 1.2rem;
    }
    
    .power-up-text {
        font-size: 0.7rem;
    }
    
    .comments-section {
        padding: 1rem;
    }
    
    .comment-input-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   MELHORIAS MOBILE SUTIS - SEM AFETAR WEB
   ======================================== */

/* Melhorias específicas para mobile - apenas adicionais */
@media (max-width: 768px) {
    /* Touch targets mínimos para mobile */
    .cta-button, .countdown-button, .gallery-button, .location-button, .expectations-button {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        touch-action: manipulation;
    }
    
    /* Melhor feedback tátil */
    .cta-button:active, .countdown-button:active, .gallery-button:active, 
    .location-button:active, .expectations-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* FAQ mobile otimizado */
    .faq-question {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(44, 90, 160, 0.1);
        touch-action: manipulation;
    }
    
    /* Countdown mobile melhorado */
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-height: 80px;
    }
    
    /* Galeria mobile */
    .gallery-grid {
        gap: 1.5rem;
    }
    
    /* Texto responsivo */
    .conference-logo {
        font-size: clamp(2.5rem, 12vw, 4rem);
        line-height: 1.1;
    }
    
    .date-text {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }
    
    /* Safe area para dispositivos com notch */
    .hero-section {
        padding-top: env(safe-area-inset-top, 0);
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .countdown-item {
        padding: 1rem 0.75rem;
        min-height: 70px;
    }
    
    .countdown-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .cta-button, .countdown-button, .gallery-button, .location-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .expectations-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* Landscape mobile */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .countdown-timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .countdown-item {
        padding: 1rem 0.75rem;
        min-height: 60px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Telas maiores mobile */
@media screen and (min-width: 414px) and (max-width: 767px) {
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        max-width: 450px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* ========================================
   ESTILOS FAQ - FORMATAÇÃO CORRIGIDA
   ======================================== */

.faq-section {
    padding: 3rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.25rem;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(44, 90, 160, 0.1);
    touch-action: manipulation;
}

.faq-question h3 {
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #2c5aa0;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #40e0d0;
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(44, 90, 160, 0.02);
}

.faq-item.active .faq-answer {
    padding: 1.25rem;
    max-height: 1000px;
}

.answer-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.answer-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.answer-content h4 {
    color: #000000;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.answer-content p {
    color: #000000;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
}

.answer-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.detail-item {
    color: #000000;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    background: rgba(44, 90, 160, 0.05);
    border-radius: 6px;
    border-left: 3px solid #2c5aa0;
    line-height: 1.4;
    display: block;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        min-height: 44px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .answer-content h4 {
        font-size: 0.9rem;
    }
    
    .answer-content p {
        font-size: 0.85rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}
