body {
    background-color: #030303;
    color: #ffffff;
}

/* Tipografía Avanzada */
.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
}

.neon-text {
    text-shadow: 0 0 15px rgba(255, 15, 15, 0.7);
}

/* Efectos de Tarjetas */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 15, 15, 0.2);
    border-color: rgba(255, 15, 15, 0.5);
}

/* FAQ Details Animation */
details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

details[open] summary~* {
    animation: sweep .3s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Hero Carousel */
.carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.carousel-item.active {
    opacity: 0.4;
    /* Opacity aligned with previous background opacity */
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-backdrop {
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(20px);
}

/* Premium Button Glow */
.btn-glow {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 15, 15, 0.6);
    border-color: #FF0F0F;
}

.btn-glow:active {
    transform: scale(0.95);
}

/* Testimonials Scroll Snap */
.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    /* Space for scrollbar or shadow */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.testimonial-slide {
    flex-shrink: 0;
    scroll-snap-align: center;
}

/* Scroll Animations Variants */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom,
.reveal-blur {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-zoom {
    transform: scale(0.9);
}

.reveal-blur {
    filter: blur(10px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
}