/**
 * Estilos para la página de FAQ y Envíos
 */

.mandy3d-faq-page {
    background-color: var(--surface-gray);
    padding-bottom: 80px;
}

/* Cabecera */
.faq-hero {
    padding: 120px 20px 60px 20px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-content h1 {
    font-size: 3rem;
    margin: 15px 0 20px 0;
    font-weight: 800;
}

.faq-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sección de Envíos */
.shipping-info-section {
    padding: 80px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.shipping-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.shipping-card {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease;
}

.shipping-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-orange);
}

.shipping-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.shipping-card h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.shipping-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Sección FAQ */
.faq-grid-section {
    padding: 40px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
}

.faq-item {
    background: var(--surface-light);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--brand-orange);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .faq-hero-content h1 { font-size: 2.2rem; }
    .faq-grid { grid-template-columns: 1fr; }
}