/* ========================================
   COMPONENTES E ANIMAÇÕES - CONFERÊNCIA WAVES
   ======================================== */

/* Animação para explosão em tela cheia */
@keyframes fullscreenExplosion {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg) translateY(-50px);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(360deg) translateY(-100px);
    }
}

@keyframes waveFloat1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-25px) rotate(8deg) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes waveFloat2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-15px) rotate(-4deg) scale(1.15);
        opacity: 0.9;
    }
    60% {
        transform: translateY(-30px) rotate(6deg) scale(0.85);
        opacity: 0.7;
    }
    90% {
        transform: translateY(-5px) rotate(-2deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes waveFloat3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    20% {
        transform: translateY(-25px) rotate(7deg) scale(0.9);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-35px) rotate(-5deg) scale(1.1);
        opacity: 1;
    }
    70% {
        transform: translateY(-10px) rotate(3deg) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes waveFloat4 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    15% {
        transform: translateY(-18px) rotate(-6deg) scale(1.2);
        opacity: 0.9;
    }
    45% {
        transform: translateY(-28px) rotate(4deg) scale(0.8);
        opacity: 0.6;
    }
    80% {
        transform: translateY(-8px) rotate(-3deg) scale(1.15);
        opacity: 1;
    }
}

/* Aplicar animações específicas aos emojis de ondas */
.floating-icon:nth-child(1) {
    animation: waveFloat1 8s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    animation: waveFloat2 9s ease-in-out infinite;
}

.floating-icon:nth-child(3) {
    animation: waveFloat3 7s ease-in-out infinite;
}

.floating-icon:nth-child(4) {
    animation: waveFloat4 10s ease-in-out infinite;
}

.floating-icon:nth-child(5) {
    animation: waveFloat1 8.5s ease-in-out infinite;
}

.floating-icon:nth-child(6) {
    animation: waveFloat2 9.5s ease-in-out infinite;
}

.floating-icon:nth-child(7) {
    animation: waveFloat3 7.5s ease-in-out infinite;
}

.floating-icon:nth-child(8) {
    animation: waveFloat4 10.5s ease-in-out infinite;
}

.floating-icon:nth-child(9) {
    animation: waveFloat1 8.2s ease-in-out infinite;
}

.floating-icon:nth-child(10) {
    animation: waveFloat2 9.8s ease-in-out infinite;
}

/* Animações para ícones de seção */
.section-icon:nth-child(1) {
    animation: waveFloat1 6s ease-in-out infinite;
}

.section-icon:nth-child(2) {
    animation: waveFloat2 7s ease-in-out infinite;
}

.section-icon:nth-child(3) {
    animation: waveFloat3 5s ease-in-out infinite;
}

.section-icon:nth-child(4) {
    animation: waveFloat4 8s ease-in-out infinite;
}

/* ANIMAÇÕES GLOBAIS */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textShimmer {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 4px 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modernFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes sectionFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes videoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-8px) rotate(1deg);
    }
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes videoIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(10deg);
    }
    50% {
        transform: translateY(-8px) rotate(-5deg);
    }
    75% {
        transform: translateY(-12px) rotate(5deg);
    }
}


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

@keyframes particleFloat1 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(30px, -50px) scale(1);
        opacity: 0;
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-40px, -60px) scale(1);
        opacity: 0;
    }
}

@keyframes particleFloat3 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(20px, -70px) scale(1);
        opacity: 0;
    }
}

@keyframes progressShimmer {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes glowMove {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

@keyframes messageBounce {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

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

/* ÍCONES FLUTUANTES */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: modernFloat 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.floating-icon:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.floating-icon:nth-child(5) {
    top: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.floating-icon:nth-child(6) {
    top: 40%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.floating-icon:nth-child(7) {
    top: 80%;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 9s;
}

.floating-icon:nth-child(8) {
    top: 15%;
    left: 50%;
    animation-delay: 7s;
    animation-duration: 6s;
}

.floating-icon:nth-child(9) {
    top: 50%;
    right: 5%;
    animation-delay: 8s;
    animation-duration: 8s;
}

.floating-icon:nth-child(10) {
    top: 85%;
    right: 20%;
    animation-delay: 9s;
    animation-duration: 7s;
}

/* ÍCONES DE SEÇÃO */
.section-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.section-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: sectionFloat 4s ease-in-out infinite;
}

.section-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.section-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.section-icon:nth-child(3) {
    top: 65%;
    left: 8%;
    animation-delay: 2s;
}

.section-icon:nth-child(4) {
    top: 75%;
    right: 12%;
    animation-delay: 3s;
}

/* EFEITOS DE VÍDEO */
.video-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-video-icon {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.5;
    animation: videoIconFloat 5s ease-in-out infinite;
}

.floating-video-icon:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-video-icon:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-video-icon:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: 3s;
}

.floating-video-icon:nth-child(4) {
    top: 70%;
    right: 15%;
    animation-delay: 4.5s;
}

/* EFEITOS DE EXPECTATIVAS */
.expectations-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.4;
    animation: floatUpDown 3s ease-in-out infinite;
    color: #ff6b6b;
}

.floating-heart:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-heart:nth-child(2) {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

.floating-heart:nth-child(3) {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.floating-star {
    position: absolute;
    font-size: 1rem;
    opacity: 0.3;
    animation: floatUpDown 4s ease-in-out infinite;
    color: #feca57;
}

.floating-star:nth-child(1) {
    top: 30%;
    left: 10%;
    animation-delay: 0.5s;
}

.floating-star:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-star:nth-child(3) {
    top: 70%;
    left: 25%;
    animation-delay: 2.5s;
}

/* COMPONENTES DE FOOTER */
.footer-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
}

/* UTILITÁRIOS */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.opacity-100 { opacity: 1; }
.opacity-90 { opacity: 0.9; }
.opacity-80 { opacity: 0.8; }
.opacity-70 { opacity: 0.7; }

/* RESPONSIVE UTILITIES */
@media (max-width: 768px) {
    .floating-icon,
    .section-icon,
    .floating-video-icon {
        font-size: 1.2rem;
    }
    
    .floating-heart,
    .floating-star {
        font-size: 0.8rem;
    }
}
