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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #FF1B8D 0%, #E91E63 50%, #E91E63 100%);
    color: white;
    padding: 32px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.header .container {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.2;
}

.header p {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FF1B8D, #E91E63);
    color: white;
}

.btn-primary.btn-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.btn-primary.btn-bounce {
    animation: bounce 2s infinite;
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    margin-bottom: 24px;
}

.btn-instagram {
    background: linear-gradient(45deg, #9333ea, #ec4899);
    color: white;
    padding: 8px 24px;
    font-size: 14px;
    margin: 16px 0;
}

.btn:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

/* Benefits Section */
.benefits {
    padding: 32px 16px;
    background-color: #f9fafb;
}

.benefits h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    stroke-width: 2;
}

/* Social Proof Section */
.social-proof {
    padding: 32px 16px;
    background-color: white;
}

.social-proof h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.result-image {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 32px 16px;
    background-color: #f9fafb;
}

.testimonials h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 8px;
}

.carousel-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.star {
    color: #f59e0b;
    font-size: 16px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Ambassador Section */
.ambassador {
    padding: 32px 16px;
    background-color: white;
}

.ambassador h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

.ambassador-content {
    text-align: center;
}

.ambassador-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ambassador-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 4px;
}

.ambassador-title {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.ambassador-quote {
    color: #4b5563;
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    margin-top: 16px;
}

/* Pricing Section */
.pricing {
    padding: 32px 16px;
    background-color: #f9fafb;
}

.pricing h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-section {
    margin-bottom: 24px;
}

.old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 18px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: #FF1B8D;
    margin: 8px 0;
}

.savings {
    color: #10b981;
    font-weight: 600;
}

.bonus-section {
    text-align: left;
    margin-bottom: 24px;
}

.bonus-section h3 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Important Information */
.important-info {
    padding: 24px 16px;
    background-color: rgba(245, 158, 11, 0.2);
}

.info-box {
    background-color: rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.warning-icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}

.info-header h3 {
    font-weight: bold;
    color: #1f2937;
}

.info-box p {
    font-size: 14px;
    color: #4b5563;
}

/* Access Information */
.access-info {
    padding: 32px 16px;
    background-color: white;
}

.access-header {
    text-align: center;
    margin-bottom: 24px;
}

.inbox-icon {
    width: 32px;
    height: 32px;
    color: #3b82f6;
    margin: 0 auto 12px;
}

.access-header h2 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
}

.access-description {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item .check-icon {
    margin-top: 4px;
}

.feature-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: #6b7280;
}

/* FAQ Section */
.faq {
    padding: 32px 16px;
    background-color: #f9fafb;
}

.faq h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}

.faq-icon {
    font-size: 18px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

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

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

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

.faq-answer p {
    padding: 16px;
    font-size: 14px;
    color: #6b7280;
}

/* Guarantee Section */
.guarantee {
    padding: 32px 16px;
    background-color: white;
}

.guarantee-box {
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.shield-icon {
    width: 64px;
    height: 64px;
    color: #10b981;
    margin: 0 auto 16px;
}

.guarantee-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.guarantee-box p {
    font-size: 14px;
    color: #6b7280;
}

/* Final CTA */
.final-cta {
    padding: 32px 16px;
    background: linear-gradient(135deg, #FF1B8D 0%, #E91E63 50%, #E91E63 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lock-icon,
.clock-icon,
.award-icon {
    width: 16px;
    height: 16px;
    color: #bbf7d0;
}

/* Footer */
.footer {
    padding: 32px 16px;
    background-color: #1f2937;
    color: white;
    text-align: center;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 16px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 80px;
}

.payment-logo {
    width: 100%;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Cores específicas */
.payment-logo.visa {
    background-color: #1a1f71;
}

.payment-logo.mastercard {
    background-color: #eb001b;
}

.payment-logo.mpesa {
    background-color: #0fa03a;
}

.payment-logo.emola {
    background-color: #f7931e;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 10px;
    color: #6b7280;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 32px;
    }
    
    .header h1 {
        font-size: 28px;
    }
    
    .header p {
        font-size: 16px;
    }
    
    .testimonials .carousel-slide {
        min-width: 50%;
    }
    
    .grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .security-badges {
        gap: 32px;
    }
    
    .payment-methods {
        gap: 24px;
    }
}
