/**
 * Estilos para la página de Diseño Personalizado (Cotizador)
 */

.mandy3d-custom-page {
    background-color: var(--surface-gray);
    padding-bottom: 80px;
}

/* Cabecera */
.custom-hero {
    padding: 120px 20px 60px 20px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
}

.custom-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-hero-content h1 {
    font-size: 3rem;
    margin: 15px 0 20px 0;
    font-weight: 800;
}

.custom-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Tarjetas de Pasos */
.custom-steps {
    padding: 60px 20px;
    max-width: 1200px;
    margin: -40px auto 40px auto; /* Sube un poco para superponerse al hero */
    position: relative;
    z-index: 10;
}

.custom-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--surface-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, #FF8A65 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.step-card h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Contenedor del Formulario */
.custom-form-section {
    padding: 0 20px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-light);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #E2E8F0;
    text-align: center;
}

.form-container h2 {
    color: var(--text-main);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.mandy3d-form-wrapper {
    text-align: left;
}

/* Responsivo */
@media (max-width: 768px) {
    .custom-hero-content h1 { font-size: 2.2rem; }
    .form-container { padding: 30px 20px; }
}