/* Custom CSS Components */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.step-active {
    display: flex;
}

.step-hidden {
    display: none;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.progress-bar {
    transition: width 0.4s ease-in-out;
}

.hero-gradient {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 2;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #F9C80E;
    box-shadow: 0 0 0 2px rgba(249, 200, 14, 0.5);
    transition: all 0.3s ease;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #F9C80E;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E6B800;
}

/* Toast Notification */
#toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1A1A1A;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid #F9C80E;
}

#toast-notification.show {
    transform: translateX(-50%) translateY(0);
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.faq-content.open {
    max-height: 500px; /* Suficiente para el contenido */
    padding-bottom: 1.5rem;
}

/* WhatsApp Tooltip */
.wa-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.wa-container:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Trust Badge Hover */
.trust-badge {
    transition: all 0.3s ease;
}
.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}