* { font-family: 'Space Grotesk', sans-serif; }
.hero-bg {
    background: radial-gradient(circle at 20% 50%, #ff0080 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #0080ff 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, #8000ff 0%, transparent 50%),
                #000;
}
.gradient-text {
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    animation: none;
}
@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(10deg); }
    66% { transform: translateY(-15px) rotate(-5deg); }
}
@keyframes glow-pulse {
    from { box-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080; }
    to { box-shadow: 0 0 40px #ff0080, 0 0 80px #ff0080; }
}
@keyframes slide-up {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scale-bounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.neon-glow {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    transition: all 0.3s ease;
}
.neon-glow:hover {
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.8), 0 0 100px rgba(255, 0, 128, 0.3);
    transform: translateY(-5px);
}
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-hover:hover {
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg) scale(1.05);
}
.typing-effect {
    overflow: hidden;
    border-right: 3px solid #ff0080;
    white-space: nowrap;
    animation: typing 4s steps(20, end), blink 0.8s step-end infinite;
}
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #ff0080; }
}
.particle {
    position: absolute;
    background: linear-gradient(45deg, #ff0080, #0080ff);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-float 8s linear infinite;
}
@keyframes particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Carrossel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

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

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

/* Responsive adjustments for carousel */
@media (max-width: 1024px) {
    .carousel-slide img {
        height: 18rem;
    }
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 14rem;
    }
    
    .carousel-btn {
        padding: 0.5rem;
    }
    
    .carousel-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .indicator {
        width: 0.5rem;
        height: 0.5rem;
    }
}

/* Background dinâmico do carrossel */
#carousel-background {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Hero background styles */
#hero-background {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: background-image 2s ease-in-out !important;
}

#hero-section {
    position: relative;
    overflow: hidden;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

/* Background dinâmico para seção Diferenciais */
#carousel-background-diferenciais {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    filter: brightness(0.2) contrast(1.2);
    opacity: 0.8;
    transition: background-image 1s ease-in-out;
    z-index: 1;
}

/* Background dinâmico para seção Trabalhe Conosco */
#carousel-background-trabalhe {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    filter: brightness(0.2) contrast(1.2);
    opacity: 0.8;
    transition: background-image 1s ease-in-out;
    z-index: 1;
}

/* Melhorar contraste do texto sobre o background dinâmico */
#quem-somos .text-gray-400 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

#quem-somos .gradient-text {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}

/* Melhorar contraste do texto nas seções Diferenciais e Trabalhe Conosco */
#diferenciais .text-gray-400,
#trabalhe-conosco .text-gray-400 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

#diferenciais .gradient-text,
#trabalhe-conosco .gradient-text {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}