/* Variables */
:root {
    /* Colores primarios - Azul profesional para confianza */
    --primary: #1d4ed8;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #3b82f6;
    --secondary-dark: #2563eb;

    /* Color de marca MagTech - Solo para logo y elementos de marca */
    --brand: #45a059;
    --brand-dark: #3a8a4a;
    --brand-light: #5cb86d;

    --accent: #10b981;
    --accent-dark: #059669;
    --danger: #ef4444;
    --warning: #f59e0b;
    --coral: #ff6b6b;
    --yellow: #fbbf24;

    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;

    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-brand: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    --gradient-warm: linear-gradient(135deg, var(--coral) 0%, #f97316 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(29, 78, 216, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(37, 99, 235, 0.05) 0px, transparent 50%);

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06),
                 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04),
                 0 2px 4px rgba(0, 0, 0, 0.06),
                 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.04),
                 0 4px 6px rgba(0, 0, 0, 0.05),
                 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.06),
                 0 10px 10px rgba(0, 0, 0, 0.04),
                 0 4px 6px rgba(0, 0, 0, 0.03);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.12),
                  0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(29, 78, 216, 0.3),
                   0 0 40px rgba(59, 130, 246, 0.2);
    --shadow-primary: 0 10px 40px rgba(29, 78, 216, 0.25);

    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--gray-500);
    font-weight: 500;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary);
}

.logo svg {
    width: 20px;
    height: 20px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.header-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.brand-accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
}

.help-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.help-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.help-icon,
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.faq-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
}

/* Progress Bar with Milestones */
.progress-container {
    background: var(--white);
    padding: 0 20px 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.progress-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    width: 25%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.progress-milestones {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: var(--transition);
}

.milestone.active {
    opacity: 1;
}

.milestone.completed {
    opacity: 1;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: var(--transition);
}

.milestone.active .milestone-dot {
    background: var(--gradient);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.2);
}

.milestone.completed .milestone-dot {
    background: var(--accent);
}

.milestone-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
}

.milestone.active .milestone-label {
    color: var(--primary);
    font-weight: 600;
}

/* Main Layout */
.main {
    padding: 2rem 0 4rem;
    padding-bottom: 100px;
}

@media (min-width: 1025px) {
    .main {
        padding-bottom: 4rem;
    }
}

/* Hero Mini with Dynamic Illustration */
.hero-mini {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-illustration {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-illustration svg {
    width: 100%;
    height: 100%;
}

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

.hero-mini h1 {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-mini p {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.proof-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid var(--white);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:nth-child(2) {
    background: var(--secondary);
}

.avatar:nth-child(3) {
    background: var(--accent);
}

.avatar:nth-child(4) {
    background: var(--gray-400);
    font-size: 0.875rem;
}

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

.proof-text strong {
    color: var(--dark);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.trust-badges .badge svg {
    color: var(--accent);
}

/* Cotizador Container */
.cotizador-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .cotizador-container {
        grid-template-columns: 1fr;
    }

    .summary-panel {
        display: none;
    }
}

/* Form Panel */
.form-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

/* Mode Selector */
.mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mode-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-align: left;
}

.mode-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mode-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.mode-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.mode-btn.active .mode-icon {
    background: var(--gradient);
}

.mode-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
}

.mode-btn.active .mode-icon svg {
    color: var(--white);
}

.mode-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mode-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.discount-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Steps */
.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    flex: 1;
}

/* FAQ Toggle */
.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.faq-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

/* FAQ Panel */
.faq-panel {
    display: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    animation: slideDown 0.3s ease;
}

.faq-panel.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.faq-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.option-card {
    cursor: pointer;
    position: relative;
}

.option-card input {
    display: none;
}

.card-content {
    padding: 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.option-card:hover .card-content {
    border-color: var(--primary);
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.option-card input:checked + .card-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    box-shadow: var(--shadow-primary);
}

/* Selection animation */
.option-card input:checked + .card-content::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning);
    color: var(--white);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.option-card input:checked + .card-content .card-icon {
    background: var(--gradient);
}

.card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
}

.option-card input:checked + .card-content .card-icon svg {
    color: var(--white);
}

.card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.card-content p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price .from {
    font-size: 0.65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.price .amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Tooltip for cards */
.option-card[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 10;
    margin-bottom: 8px;
    max-width: 200px;
    white-space: normal;
    text-align: center;
}

.option-card[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark);
    margin-bottom: -4px;
}

/* Extras List */
.extras-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.extra-item {
    cursor: pointer;
    position: relative;
}

.extra-item input {
    display: none;
}

.extra-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.extra-item:hover .extra-content {
    border-color: var(--primary);
    background: var(--gray-50);
}

.extra-item input:checked + .extra-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.extra-item.recommended .extra-content {
    border-color: var(--accent);
}

.recommended-tag {
    position: absolute;
    top: -8px;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
}

.extra-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.extra-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.extra-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.extra-price.variable {
    color: var(--gray-500);
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
}

.extra-item.variable-price {
    border-style: dashed;
}

.extra-item.variable-price:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(99, 102, 241, 0.08) 100%);
}

/* Final Step Message */
.final-step-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-step-message svg {
    color: var(--accent);
}

.final-step-message p {
    color: var(--gray-700);
    font-weight: 500;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-400);
}

/* Features Section */
.features-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.features-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.features-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

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

.feature-item {
    cursor: pointer;
}

.feature-item input {
    display: none;
}

.feature-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover .feature-content {
    border-color: var(--primary);
    background: var(--gray-50);
}

.feature-item input:checked + .feature-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.feature-item input:disabled + .feature-content {
    opacity: 0.8;
    cursor: default;
}

.feature-info span {
    font-size: 0.9rem;
}

.feature-info small {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
}

.feature-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Advanced Mode */
.advanced-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.advanced-banner svg {
    flex-shrink: 0;
}

.advanced-banner h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.advanced-banner p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Prepared Grid */
.prepared-section {
    margin-bottom: 1.5rem;
}

.prepared-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.prepared-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

.prepared-card input {
    display: none;
}

.prepared-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.prepared-card:hover .prepared-content {
    border-color: var(--accent);
    background: rgba(16, 185, 129, 0.05);
}

.prepared-card input:checked + .prepared-content {
    border-color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
}

.prepared-content svg {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
}

.prepared-card input:checked + .prepared-content svg {
    color: var(--accent);
}

.prepared-content span {
    font-weight: 500;
    font-size: 0.8rem;
}

.prepared-content small {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.75rem;
}

/* Upload Area */
.upload-section {
    margin-bottom: 1.5rem;
}

.upload-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.upload-area {
    padding: 2rem;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.upload-area.dragging {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.upload-area svg {
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.upload-area p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.upload-area small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.browse-btn {
    color: var(--primary);
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.files-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 0.8rem;
}

.file-item button {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

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

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.nav-btn:active::before {
    width: 300px;
    height: 300px;
}

.nav-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-primary);
}

.nav-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.nav-btn svg {
    transition: transform 0.3s ease;
}

.nav-btn:hover svg {
    transform: translateX(4px);
}

.nav-btn.prev {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.nav-btn.prev:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.nav-btn.prev:hover svg {
    transform: translateX(-4px);
}

/* Summary Panel */
.summary-panel {
    position: sticky;
    top: 100px;
}

.summary-sticky {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.summary-header {
    padding: 1.25rem;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.savings-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
}

.summary-content {
    padding: 1.25rem;
}

/* Summary Breakdown */
.summary-breakdown {
    margin-bottom: 1rem;
}

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

.breakdown-section:last-child {
    margin-bottom: 0;
}

.breakdown-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.breakdown-item span:first-child {
    color: var(--gray-700);
}

.breakdown-item span:last-child {
    font-weight: 500;
}

.breakdown-item.variable {
    border-style: dashed;
    border-color: var(--gray-200);
}

.breakdown-item .price-variable {
    color: var(--gray-500);
    font-style: italic;
    font-size: 0.8rem;
}

/* Empty Summary */
.empty-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--gray-400);
}

.empty-summary svg {
    margin-bottom: 0.75rem;
}

.empty-summary p {
    font-size: 0.9rem;
}

/* Summary Totals */
.summary-totals {
    padding: 1rem 0;
    border-top: 2px solid var(--gray-100);
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.total-row.subtotal {
    color: var(--gray-500);
}

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

.total-row.coupon {
    color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 4px 0;
}

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

.total-row.coupon .discount-amount {
    color: #16a34a;
}

.total-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 0.75rem;
}

/* Price animation */
.total-animated {
    transition: transform 0.3s ease, color 0.3s ease;
}

.total-animated.updating {
    transform: scale(1.1);
    color: var(--primary);
}

/* Price Comparison */
.price-comparison {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.comparison-item .strikethrough {
    text-decoration: line-through;
    color: var(--gray-400);
}

.comparison-item.highlight {
    font-weight: 600;
    color: var(--accent);
}

/* Payment Options */
.payment-options {
    margin-bottom: 1rem;
}

.payment-options h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.payment-option input {
    display: none;
}

.payment-content {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.payment-option:hover .payment-content {
    border-color: var(--primary);
}

.payment-option input:checked + .payment-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.payment-title {
    font-weight: 500;
}

.payment-discount {
    color: var(--accent);
    font-size: 0.8rem;
}

.payment-extra {
    color: var(--warning);
    font-size: 0.8rem;
}

/* Payment Split Config */
.payment-split-config {
    margin-top: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.03) 0%, rgba(59, 130, 246, 0.06) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(29, 78, 216, 0.1);
}

.split-slider-container {
    margin-bottom: 1rem;
}

.split-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.split-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.split-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--gray-200);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.split-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(29, 78, 216, 0.3);
    transition: transform 0.2s ease;
}

.split-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.split-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(29, 78, 216, 0.3);
}

.split-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.split-value-start {
    color: var(--primary);
    font-weight: 600;
}

.split-value-end {
    color: var(--gray-600);
    font-weight: 500;
}

.split-amounts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.split-amount {
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.split-amount-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.split-amount-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Delivery Time */
.delivery-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.delivery-time svg {
    color: var(--primary);
}

.delivery-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.delivery-value {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.submit-btn:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--gray-200);
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: var(--gray-500);
    font-size: 0.75rem;
    text-align: center;
}

.guarantee svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Mobile Price Bar */
.mobile-price-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    z-index: 90;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .mobile-price-bar {
        display: block;
    }
}

.mobile-price-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-price-info {
    display: flex;
    flex-direction: column;
}

.mobile-price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.mobile-price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.mobile-price-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Mobile Summary Sheet */
.mobile-summary-sheet {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
}

.mobile-summary-sheet.active {
    display: block;
}

.sheet-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
    margin: 0.75rem auto;
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.sheet-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.sheet-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.sheet-body {
    padding: 1.25rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 80;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (min-width: 1025px) {
    .whatsapp-float {
        bottom: 30px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: auto;
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.modal-header h2 {
    font-size: 1.1rem;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
}

.modal-body {
    padding: 1.25rem;
}

.help-item {
    margin-bottom: 1.25rem;
}

.help-item h3 {
    margin-bottom: 0.4rem;
    color: var(--primary);
    font-size: 0.95rem;
}

.help-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.help-tip {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

/* Success Modal */
.success-modal .modal-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.success-content {
    padding: 0 !important;
}

.success-animation {
    margin-bottom: 1.5rem;
    position: relative;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark {
    width: 100%;
    height: 100%;
}

.checkmark-circle-bg {
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--accent);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.confetti {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confetti-fall 1s ease-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) rotate(720deg);
        opacity: 0;
    }
}

.success-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.success-message {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.success-details {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
}

.success-details p {
    margin-bottom: 0.4rem;
}

.success-details strong {
    color: var(--primary);
}

.success-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    padding: 0.75rem 1.25rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-mini h1 {
        font-size: 1.5rem;
    }

    .hero-illustration {
        width: 80px;
        height: 80px;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badges .badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }

    .mode-selector {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr 1fr;
    }

    .prepared-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .progress-milestones {
        display: none;
    }

    .form-panel {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .options-grid {
        grid-template-columns: 1fr;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.empty-message {
    text-align: center;
    padding: 2rem;
    color: var(--gray-400);
    font-style: italic;
}

/* Shake animation for validation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.3s ease;
}

/* Loading state */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   DISCOUNT BANNER
   ===================================================== */

.discount-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.discount-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.discount-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.discount-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.discount-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.discount-text strong {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.discount-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.discount-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .discount-banner {
        padding: 10px 0;
    }

    .discount-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .discount-icon {
        display: none;
    }

    .discount-text {
        font-size: 0.85rem;
    }
}

/* =====================================================
   COUPON SECTION
   ===================================================== */

.coupon-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #166534;
    font-weight: 600;
    font-size: 0.95rem;
}

.coupon-header svg {
    color: #22c55e;
}

.coupon-input-group {
    display: flex;
    gap: 12px;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #86efac;
    border-radius: var(--radius);
    font-size: 0.95rem;
    text-transform: uppercase;
    background: white;
    transition: all 0.2s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.coupon-input:disabled {
    background: #f0fdf4;
    color: #166534;
}

.coupon-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.coupon-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.coupon-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.coupon-result {
    margin-top: 12px;
}

.coupon-success {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #166534;
    font-weight: 600;
    font-size: 0.9rem;
}

.coupon-success svg {
    color: #22c55e;
}

.coupon-error {
    color: #dc2626;
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .coupon-input-group {
        flex-direction: column;
    }

    .coupon-btn {
        width: 100%;
    }
}
/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       C O T I Z A D O R   M O B I L E   R E S P O N S I V E   F I X E S  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
  
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   {  
         / *   L a y o u t   G e n e r a l   * /  
         . c o t i z a d o r - c o n t a i n e r   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   / *   C o l a p s a r   s i d e b a r   * /  
                 g a p :   1 r e m ;  
         }  
  
         / *   O c u l t a r   p a n e l   l a t e r a l   e n   t a b l e t / m   v i l   ( u s a m o s   e l   b o t t o m   s h e e t )   * /  
         . s u m m a r y - p a n e l   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         / *   A j u s t a r   p a d d i n g   d e l   c o n t e n e d o r   p r i n c i p a l   * /  
         . m a i n   {  
                 p a d d i n g - t o p :   2 0 p x ;  
                 p a d d i n g - b o t t o m :   1 2 0 p x ;   / *   E s p a c i o   p a r a   l a   b a r r a   f l o t a n t e   i n f e r i o r   * /  
         }  
          
         / *   B a r r a   d e   p r e c i o   f l o t a n t e   ( a s e g u r a r   v i s i b i l i d a d )   * /  
         . m o b i l e - p r i c e - b a r   {  
                 d i s p l a y :   b l o c k ;  
                 p a d d i n g - b o t t o m :   m a x ( 1 0 p x ,   e n v ( s a f e - a r e a - i n s e t - b o t t o m ) ) ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         / *   S e l e c t o r e s   d e   M o d o   ( S i m p l e / A v a n z a d o )   * /  
         . m o d e - s e l e c t o r   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   1 0 p x ;  
         }  
  
         . m o d e - b t n   {  
                 p a d d i n g :   1 r e m ;  
         }  
  
         / *   T a r j e t a s   d e   O p c i o n e s   * /  
         . o p t i o n s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   / *   1   c o l u m n a   p a r a   t a r j e t a s   g r a n d e s   * /  
                 g a p :   1 5 p x ;  
         }  
  
         . o p t i o n - c a r d   {  
                 m i n - h e i g h t :   a u t o ;  
         }  
  
         . c a r d - c o n t e n t   {  
                 f l e x - d i r e c t i o n :   r o w ;   / *   I c o n o   a   l a   i z q u i e r d a ,   t e x t o   a   l a   d e r e c h a   * /  
                 t e x t - a l i g n :   l e f t ;  
                 a l i g n - i t e m s :   c e n t e r ;  
                 p a d d i n g :   1 r e m ;  
                 g a p :   1 r e m ;  
                 m i n - h e i g h t :   a u t o ;  
                 j u s t i f y - c o n t e n t :   f l e x - s t a r t ;  
         }  
  
         . c a r d - i c o n   {  
                 m a r g i n :   0 ;  
                 w i d t h :   4 0 p x ;  
                 h e i g h t :   4 0 p x ;  
                 f l e x - s h r i n k :   0 ;  
         }  
  
         . c a r d - c o n t e n t   h 4   {  
                 f o n t - s i z e :   0 . 9 5 r e m ;  
                 m a r g i n :   0 ;  
         }  
  
         . c a r d - c o n t e n t   p   {  
                 d i s p l a y :   n o n e ;   / *   O c u l t a r   d e s c r i p c i o n e s   l a r g a s   e n   m   v i l   p a r a   a h o r r a r   e s p a c i o   * /  
         }  
  
         . p r i c e   {  
                 m a r g i n - l e f t :   a u t o ;  
                 a l i g n - i t e m s :   f l e x - e n d ;  
         }  
  
         . p r i c e   . a m o u n t   {  
                 f o n t - s i z e :   1 r e m ;  
         }  
  
         / *   P r o g r e s s   B a r   * /  
         . p r o g r e s s - m i l e s t o n e s   {  
                 d i s p l a y :   n o n e ;   / *   O c u l t a r   t e x t o s   d e   h i t o s ,   d e j a r   s o l o   l a   b a r r a   * /  
         }  
  
         . p r o g r e s s - c o n t a i n e r   {  
                 p a d d i n g :   0   1 5 p x   1 0 p x ;  
         }  
  
         / *   N a v e g a c i   n   * /  
         . s t e p - n a v i g a t i o n   {  
                 p o s i t i o n :   f i x e d ;  
                 b o t t o m :   7 0 p x ;   / *   E n c i m a   d e   l a   b a r r a   d e   p r e c i o s   * /  
                 l e f t :   0 ;  
                 r i g h t :   0 ;  
                 b a c k g r o u n d :   w h i t e ;  
                 p a d d i n g :   1 0 p x   2 0 p x ;  
                 b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - g r a y - 2 0 0 ) ;  
                 z - i n d e x :   8 0 ;  
                 m a r g i n :   0 ;  
                 j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         }  
  
         / *   A j u s t e   p a r a   q u e   e l   c o n t e n i d o   n o   q u e d e   t a p a d o   p o r   l a   n a v   f i j a   * /  
         . f o r m - p a n e l   {  
                 p a d d i n g - b o t t o m :   6 0 p x ;    
         }  
  
         / *   F o r m u l a r i o s   * /  
         . f o r m - r o w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         / *   M o d a l e s   * /  
         . m o d a l - c o n t e n t   {  
                 w i d t h :   9 5 % ;  
                 m a x - h e i g h t :   8 0 v h ;  
                 m a r g i n :   0   a u t o ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   {  
         / *   A j u s t e s   f i n o s   * /  
         . h e r o - m i n i   h 1   {  
                 f o n t - s i z e :   1 . 7 5 r e m ;  
         }  
          
         . s o c i a l - p r o o f   {  
                 f l e x - w r a p :   w r a p ;  
         }  
 }  
 

/* ============================================
   ESTILOS PARA CARACTERÍSTICAS INCLUIDAS/NO INCLUIDAS
   ============================================ */

.included-features {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-included,
.feature-not-included {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-included {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-not-included {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.05) 0%, rgba(71, 85, 105, 0.02) 100%);
    border: 1px solid rgba(100, 116, 139, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.check {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
}

.feature-icon.cross {
    background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
    color: var(--gray-600);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.feature-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.feature-not-included .feature-info h4 {
    color: var(--gray-700);
}

.feature-not-included .feature-info p {
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .included-features {
        gap: 0.75rem;
    }
    
    .feature-included,
    .feature-not-included {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-info h4 {
        font-size: 0.9375rem;
    }
    
    .feature-info p {
        font-size: 0.8125rem;
    }
}

