@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #FF4F00;
    --primary-hover: #e04500;
    --dark-bg: #0B1A36;
    --dark-card: rgba(11, 26, 54, 0.6);
    --dark-border: rgba(255, 79, 0, 0.2);
    --neon-blue: #3b82f6;
    --neon-purple: #8b5cf6;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(11, 26, 54, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-light {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.glass-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-hover:hover {
    background: rgba(11, 26, 54, 0.85);
    border-color: rgba(255, 79, 0, 0.3);
    box-shadow: 0 10px 30px -10px rgba(255, 79, 0, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B1A36;
}
::-webkit-scrollbar-thumb {
    background: #FF4F00;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e04500;
}

/* Glow e Neon Effects */
.bg-glow-orange {
    filter: blur(100px);
    background: radial-gradient(circle, rgba(255, 79, 0, 0.25) 0%, rgba(255, 79, 0, 0) 70%);
}

.bg-glow-blue {
    filter: blur(100px);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
}

.bg-glow-purple {
    filter: blur(100px);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0) 70%);
}

/* Animações */
.animate-float-slow {
    animation: floatAnim 6s ease-in-out infinite;
}

.animate-glow-pulse {
    animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes floatAnim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
    100% { opacity: 0.5; transform: scale(1); }
}

/* FAQ Details Acordeon Transitions */
details[open] summary ~ * {
    animation: sweep 0.3s ease-in-out;
}

@keyframes sweep {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0px); }
}

/* Font Clamp Utility Classes */
.text-clamp-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Ajustado para ser mais compacto e direto */
}

.text-clamp-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.text-clamp-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

/* Custom Header Logo Transition */
.logo-header {
    height: 2.75rem; /* ~44px no mobile */
    transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .logo-header {
        height: 3.5rem; /* ~56px no desktop */
    }
}

header.scrolled .logo-header {
    height: 2rem; /* ~32px no mobile */
}

@media (min-width: 768px) {
    header.scrolled .logo-header {
        height: 2.25rem; /* ~36px no desktop */
    }
}

/* Widgets Marquee Scroll Animation */
@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}
.animate-scroll-carousel {
    animation: scrollCarousel 30s linear infinite;
}
