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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.highlight {
    color: #ff8c00;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.hero-img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background: transparent;
}

.hero-img:hover {
    transform: scale(1.05);
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: blink 1.5s infinite alternate;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ff6600 0%, #ff4400 100%);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    font-size: 1.05rem;
    padding: 16px 32px;
    max-width: 400px;
}

.cta-button.final {
    font-size: 1.3rem;
    padding: 24px 48px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-text {
    color: #9ca3af;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Social Proof Section */
.social-proof {
    background: rgba(255, 140, 0, 0.1);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.social-proof-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

#unete{
    font-size: 20px;
    color: white   ;
}

.social-proof-icon {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 20px;
}

.social-proof-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.social-proof-content p {
    font-size: 1.1rem;
    color: #d1d5db;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pain Points Section */
.pain-points {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pain-item {
    background: rgba(255, 140, 0, 0.1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.pain-icon {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 20px;
}

.pain-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.pain-item p {
    color: #d1d5db;
    line-height: 1.6;
}

.solution-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

/* Transformation Section */
.transformation {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 140, 0, 0.4);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #ff8c00;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.benefit-item p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Book Content Section */
.book-content {
    background: rgba(26, 26, 26, 0.8);
}

.chapters-container {
    max-width: 800px;
    margin: 0 auto;
}

.chapter-item {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chapter-item:hover {
    border-color: rgba(255, 140, 0, 0.4);
}

.chapter-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.chapter-header:hover {
    background: rgba(255, 140, 0, 0.1);
}

.chapter-number {
    color: #ff8c00;
    font-weight: 700;
}

.chapter-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.chapter-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chapter-item.active .chapter-content {
    max-height: 200px;
    padding: 0 30px 24px;
}

.chapter-content p {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.6;
}

.chapter-content ul {
    list-style: none;
    padding-left: 0;
}

.chapter-content li {
    color: #d1d5db;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.chapter-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
}

/* Interactive Section */
.interactive {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.interactive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.4;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.feature i {
    color: #ff8c00;
    font-size: 1.2rem;
}

.interactive-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Trust Section */
.trust {
    background: rgba(26, 26, 26, 0.8);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

.guarantee-box, .authority-box {
    background: rgba(255, 140, 0, 0.1);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}


.guarantee-box:hover, .authority-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.4);
}

.guarantee-icon, .authority-icon {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 20px;
}

.guarantee-box h3, .authority-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.guarantee-box p, .authority-box p {
    color: #d1d5db;
    line-height: 1.6;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    text-align: center;
    padding: 40px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial cite {
    color: #ff8c00;
    font-weight: 600;
}

/* Bonus Section */
.bonus {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 50px;
    font-style: italic;
}

.bonus-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.bonus-image-container img {
    width: 135%; /* o un valor específico como 500px */
    max-width: 800px; /* para que no se pase */
    height: auto; /* mantiene la proporción */
    box-shadow: none !important;
}

.bonus-pack-img {
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bonus-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: auto;
    margin-bottom: 50px;
    max-width: 80%;
}

.bonus-item-small {
    background: rgba(255, 140, 0, 0.1);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.bonus-item-small:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.4);
}


.bonus-icon-small {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 15px;
}

.bonus-item-small h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
    background: linear-gradient(135deg, #ff8c00 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
}

.original-price-small {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 600;
}

.strikethrough {
    text-decoration: line-through;
    color: #ef4444;
}

.total-value {
    text-align: center;
    background: rgba(255, 140, 0, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.total-value h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.total-value h3 .strikethrough {
    color: #ef4444;
    text-decoration: line-through;
}

.value-highlight {
    font-size: 1.3rem;
    color: #ff8c00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-container {
    margin-bottom: 40px;
}

.price-box {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    padding: 40px 60px;
    border-radius: 20px;
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 2rem;
    color: #ff8c00;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 800;
}

.cents {
    font-size: 2rem;
    color: #ff8c00;
    font-weight: 600;
}

.price-description {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.savings-text {
    color: #ff8c00;
    font-size: 1rem;
    font-weight: 600;
}

.urgency-text {
    margin-bottom: 40px;
}

.urgency-text p {
    color: #fbbf24;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 0.9rem;
}

.badge i {
    color: #ff8c00;
}

/* FAQ Section */
.faq {
    background: rgba(26, 26, 26, 0.8);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 140, 0, 0.4);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 140, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-question i {
    color: #ff8c00;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 24px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .interactive-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .security-badges {
        gap: 20px;
    }
    
    .badge {
        font-size: 0.8rem;
    }
    
    .price-box {
        padding: 30px 40px;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .currency, .cents {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-proof-content h3 {
        font-size: 1.5rem;
    }

    .social-proof-content p {
        font-size: 1rem;
    }

    .hero-img {
        max-width: 250px;
    }

    .bonus-pack-img {
        max-width: 100%;
    }

    .bonus-list-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 16px 24px;
    }
    
    .cta-button.final {
        font-size: 1.1rem;
        padding: 20px 32px;
    }
    
    .pain-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pain-item, .benefit-item {
        padding: 30px 20px;
    }
    
    .chapter-header, .faq-question {
        padding: 20px;
    }
    
    .chapter-content, .faq-answer {
        padding: 0 20px;
    }
    
    .chapter-item.active .chapter-content, .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .social-proof {
        padding: 30px 0;
    }

    .social-proof-content h3 {
        font-size: 1.3rem;
    }

    .bonus-item-small {
        padding: 25px 20px;
    }

    .total-value {
        padding: 30px 20px;
    }

    .hero-img {
        max-width: 200px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text > * {
    animation-delay: 0.2s;
}

.hero-image {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

