* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-primary: #1b1b1b;
    --accent-color: #a8fb34;
    --accent-hover: #98eb24;
    --text-white: #ffffff;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --text-gray-500: #6b7280;
    --bg-gray-700: #374151;
    --bg-gray-800: #1f2937;
    --border-gray-600: #4b5563;
    --border-gray-700: #374151;
}

body {
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 251, 52, 0.1) 0%, rgba(168, 251, 52, 0.05) 50%, transparent 100%);
}

.header-content {
    position: relative;
    text-align: center;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}


/* Contenedor del logo */
.logo-container {
  text-align: center;
  padding: 10px 0;
  background-color: ;
}

/* Logo responsivo */
.logo-responsivo {
  max-width: 300px;
  width: 45%;
  height: auto;
}


.header-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.header-icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent-color);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color) 0%, #7dd831 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-white {
    color: var(--text-white);
}

.text-accent {
    color: var(--accent-color);
    font-weight: 600;
}

.header-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray-300);
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.header-description {
    font-size: 1.125rem;
    color: var(--text-gray-400);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.header-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray-400);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Main Content */
.main {
    padding: 2rem 0;
}

.wizard-container {
    max-width: 64rem;
    margin: 0 auto;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-gray-400);
}

.progress-percentage {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: var(--bg-gray-700);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, #7dd831 100%);
    border-radius: 9999px;
    transition: width 0.5s ease;
    width: 10%;
}

/* Real-time Price Display - Uniform Style */
.real-time-price {
    margin-bottom: 2rem;
    display: none;
}

.price-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 251, 52, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(168, 251, 52, 0.1);
}

.price-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
    justify-content: center;
}

.price-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-color);
}

.price-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
}

.price-breakdown {
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item-name {
    color: var(--text-gray-300);
    font-size: 0.875rem;
}

.price-item-value {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.875rem;
}

.price-item-value.discount {
    color: var(--accent-color);
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid rgba(168, 251, 52, 0.3);
    font-size: 1.125rem;
    font-weight: 700;
}

.price-total span:first-child {
    color: var(--text-white);
}

.total-amount {
    color: var(--accent-color);
}

.price-note {
    text-align: center;
    margin-top: 0.5rem;
}

.price-note small {
    color: var(--text-gray-500);
    font-size: 0.95rem;
}

/* Wizard Card */
.wizard-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-gray-400);
    margin-bottom: 2rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.options-grid.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.options-grid.three-columns {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.option-card {
    background: rgba(31, 41, 55, 0.3);
    border: 2px solid var(--border-gray-700);
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.option-card:hover {
    border-color: rgba(168, 251, 52, 0.5);
    background: rgba(55, 65, 81, 0.3);
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: var(--accent-color);
    background: rgba(168, 251, 52, 0.1);
    box-shadow: 0 0 20px rgba(168, 251, 52, 0.2);
}

/* Checkbox Cards for Multiple Selection */
.checkbox-card {
    position: relative;
}

.checkbox-indicator {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--border-gray-600);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-card.selected .checkbox-indicator {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--bg-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-card.selected .check-icon {
    opacity: 1;
}

.option-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: var(--text-gray-400);
    transition: color 0.3s ease;
}

.option-card.selected .option-icon {
    color: var(--accent-color);
}

.option-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.option-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-description {
    color: var(--text-gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.option-features {
    list-style: none;
    font-size: 0.75rem;
    color: var(--text-gray-500);
}

.option-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.option-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--border-gray-600);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: background-color 0.3s ease;
}

.option-card.selected .option-features li::before {
    background: var(--accent-color);
}

.option-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background: var(--accent-color);
    color: var(--bg-primary);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.objective-info {
    padding: 1rem;
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.5rem;
    text-align: center;
}

.objective-info h4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.objective-info p {
    font-size: 0.875rem;
    color: var(--text-gray-400);
    line-height: 1.4;
}

/* Info Boxes */
.info-box {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    text-align: center;
}

.info-box.tip {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.info-box.warning {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.info-box.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.info-box.purple {
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #c084fc;
}

.info-box.orange {
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #fdba74;
}

/* Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gray-700);
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: var(--bg-gray-700);
    color: var(--text-white);
    border: 1px solid var(--border-gray-600);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--border-gray-600);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Results Styles */
.results-container {
    max-width: 64rem;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.results-header p {
    font-size: 1.25rem;
    color: var(--text-gray-300);
}

.results-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.features-section .wizard-card {
    min-height: auto;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-title i {
    color: var(--accent-color);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 0.5rem;
}

.feature-item-result::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item-result span {
    color: var(--text-gray-300);
}

.pricing-card {
    position: sticky;
    top: 2rem;
    min-height: auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 3rem;
    height: 3rem;
    color: var(--accent-color);
    margin: 0 auto 0.75rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-row span:first-child {
    color: var(--text-gray-400);
}

.price-value {
    color: var(--text-white);
    font-weight: 600;
}

.discount-row {
    color: var(--accent-color);
}

.discount-value {
    color: var(--accent-color);
    font-weight: 600;
}

.total-row {
    border-top: 1px solid var(--border-gray-700);
    padding-top: 1rem;
    font-size: 1.25rem;
}

.total-row span:first-child {
    color: var(--text-white);
    font-weight: 700;
}

.final-price {
    color: var(--accent-color);
    font-weight: 700;
}

.offer-alert {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.offer-alert p {
    color: #fbbf24;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
    margin-bottom: 1rem;
    width: 100%;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 251, 52, 0.3); }
    50% { box-shadow: 0 0 30px rgba(168, 251, 52, 0.6); }
}

.pricing-card .btn-secondary {
    width: 100%;
}

/* Benefits Section */
.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 0.5rem;
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(168, 251, 52, 0.3);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(168, 251, 52, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    color: var(--accent-color);
}

.benefit-card h4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-gray-400);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: rgba(31, 41, 55, 0.3);
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-content {
    color: var(--text-gray-400);
    font-size: 0.875rem;
}

.footer-brand {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brand:hover {
    color: var(--accent-hover);
}

/* Animations */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title h1 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.25rem;
    }
    
    .header-description {
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .results-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        position: static;
    }
    
    .benefits-section {
        grid-template-columns: 1fr;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-navigation button {
        width: 100%;
        justify-content: center;
    }
    
    .options-grid.three-columns {
        grid-template-columns: 1fr;
    }
    
    .options-grid.two-columns {
        grid-template-columns: 1fr;
    }
    
    .header-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .header-title {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .price-card {
        padding: 1rem;
    }
    
    .price-breakdown {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .wizard-card {
        padding: 1rem;
    }
    
    .option-card {
        padding: 0.75rem;
    }
    
    .header-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-title h1 {
        font-size: 1.75rem;
    }

        .header-icon {
    display: none;
}
}