/* ==========================================================================
   COMPONENTES CSS - STEEL360 Theme
   ========================================================================== */

/* Hero Component */
.hero-background {
    position: relative;
    z-index: 1;
}

.logotipoheader img {
    max-width: 300px;
    height: auto;
}

/* Video Component */
.video-container {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
}

/* Custom play button styles removed - using Tailwind classes inline */

/* Benefits Component */
.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(219, 106, 49, 0.3);
}

/* Glass Effect e CTA Button removidos - agora usando classes padrão do Tailwind */


/* FAQ Component */
.faq-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

.faq-filter-btn {
    transition: all 0.3s ease;
}

.faq-filter-btn.active {
    background-color: #FF6B35 !important;
    color: #F8F9F4 !important;
}

.faq-filter-btn:hover {
    transform: scale(1.05);
}

/* FAQ Search Input */
#faq-search {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #2A2523;
}

#faq-search::placeholder {
    color: rgba(42, 37, 35, 0.6);
}

#faq-search:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logotipoheader img {
        max-width: 200px;
    }

    /* Custom play button styles removed - using Tailwind classes inline */

    .benefit-card {
        padding: 1.5rem;
    }

    .faq-container {
        padding: 1.5rem;
    }

    .faq-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    #faq-search {
        color: #F8F9F4;
    }
    
    #faq-search::placeholder {
        color: rgba(248, 249, 244, 0.6);
    }
}