:root {
    --primary-blue: #1E40AF;
    --secondary-blue: #3B82F6;
    --light-blue: #60A5FA;
    --dark-blue: #1E3A8A;
    --accent-blue: #2563EB;
    --yellow-accent: #FCD34D;
    --gold: #F59E0B;
    --text-dark: #1F2937;
    --text-gray: #4B5563;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --red-price: #DC2626;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--yellow-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-highlight {
    color: var(--light-blue);
}

.hero {
    padding: 60px 0;
    background: var(--white);
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--accent-blue);
    font-weight: 700;
}

.hero-image {
    text-align: center;
    margin-top: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.hero-cta {
    text-align: center;
    margin-top: 40px;
}

.benefits {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.3;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--yellow-accent);
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.highlight-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.highlight-box {
    background: var(--white);
    border: 3px solid var(--yellow-accent);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.star-icon {
    font-size: 1.5rem;
}

.highlight-box p {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.message {
    padding: 60px 0;
    background: var(--white);
}

.message-title {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

.barriers {
    padding: 60px 0;
    background: var(--bg-light);
}

.barriers-intro {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-gray);
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.barriers-list {
    max-width: 900px;
    margin: 0 auto 40px;
}

.barrier-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.barrier-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.barrier-content h4 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.barrier-content p {
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    color: var(--text-gray);
    line-height: 1.7;
}

.barriers-image {
    text-align: center;
    margin: 40px 0;
}

.barriers-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
}

.barriers-solution {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-features {
    padding: 60px 0;
    background: var(--white);
}

.product-image {
    text-align: center;
    margin-bottom: 40px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.product-description {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.product-description strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item p {
    color: var(--text-gray);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-list {
    max-width: 100%;
    margin: 40px 0;
    padding: 20px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.testimonials-list::-webkit-scrollbar {
    height: 6px;
}

.testimonials-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.testimonials-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.testimonials-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 85%;
    max-width: 85%;
    flex-shrink: 0;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .testimonials-list {
        padding: 0 40px;
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 450px;
        max-width: 450px;
        padding: 30px;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        min-width: 500px;
        max-width: 500px;
    }
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    color: var(--white);
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.arrow-right {
    font-size: 2rem;
    animation: slideRight 1.5s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

.bonus {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
}

.bonus .section-title {
    color: var(--white);
}

.bonus-promise {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin: 40px 0;
    font-style: italic;
}

.bonus-preview {
    text-align: center;
    margin: 40px 0;
}

.bonus-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.bonus-list {
    max-width: 900px;
    margin: 40px auto;
}

.bonus-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bonus-item p {
    color: var(--text-gray);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.7;
}

.bonus-item strong {
    color: var(--primary-blue);
}

.pricing {
    padding: 60px 0;
    background: var(--white);
}

.pricing-list {
    max-width: 700px;
    margin: 40px auto;
}

.pricing-item {
    margin-bottom: 30px;
}

.pricing-item h4 {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 10px;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--text-light), transparent);
    margin: 15px 0;
}

.price {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--red-price);
    text-align: center;
}

.total-value {
    padding: 60px 0;
    background: var(--bg-light);
}

.total-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    font-weight: 700;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.total-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--red-price);
    text-align: center;
    text-decoration: line-through;
    margin-bottom: 40px;
}

.value-proposition {
    max-width: 900px;
    margin: 0 auto;
    background: var(--yellow-accent);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.value-proposition p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
}

.offer {
    padding: 60px 0;
    background: var(--white);
}

.offer-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.offer-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .offer-cards {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

.offer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    flex: 1;
    max-width: 450px;
    margin: 0 auto;
    border: 3px solid var(--bg-light);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.offer-card.premium {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-badge.popular {
    background: var(--gold);
    color: var(--text-dark);
}

.offer-card-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin: 25px 0 20px;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.offer-features li {
    padding: 10px 0;
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    color: var(--text-gray);
    border-bottom: 1px solid var(--bg-light);
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-price {
    margin: 30px 0;
    text-align: center;
}

.installments {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.full-price {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-blue);
}

.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1F2937 100%);
    color: var(--yellow-accent);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 900;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid var(--yellow-accent);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.offer-disclaimer {
    text-align: center;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--text-light);
    font-style: italic;
    margin-top: 30px;
}

.guarantee {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.guarantee-seal {
    max-width: 200px;
    margin: 0 auto 30px;
}

.guarantee-seal svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(245, 158, 11, 0.3));
}

.guarantee-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.guarantee-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--bg-light);
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon {
    color: var(--yellow-accent);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 20px;
    color: var(--text-gray);
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-contact {
    text-align: center;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 40px auto 30px;
    line-height: 1.7;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background: #25D366;
    color: var(--white);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-btn svg {
    width: 30px;
    height: 30px;
}

.footer {
    padding: 40px 0;
    background: var(--dark-blue);
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-text {
    color: var(--white);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

@media (max-width: 768px) {
    .benefit-item,
    .barrier-item,
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .barriers-intro {
        text-align: center;
    }
    
    .value-proposition {
        padding: 30px 20px;
    }
    
    .highlight-boxes {
        flex-direction: column;
    }
    
    .highlight-box {
        justify-content: center;
    }
    
    .testimonial-carousel {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
