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

:root {
    /* Colors */
    --primary: hsl(10, 85%, 62%);
    --primary-foreground: hsl(0, 0%, 100%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(25, 20%, 20%);
    --muted-foreground: hsl(25, 15%, 45%);
    --card: hsl(35, 40%, 97%);
    --border: hsl(30, 15%, 90%);
    
    /* Fonts */
    --font-sans: 'Quicksand', 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-32: 8rem;
    
    /* Shadows */
    --shadow-sm: 0px 2px 0px 0px rgba(0,0,0,0.05), 0px 1px 2px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0px 2px 0px 0px rgba(0,0,0,0.1), 0px 4px 6px -1px rgba(0,0,0,0.15);
    --shadow-xl: 0px 2px 0px 0px rgba(0,0,0,0.15), 0px 8px 10px -1px rgba(0,0,0,0.2);
    --shadow-2xl: 0px 2px 0px 0px rgba(0,0,0,0.25);
    
    /* Border Radius */
    --radius: 0.5rem;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary);
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-2xl);
}

.btn-green {
    background: hsl(142, 76%, 36%);
    color: white;
    padding: 1.5rem 2rem;
    width: 100%;
}

.btn-green:hover {
    background: hsl(142, 76%, 30%);
}

.btn-purple {
    background: linear-gradient(to right, hsl(280, 80%, 60%), hsl(340, 80%, 60%));
    color: white;
    padding: 1.5rem 2rem;
    width: 100%;
}

.btn-purple:hover {
    background: linear-gradient(to right, hsl(280, 80%, 55%), hsl(340, 80%, 55%));
}

.btn-cta {
    background: white;
    color: var(--primary);
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-icon {
    margin-left: 0.5rem;
}

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

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Purchase Notification */
.purchase-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    transition: all 0.5s ease-out;
    opacity: 0;
    transform: translateX(120%);
}

.purchase-notification.visible {
    opacity: 1;
    transform: translateX(0);
}

.notification-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid hsl(142, 76%, 85%);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-2xl);
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: hsl(142, 76%, 90%);
    border-radius: 9999px;
    color: hsl(142, 76%, 36%);
    flex-shrink: 0;
}

.notification-content {
    min-width: 0;
}

.notification-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.notification-plan,
.notification-location {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, hsl(340, 70%, 85%), hsl(270, 60%, 85%), hsl(200, 70%, 85%));
    padding: 5rem 0 8rem;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.decoration {
    position: absolute;
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.gradient-text {
    background: linear-gradient(to right, hsl(340, 80%, 60%), hsl(280, 80%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 42rem;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title-medium {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.benefit-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon-wrapper > div {
    background: white;
    padding: 0.75rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    color: var(--primary);
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.check-icon {
    margin: 0.75rem auto 0;
    color: hsl(142, 76%, 36%);
}

.gradient-red {
    background: linear-gradient(to bottom right, hsl(0, 70%, 90%), hsl(20, 70%, 85%));
}

.gradient-purple {
    background: linear-gradient(to bottom right, hsl(280, 60%, 90%), hsl(280, 60%, 85%));
}

.gradient-blue {
    background: linear-gradient(to bottom right, hsl(200, 70%, 90%), hsl(200, 70%, 85%));
}

.gradient-green {
    background: linear-gradient(to bottom right, hsl(142, 60%, 90%), hsl(142, 60%, 85%));
}

.gradient-yellow {
    background: linear-gradient(to bottom right, hsl(48, 90%, 85%), hsl(48, 90%, 80%));
}

.gradient-indigo {
    background: linear-gradient(to bottom right, hsl(240, 60%, 90%), hsl(240, 60%, 85%));
}

.gradient-cyan {
    background: linear-gradient(to bottom right, hsl(180, 60%, 90%), hsl(180, 60%, 85%));
}

.benefits-warning {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Social Proof Section */
.social-proof-section {
    background: linear-gradient(to bottom right, hsl(220, 10%, 97%), hsl(220, 10%, 95%));
    padding: 3rem 0 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    color: white;
}

.gradient-green-bg {
    background: linear-gradient(to bottom right, hsl(142, 76%, 50%), hsl(160, 76%, 50%));
}

.gradient-yellow-bg {
    background: linear-gradient(to bottom right, hsl(48, 100%, 50%), hsl(30, 100%, 50%));
}

.gradient-blue-bg {
    background: linear-gradient(to bottom right, hsl(200, 90%, 50%), hsl(180, 90%, 50%));
}

.gradient-purple-bg {
    background: linear-gradient(to bottom right, hsl(280, 80%, 60%), hsl(340, 80%, 60%));
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.stat-sublabel {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.best-seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, hsl(48, 100%, 50%), hsl(30, 100%, 50%));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.star-icon {
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom right, hsl(280, 60%, 97%), hsl(340, 70%, 97%));
    padding: 4rem 0 6rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    position: relative;
    background: white;
    border: 2px solid hsl(142, 76%, 85%);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card-premium {
    border-color: hsl(280, 80%, 75%);
    box-shadow: var(--shadow-xl);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.plan-badge-green {
    background: hsl(142, 76%, 36%);
}

.plan-badge-purple {
    background: hsl(280, 80%, 60%);
}

.most-popular-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, hsl(280, 80%, 60%), hsl(340, 80%, 60%));
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.plan-header {
    padding-top: 3rem;
    margin-bottom: 1.5rem;
}

.plan-old-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.plan-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.feature-highlight {
    font-weight: 700;
    color: hsl(280, 80%, 60%);
}

.check-icon-green {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: hsl(142, 76%, 36%);
}

.check-icon-purple {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: hsl(280, 80%, 60%);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0 6rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

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

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-fallback {
    background: linear-gradient(to bottom right, hsl(340, 70%, 85%), hsl(280, 60%, 85%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-comment {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom right, hsl(200, 70%, 97%), hsl(280, 60%, 97%));
    padding: 4rem 0 6rem;
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--foreground);
    font-family: var(--font-sans);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, hsl(340, 80%, 60%), hsl(280, 80%, 60%), hsl(200, 90%, 60%));
    padding: 5rem 0 8rem;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-instagram {
    background: linear-gradient(to right, hsl(340, 80%, 60%), hsl(280, 80%, 60%));
}

.social-facebook {
    background: linear-gradient(to right, hsl(200, 90%, 50%), hsl(200, 90%, 60%));
}

.social-whatsapp {
    background: linear-gradient(to right, hsl(142, 76%, 50%), hsl(142, 76%, 60%));
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-love {
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title-medium {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 8rem 0;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .benefits-section {
        padding: 6rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .purchase-notification,
    .hero-decorations,
    .btn {
        display: none;
    }
}
