/* Estilos para hero section - Design fluido e dinâmico */
/* Reset claro para hero section */
.hero-section {
    background-color: #0A231A !important;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* Animações avançadas para fluidez */
@keyframes gradientPosition {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientChange {
    0% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    33% { 
        opacity: 0.8;
        transform: translateY(-5%) scale(1.05);
    }
    66% { 
        opacity: 0.9;
        transform: translateY(5%) scale(0.95);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Fundo principal fluido e dinâmico */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #0F3226 0%,
        #125E3A 25%,
        #000000 50%,
        #125E3A 75%,
        #0F3226 100%
    );
    background-size: 400% 400%;
    animation: gradientPosition 15s ease infinite;
    opacity: 0.85;
    z-index: 0;
}

/* Camada de textura fluida */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%2314C860" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
    opacity: 0.1;
    z-index: 0;
    animation: gradientChange 8s ease-in-out infinite;
}

/* Overlay fluido */
.fluid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Bolhas de gradiente fluidas */
.fluid-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    mix-blend-mode: screen;
    z-index: 0;
}

.fluid-bubble:nth-child(1) {
    top: 25%;
    left: 25%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(20, 200, 96, 0.4) 0%, rgba(20, 200, 96, 0.1) 50%, transparent 70%);
    animation: gradientChange 20s ease-in-out infinite;
}

.fluid-bubble:nth-child(2) {
    bottom: 10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(99, 230, 134, 0.4) 0%, rgba(99, 230, 134, 0.1) 50%, transparent 70%);
    animation: gradientChange 15s ease-in-out infinite reverse;
}

.fluid-bubble:nth-child(3) {
    top: 60%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 130, 60, 0.3) 0%, rgba(0, 130, 60, 0.1) 50%, transparent 70%);
    animation: gradientChange 25s ease-in-out infinite;
    animation-delay: 5s;
}

/* Ripple effect - efeito de ondas em movimento */
.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(20, 200, 96, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ripple:nth-child(1) {
    width: 150vw;
    height: 150vw;
    animation: rippleEffect 20s ease-in-out infinite;
    animation-delay: 0s;
}

.ripple:nth-child(2) {
    width: 120vw;
    height: 120vw;
    animation: rippleEffect 20s ease-in-out infinite;
    animation-delay: 4s;
}

.ripple:nth-child(3) {
    width: 90vw;
    height: 90vw;
    animation: rippleEffect 20s ease-in-out infinite;
    animation-delay: 8s;
}

.ripple:nth-child(4) {
    width: 60vw;
    height: 60vw;
    animation: rippleEffect 20s ease-in-out infinite;
    animation-delay: 12s;
}

.ripple:nth-child(5) {
    width: 30vw;
    height: 30vw;
    animation: rippleEffect 20s ease-in-out infinite;
    animation-delay: 16s;
}

/* Removendo partículas estáticas */
.hero-particles {
    display: none;
}

.hero-grid {
    display: none;
}

/* Conteúdo da hero section */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Destaque para elementos principais */
.highlight-money {
    color: #14C860;
    position: relative;
    font-weight: 900;
}

.highlight-money::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #14C860, transparent);
    border-radius: 3px;
}
