/**
 * Cotizador Guiado CONTPAQi - Estilos del Wizard
 */

/* Variables CSS */
:root {
    --wizard-primary: #046BD2;
    --wizard-primary-dark: #0042B7;
    --wizard-accent: #FF6B35;
    --wizard-success: #28a745;
    --wizard-bg: #f8f9fa;
    --wizard-card-bg: #ffffff;
    --wizard-text: #333333;
    --wizard-text-light: #666666;
    --wizard-border: #e0e0e0;
    --wizard-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --wizard-radius: 12px;
    --wizard-transition: all 0.3s ease;
}

/* Header Compacto */
.wizard-header-compact {
    background: linear-gradient(135deg, var(--wizard-primary) 0%, var(--wizard-primary-dark) 100%);
    color: white;
    padding: 25px 20px 20px;
}

.wizard-header-compact .container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.wizard-intro {
    flex: 1;
}

.wizard-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.wizard-badge i {
    color: #FFD700;
    margin-right: 5px;
}

.wizard-header-compact h1 {
    font-size: 1.5rem;
    margin: 0 0 5px;
    font-weight: 700;
}

.wizard-header-compact p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Progress Inline */
.wizard-progress-inline {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wizard-progress-inline .progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--wizard-transition);
}

.wizard-progress-inline .progress-step span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-progress-inline .progress-step.active {
    background: white;
    color: var(--wizard-primary);
    transform: scale(1.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.wizard-progress-inline .progress-step.completed {
    background: var(--wizard-success);
    color: white;
}

.wizard-progress-inline .progress-line {
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.4);
}

/* Wizard Container */
.wizard-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px 20px 40px;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step h2 {
    text-align: center;
    color: var(--wizard-text);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.wizard-step h2 i {
    color: var(--wizard-primary);
    margin-right: 10px;
}

.step-description {
    text-align: center;
    color: var(--wizard-text-light);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.options-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.options-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.options-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

/* Option Cards - Estilo Botón Claro */
.option-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--wizard-border);
    border-radius: var(--wizard-radius);
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--wizard-transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.option-card::before {
    content: 'Seleccionar';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wizard-primary);
    color: white;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--wizard-transition);
}

.option-card:hover {
    border-color: var(--wizard-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(4, 107, 210, 0.2);
}

.option-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.option-card:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 107, 210, 0.3);
}

.option-card.selected {
    border-color: var(--wizard-primary);
    background: linear-gradient(180deg, rgba(4, 107, 210, 0.08) 0%, rgba(4, 107, 210, 0.15) 100%);
    box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.25), 0 4px 15px rgba(4, 107, 210, 0.2);
}

.option-card.selected::before {
    content: '\f00c  Seleccionado';
    font-family: 'Font Awesome 6 Free', sans-serif;
    background: var(--wizard-success);
    opacity: 1;
    transform: translateY(0);
}

.option-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--wizard-success);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.option-card.large {
    padding: 30px 20px;
}

.option-icon {
    font-size: 2.2rem;
    color: var(--wizard-primary);
    margin-bottom: 12px;
    transition: var(--wizard-transition);
}

.option-card:hover .option-icon {
    transform: scale(1.1);
}

.option-card h3 {
    font-size: 1.05rem;
    color: var(--wizard-text);
    margin-bottom: 6px;
    font-weight: 600;
}

.option-card p {
    font-size: 0.85rem;
    color: var(--wizard-text-light);
    line-height: 1.4;
    margin: 0;
    padding-bottom: 20px; /* Espacio para el botón hover */
}

/* Badges */
.badge-savings {
    display: inline-block;
    background: var(--wizard-success);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

.badge-recommended {
    display: inline-block;
    background: var(--wizard-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Info Box */
.info-box {
    background: #e7f3ff;
    border-left: 4px solid var(--wizard-primary);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 25px;
}

.info-box i {
    color: var(--wizard-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-box span {
    color: var(--wizard-text);
    font-size: 0.95rem;
}

/* Navigation Buttons */
.wizard-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--wizard-border);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wizard-transition);
    border: none;
}

.btn-prev {
    background: transparent;
    color: var(--wizard-text-light);
    border: 2px solid var(--wizard-border);
}

.btn-prev:hover {
    border-color: var(--wizard-primary);
    color: var(--wizard-primary);
}

.btn-next {
    background: var(--wizard-primary);
    color: white;
}

.btn-next:hover:not(:disabled) {
    background: var(--wizard-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 107, 210, 0.4);
}

.btn-next:disabled {
    background: var(--wizard-border);
    cursor: not-allowed;
}

.btn-restart {
    background: var(--wizard-text-light);
    color: white;
}

.btn-restart:hover {
    background: var(--wizard-text);
}

/* Result Container */
.result-container {
    max-width: 700px;
    margin: 0 auto;
}

.result-card {
    background: var(--wizard-card-bg);
    border-radius: var(--wizard-radius);
    box-shadow: var(--wizard-shadow);
    overflow: hidden;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(4, 107, 210, 0.05) 0%, rgba(4, 107, 210, 0.1) 100%);
    border-bottom: 1px solid var(--wizard-border);
}

.result-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 10px;
}

.result-title {
    flex: 1;
}

.recommended-badge {
    display: inline-block;
    background: var(--wizard-success);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.recommended-badge i {
    margin-right: 5px;
}

.result-title h3 {
    font-size: 1.5rem;
    color: var(--wizard-text);
    margin: 0 0 5px;
}

.result-title p {
    color: var(--wizard-text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Result Features */
.result-features {
    padding: 20px 25px;
    border-bottom: 1px solid var(--wizard-border);
}

.result-features h4 {
    font-size: 1rem;
    color: var(--wizard-text);
    margin-bottom: 12px;
}

.result-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.result-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--wizard-text);
}

.result-features li i {
    color: var(--wizard-success);
    font-size: 0.85rem;
}

/* Result Pricing */
.result-pricing {
    padding: 20px 25px;
    background: #fafafa;
}

.price-breakdown {
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--wizard-text);
    font-size: 0.95rem;
}

.price-row.additional-users {
    color: var(--wizard-text-light);
    border-top: 1px dashed var(--wizard-border);
    padding-top: 12px;
    margin-top: 5px;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    border-top: 2px solid var(--wizard-border);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--wizard-primary);
}

/* Result Actions */
.result-actions {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary.btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--wizard-primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wizard-transition);
}

.btn-primary.btn-large:hover {
    background: var(--wizard-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 107, 210, 0.4);
}

.btn-primary.btn-large.success {
    background: var(--wizard-success);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    background: transparent;
    color: var(--wizard-primary);
    border: 2px solid var(--wizard-primary);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--wizard-transition);
}

.btn-secondary:hover {
    background: var(--wizard-primary);
    color: white;
}

/* Result Extras */
.result-extras {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 25px 25px;
    border-top: 1px solid var(--wizard-border);
}

.btn-extra {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--wizard-primary);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--wizard-transition);
}

.btn-extra:hover {
    color: var(--wizard-primary-dark);
    text-decoration: underline;
}

/* Alternatives */
.alternatives-section {
    margin-top: 30px;
    padding: 25px;
    background: var(--wizard-card-bg);
    border-radius: var(--wizard-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alternatives-section h4 {
    text-align: center;
    color: var(--wizard-text);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.alternatives-section h4 i {
    color: #f1c40f;
    margin-right: 8px;
}

.alternatives-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.alternative-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--wizard-transition);
    min-width: 150px;
}

.alternative-card:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.alternative-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.alternative-card span {
    font-size: 0.85rem;
    color: var(--wizard-text);
    font-weight: 500;
    text-align: center;
}

/* Venta Cruzada Inteligente */
.cross-sell-section {
    margin-top: 35px;
    padding: 30px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--wizard-radius);
    border: 2px solid #f59e0b;
}

.cross-sell-header-section {
    text-align: center;
    margin-bottom: 25px;
}

.cross-sell-header-section h4 {
    font-size: 1.3rem;
    color: #92400e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cross-sell-header-section h4 i {
    color: #f59e0b;
}

.cross-sell-header-section p {
    color: #a16207;
    font-size: 0.95rem;
    margin: 0;
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cross-sell-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--wizard-transition);
}

.cross-sell-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cross-sell-badge {
    position: absolute;
    top: -10px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cross-sell-badge-critical {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.cross-sell-badge-recommended {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.cross-sell-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.cross-sell-header img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cross-sell-info h4 {
    font-size: 1rem;
    color: var(--wizard-text);
    margin: 0 0 4px;
}

.cross-sell-benefit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--wizard-primary);
    font-weight: 600;
}

.cross-sell-benefit i {
    color: #f59e0b;
}

.cross-sell-description {
    font-size: 0.85rem;
    color: var(--wizard-text-light);
    line-height: 1.5;
    margin: 0 0 15px;
}

.cross-sell-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed var(--wizard-border);
    margin-bottom: 15px;
}

.cross-sell-saving {
    font-size: 0.8rem;
    color: var(--wizard-success);
}

.cross-sell-saving i {
    margin-right: 4px;
}

.cross-sell-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wizard-primary);
}

.cross-sell-add-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--wizard-primary), var(--wizard-primary-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wizard-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cross-sell-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 107, 210, 0.4);
}

.cross-sell-add-btn.added {
    background: var(--wizard-success);
    cursor: default;
}

.cross-sell-add-btn.added:hover {
    transform: none;
    box-shadow: none;
}

/* Precios en tarjetas de cross-sell */
.price-original-small {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    font-weight: 400;
}

.price-discount {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Banner de Descuento de Paquete */
.discount-bundle-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #4c1d95 100%);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(124, 58, 237, 0.6);
    }
}

.discount-bundle-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.discount-badge-big {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5);
    position: relative;
    z-index: 1;
}

.discount-percent {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.discount-off {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4c1d95;
    text-transform: uppercase;
}

.discount-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.discount-content h4 {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-content h4 i {
    color: #fbbf24;
}

.discount-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin: 0 0 15px;
    line-height: 1.5;
}

.discount-content .highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.discount-calculation {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.price-strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.savings-row {
    color: #fbbf24;
    font-weight: 600;
}

.savings-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
}

.total-row {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 600;
}

.final-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.discount-bundle-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.discount-bundle-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.discount-bundle-btn.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

@media (max-width: 768px) {
    .cross-sell-grid {
        grid-template-columns: 1fr;
    }

    .cross-sell-section {
        padding: 20px 15px;
    }

    .cross-sell-header-section h4 {
        font-size: 1.1rem;
    }

    .discount-bundle-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .discount-badge-big {
        width: 70px;
        height: 70px;
    }

    .discount-percent {
        font-size: 1.5rem;
    }

    .discount-content h4 {
        justify-content: center;
        font-size: 1.1rem;
    }

    .discount-bundle-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Trust Section */
.trust-section {
    background: var(--wizard-bg);
    padding: 40px 20px;
    margin-top: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--wizard-text-light);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--wizard-primary);
    font-size: 1.3rem;
}

/* Notification */
.wizard-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--wizard-success);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.wizard-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-header-compact {
        padding: 20px 15px;
    }

    .wizard-header-compact .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .wizard-header-compact h1 {
        font-size: 1.3rem;
    }

    .wizard-header-compact p {
        font-size: 0.9rem;
    }

    .wizard-progress-inline .progress-step {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .wizard-progress-inline .progress-line {
        width: 15px;
    }

    .wizard-container {
        padding: 20px 15px;
    }

    .wizard-step h2 {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .options-grid,
    .options-grid.two-columns,
    .options-grid.three-columns,
    .options-grid.four-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .option-card {
        padding: 18px 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .option-card::before {
        display: none; /* Ocultar el botón hover en móvil */
    }

    .option-card p {
        padding-bottom: 0;
    }

    .option-icon {
        font-size: 1.8rem;
        margin-bottom: 0;
        min-width: 50px;
    }

    .option-card .option-content {
        flex: 1;
    }

    .wizard-navigation {
        flex-direction: column-reverse;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
    }

    .result-header {
        flex-direction: column;
        text-align: center;
    }

    .result-features ul {
        grid-template-columns: 1fr;
    }

    .result-extras {
        flex-direction: column;
        align-items: center;
    }

    .alternatives-grid {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .wizard-notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .wizard-hero h1 {
        font-size: 1.4rem;
    }

    .wizard-step h2 {
        font-size: 1.2rem;
    }

    .option-card h3 {
        font-size: 1rem;
    }

    .price-total {
        font-size: 1.1rem;
    }

    .btn-primary.btn-large {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

/* ============================================
   FORMATO DE PRECIOS CON IVA DESGLOSADO
   Línea 1: $6,190 + IVA
   Línea 2: ($7,180.40 total)
   ============================================ */

/* Precio SIN IVA (el valor grande y destacado) */
.price-sin-iva {
    font-size: 1.4em;
    font-weight: 800;
    color: var(--wizard-primary, #046BD2);
    letter-spacing: -0.5px;
}

/* Etiqueta "+ IVA" pequeña al lado */
.price-iva-label {
    font-size: 0.55em;
    font-weight: 600;
    color: var(--wizard-text-light, #888);
    margin-left: 3px;
}

/* Contenedor de la línea principal (precio + IVA) */
.price-main-line {
    display: block;
}

/* Línea del total debajo */
.price-total-line {
    display: block;
    font-size: 0.75rem;
    color: var(--wizard-success, #10b981);
    font-weight: 600;
    margin-top: 2px;
}

/* Moneda MXN */
.price-currency {
    font-size: 0.6em;
    font-weight: 500;
    color: var(--wizard-text-light, #888);
}

/* En el precio total del resultado principal */
.price-total .price-sin-iva {
    font-size: 2rem;
}

.price-total .price-iva-label {
    font-size: 0.9rem;
}

.price-total .price-total-line {
    font-size: 1rem;
    margin-top: 5px;
}

/* Ajuste para precio base (fila superior) */
.price-breakdown .price-sin-iva {
    font-size: 1.1rem;
}

.price-breakdown .price-iva-label {
    font-size: 0.7rem;
}

/* En tarjetas de cross-sell - formato vertical */
.cross-sell-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.cross-sell-price .price-sin-iva {
    font-size: 0.95rem;
}

.cross-sell-price .price-iva-label {
    font-size: 0.55rem;
}

/* Precio con descuento (verde) */
.price-discount .price-sin-iva {
    font-size: 1.1rem;
    color: var(--wizard-success, #10b981);
}

.price-discount .price-iva-label {
    font-size: 0.55rem;
    color: var(--wizard-success, #10b981);
}

/* Precio tachado */
.price-original-small {
    opacity: 0.6;
}

.price-original-small .price-sin-iva {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #999;
}

.price-original-small .price-iva-label {
    font-size: 0.5rem;
    text-decoration: line-through;
    color: #999;
}

/* Precio tachado en banner de descuento */
.price-strikethrough .price-sin-iva,
.price-strikethrough .price-iva-label {
    text-decoration: line-through;
    opacity: 0.7;
}

/* Banner de descuento (fondo oscuro morado) */
.discount-calculation .price-sin-iva {
    color: white;
    font-size: 1.8rem;
}

.discount-calculation .price-iva-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.discount-calculation .price-total-line {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .price-sin-iva {
        font-size: 1.2em;
    }

    .price-total .price-sin-iva {
        font-size: 1.6rem;
    }

    .price-total .price-total-line {
        font-size: 0.9rem;
    }

    .cross-sell-price .price-sin-iva {
        font-size: 0.9rem;
    }

    .discount-calculation .price-sin-iva {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .price-total .price-sin-iva {
        font-size: 1.4rem;
    }

    .price-total-line {
        font-size: 0.7rem;
    }
}
