/* Estilos Base y Reset */
body {
    margin: 0;
    overflow-x: hidden;
    background-color: #050505;
    color: #E0E0E0;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* Nuevo verde en hover del scrollbar */
::-webkit-scrollbar-thumb:hover {
    background: #00C853;
}

/* Contenedor del Fondo 3D */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* Efecto Glassmorphism */
.glass-panel {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Texto con Gradiente - Nuevo Verde */
.text-gradient {
    background: linear-gradient(to right, #fff, #00C853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cursor parpadeante para la simulación del chat - Nuevo Verde */
.hero-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #00C853;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}


@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Utilidades de Animación de Entrada */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: none;
}

/* Ocultar Scrollbar para el Carrusel de Videos */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Asegurar que los videos no capturen eventos de puntero (para arrastrar en móvil) */
#videoCarousel video {
    pointer-events: none;
}

/* --- FAQ Styles --- */
.faq-toggle i {
    transform: rotate(0deg);
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle {
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- Animación Scroll Infinito (Logos) --- */
.animate-scroll {
    animation: scroll 30s linear infinite;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}