/* Importar Google Fonts - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif !important;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

/* Forzar Montserrat en todos los elementos */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, select, label {
    font-family: 'Montserrat', sans-serif !important;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
}

.quiz-screen {
    display: none;
    animation: fadeIn 0.5s ease-in;
    min-height: 100vh;
}

.quiz-screen.active {
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-content {
    background: white;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Logo en la parte superior */
.logo-header {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.logo-header img {
    max-width: 120px;
    height: auto;
}

/* Barra de progreso */
.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: #17a2b8;
    transition: width 0.3s ease;
}

h1 {
    color: #000000;
    font-size: 22px;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}

h1 .highlight {
    color: #28a745;
}

h2 {
    color: #000000;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}

.subtitle {
    color: #666666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.4;
}

.time-info {
    color: #888888;
    font-size: 13px;
    text-align: center;
    margin-bottom: 15px;
}

.image-container {
    width: 100%;
    max-width: 100%;
    margin: 15px auto 20px;
    border-radius: 15px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 15px auto 0;
    transition: all 0.3s ease;
    box-shadow: none;
    text-transform: none;
}

.btn-primary:hover {
    background: #138496;
    transform: none;
}

.btn-primary:active {
    transform: scale(0.98);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
    padding: 0;
}

.option-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #e8f4f8;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: #ffffff;
    z-index: 0;
}

.option-card:hover {
    transform: scale(1.02);
    border-color: #17a2b8;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
}

.option-card:active {
    transform: scale(0.98);
}

.option-card img {
    width: 110%;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    object-fit: cover;
    object-position: center center;
    margin: -10px 0 0 -5% !important;
    padding: 0 !important;
    border-radius: 15px 15px 0 0;
    display: block;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
}

.option-card p {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 8px;
    margin: 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.option-button {
    background: #e8f4f8;
    border: 2px solid #e8f4f8;
    padding: 14px 16px;
    font-size: 15px;
    color: #000000;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-weight: 500;
    display: block;
    line-height: 1.4;
}

.option-button:hover {
    background: #d4ecf3;
    border-color: #17a2b8;
    transform: none;
}

.option-button:active {
    transform: scale(0.98);
}

.testimonial-subtitle {
    color: #666666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.testimonial {
    background: #f7fafc;
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid #17a2b8;
}

.testimonial p {
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial span {
    color: #17a2b8;
    font-weight: 600;
    font-size: 13px;
}

.result-screen {
    text-align: center;
    padding: 15px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.result-box {
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    margin: 20px 0;
    border: none;
}

.result-box h2 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 18px;
}

.result-text {
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.result-text .highlight-orange {
    color: #ff8c00;
    font-weight: 700;
}

.result-text .highlight-blue {
    color: #17a2b8;
    font-weight: 700;
}

/* Gráfico de progreso */
.progress-chart {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.chart-line {
    position: relative;
    height: 160px;
    margin-bottom: 20px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilos de la Página de Ventas */
.sales-content {
    background: white;
    padding: 0;
    overflow: hidden;
}

.sales-header {
    background: #ffffff;
    color: #000000;
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.sales-header h1 {
    color: #000000;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.sales-subtitle {
    font-size: 15px;
    color: #666666;
}

.sales-section {
    padding: 20px 15px;
    border-bottom: none;
}

.sales-section:last-child {
    border-bottom: none;
}

.sales-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-container {
    max-width: 700px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 40px;
    border-radius: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.benefits-section {
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 15px 12px;
    border-radius: 10px;
    text-align: left;
    box-shadow: none;
    transition: all 0.2s ease;
    border: 2px solid #e9ecef;
}

.benefit-card:hover {
    transform: none;
    border-color: #17a2b8;
}

.benefit-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.benefit-card h3 {
    color: #000000;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    color: #666666;
    font-size: 12px;
    line-height: 1.4;
}

.testimonials-section {
    background: white;
    padding: 20px 15px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.testimonial-benefits {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-benefits h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.testimonial-benefits ul {
    list-style: none;
    padding: 0;
}

.testimonial-benefits li {
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
}

.testimonial-benefits li::before {
    content: '- ';
    color: #17a2b8;
    font-weight: bold;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.testimonial-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #000000;
}

.testimonial-info .username {
    font-size: 11px;
    color: #666666;
}

.stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 8px;
}

.testimonial-card p {
    color: #333333;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

.testimonial-author {
    color: #666666;
    font-weight: 600;
    font-size: 12px;
    margin-top: 8px;
    display: block;
}

.guarantee-section {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    text-align: center;
}

.guarantee-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 20px;
    border: 3px solid #48bb78;
}

.guarantee-box p {
    color: #2d3748;
    font-size: 18px;
    line-height: 1.8;
}

.price-section {
    background: #fff8f0;
    text-align: center;
    padding: 20px 15px !important;
}

.price-box {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    margin-top: 15px;
    border: 2px solid #17a2b8;
}

.condition-badge {
    background: #17a2b8;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.offer-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.offer-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.old-price {
    color: #999999;
    font-size: 14px;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new-price {
    color: #000000;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.new-price .currency {
    font-size: 20px;
}

.installment-info {
    color: #666666;
    font-size: 13px;
    margin-bottom: 15px;
}

.total-price {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-cta {
    background: #dc3545;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin: 12px auto;
    transition: all 0.2s ease;
    box-shadow: none;
    text-transform: none;
    line-height: 1.4;
}

.btn-cta:hover {
    background: #c82333;
    transform: none;
}

.btn-cta:active {
    transform: scale(0.98);
}

.payment-info {
    color: #666666;
    font-size: 12px;
    margin-top: 8px;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-box::before {
    content: '⚠️';
    font-size: 20px;
}

.urgency-text {
    color: #856404;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}

.bonus-section {
    background: #fffaf0;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.bonus-check {
    color: #48bb78;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

.bonus-item strong {
    color: #667eea;
}

.faq-section {
    background: white;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: #f7fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.faq-item h3 {
    color: #2d3748;
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-item p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

.final-cta p {
    color: white;
    font-size: 18px;
    margin: 20px 0;
}

.urgency-text {
    color: #fed7d7;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 600;
}

/* Sección de Garantía */
.guarantee-section {
    background: #ffffff;
    text-align: center;
    padding: 20px 15px;
}

.guarantee-badge {
    background: #000000;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.guarantee-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 0;
    margin-top: 12px;
    border: none;
}

.guarantee-box p {
    color: #333333;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Sección de Acceso */
.access-section {
    text-align: center;
    background: #f8f9fa;
    padding: 20px 15px;
}

.access-badge {
    background: #000000;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.access-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

/* Responsividad */
@media (max-width: 768px) {
    .quiz-content,
    .sales-content {
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .option-card img {
        height: 160px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 16px;
    }

    .sales-header h1 {
        font-size: 20px;
    }

    .new-price {
        font-size: 28px;
    }

    .btn-cta {
        padding: 15px 25px;
        font-size: 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .sales-section {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .quiz-content,
    .sales-content {
        padding: 12px;
    }

    h1 {
        font-size: 19px;
        line-height: 1.3;
    }

    h2 {
        font-size: 17px;
        line-height: 1.3;
    }

    .option-button {
        padding: 13px 15px;
        font-size: 14px;
    }

    .btn-primary {
        padding: 13px 25px;
        font-size: 15px;
    }

    .btn-cta {
        padding: 14px 20px;
        font-size: 14px;
        line-height: 1.3;
    }

    .options-grid {
        gap: 8px;
    }

    .logo-header {
        padding: 10px 0;
        margin-bottom: 15px;
    }

    .logo-header img {
        max-width: 100px;
    }

    .option-card p {
        font-size: 13px;
        padding: 10px 6px;
    }

    .benefit-card h3 {
        font-size: 13px;
    }

    .benefit-card p {
        font-size: 11px;
    }
}
