:root {
    /* Sophisticated Palette */
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    /* Very subtle gray for section alternation */
    --bg-hero: #fff0f5;
    /* Lavender Blush - extremely subtle pink */

    --bg-page: #00ced1;
    /* Vibrant Cyan/Turquoise from image */

    --text-dark: #1f2937;
    /* Nearly black for readability */
    --text-muted: #4b5563;

    --brand-primary: #db2777;
    /* Deep Pink */
    --brand-secondary: #8b5cf6;
    /* Violet */

    --cta-color: #00e676;
    /* Electric Fluorescent Green */
    --cta-hover: #00c853;

    /* Typography - Standard Clean Sans-Serif */
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --container-width: 700px;
    /* Optimal reading width */
    --section-pad: 60px;
}

/* Global Reset */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-stack);
    font-size: 18px;
    /* High readability */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-page);
    /* New Cyan Background */
    -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

section {
    padding: var(--section-pad) 0;
}

.bg-white {
    background-color: var(--bg-white);
    border-radius: 20px;
    /* Add radius since they are now "cards" on the background */
    margin: 20px;
    /* Add margin so background shows */
}

.bg-gray {
    background-color: transparent;
    /* Let the cyan show through */
    border-top: none;
    border-bottom: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-stack);
    color: #111827;
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: 800;
    /* Bolder headings for standard fonts */
    letter-spacing: -0.02em;
    /* Tighter tracking for modern look */
}

.headline {
    font-size: 2.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--brand-primary);
    background: linear-gradient(120deg, transparent 0%, rgba(219, 39, 119, 0.1) 100%);
    padding: 0 4px;
    border-radius: 4px;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Hero Section */
/* Hero Section */
.hero-section {
    background: transparent;
    /* Show the global cyan */
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

/* Mockup Image */
.media-mockup {
    margin: 0 auto 40px;
    width: 100%;
    max-width: 600px;
    /* Limit size of big mockup */
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 32px;
    border-radius: 8px;
    /* Clean rounded rect */
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(5, 150, 105, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.btn-cta:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(5, 150, 105, 0.3);
}

.big-btn {
    font-size: 1.3rem;
    padding: 24px 32px;
}

.trust-icons {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-red {
    background: #fee2e2;
    color: #ef4444;
}

.icon-yellow {
    background: #fef3c7;
    color: #d97706;
}

.icon-purple {
    background: #ede9fe;
    color: #8b5cf6;
}

/* White Card (Offer) */
.white-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.check-list {
    text-align: left;
    list-style: none;
    margin-bottom: 30px;
    display: inline-block;
}

.check-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.check-list i {
    color: var(--cta-color);
    margin-right: 12px;
}

.divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 30px 0;
}

.price-tag {
    margin: 10px 0;
}

.old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-right: 10px;
}

.new {
    color: var(--brand-primary);
    font-size: 3rem;
    font-weight: 800;
    /* Extra bold for standard font */
}

.installments {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.guarantee-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Urgency Bar */
.urgency-bar-section {
    background-color: #fff1f2;
    /* Light red/pink alert bg */
    border-top: 1px solid #fecdd3;
    border-bottom: 1px solid #fecdd3;
    padding: 20px 0;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #be123c;
    margin-bottom: 10px;
}

.progress-track {
    background: #fda4af;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.progress-fill {
    background: #e11d48;
    height: 100%;
}

/* Bonuses */
.bonuses-list {
    max-width: 600px;
    margin: 0 auto;
}

.bonus-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.bonus-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.bonus-row i {
    font-size: 2rem;
    color: var(--brand-secondary);
}

.bonus-row h4 {
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.bonus-row p {
    color: var(--text-muted);
    margin: 0;
}

/* Footer */
.simple-footer {
    padding: 60px 0 100px;
    text-align: center;
    background: white;
}

.footer-links {
    margin-top: 24px;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 8px;
}

.copyright {
    margin-top: 16px;
    color: #9ca3af;
    font-size: 0.85rem;
}



/* Top Notification Bar */
.top-notification-bar {
    background-color: #fef08a;
    /* Yellow-200 */
    color: #854d0e;
    /* Yellow-800 */
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid #fde047;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }


}

/* FAQ Styling */
.faq-section {
    padding-bottom: 40px;
}

.faq-list {
    max-width: 600px;
    /* Reading width */
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 40px;
    color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand-secondary);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item[open] summary {
    border-bottom: 1px solid #e5e7eb;
    background-color: #fff;
}

.faq-item p {
    padding: 16px 20px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    background: white;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    /* Align top so heights can vary naturally or match */
    margin-top: 40px;
    flex-wrap: wrap;
    /* Stack on mobile */
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: left;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.plan-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.small-list li {
    font-size: 1rem;
    margin-bottom: 8px;
}

.plan-note {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Recommended Card */
.pricing-card.recommended {
    border: 2px solid var(--brand-secondary);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    background: #fff;
    /* Keep white for cleanliness */
    transform: scale(1.02);
    /* Slight pop */
    z-index: 10;
}

.rec-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.plan-subtitle {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--cta-color);
}

.bonus-mini {
    background: #fdf2f8;
    /* Very light pink/brand bg */
    border-left: 3px solid var(--brand-primary);
    padding: 10px 15px;
    margin-bottom: 12px;
    border-radius: 0 8px 8px 0;
    display: flex;
    /* New flex layout */
    align-items: center;
    gap: 15px;
}

.bonus-thumb {
    width: 60px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-mini strong {
    display: block;
    color: var(--brand-primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.bonus-mini p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.value-block {
    text-align: center;
    background: #f0fdf4;
    /* Light green bg for value */
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.total-val {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.final-val {
    font-size: 1.2rem;
    color: var(--cta-color);
}

/* Plan Buttons */
.btn-primary {
    background-color: var(--cta-color);
}

.btn-secondary {
    background-color: #64748b;
    /* Slate gray */
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #475569;
}

#plano-premium {
    scroll-margin-top: 80px;
}


/* Guarantee Section */
.guarantee-section {
    background-color: #f43f5e;
    /* Rose 500 - matches image vibe */
    color: white;
    padding: 60px 20px;
}

.guarantee-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.guarantee-seal {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: #fbbf24;
    /* Gold */
}

.guarantee-seal i {
    font-size: 8rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.guarantee-seal span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1f2937;
    /* Dark text on gold */
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: none;
}

.guarantee-seal span small {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Bonus Showcase (Above Pricing) */
/* Bonus Showcase (Above Pricing) */
.bonuses-showcase {
    margin: 40px 0;
    padding: 20px;
}

.bonus-header {
    font-size: 1.5rem;
    color: var(--brand-secondary);
    margin-bottom: 25px;
    font-weight: 700;
}

.bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.bonus-card {
    background: linear-gradient(180deg, #1aa3ff 0%, #2563eb 100%);
    /* Blue gradient */
    border-radius: 20px;
    padding: 30px 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    color: white;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-img {
    width: 160px;
    /* Larger image */
    height: auto;
    border-radius: 8px;
    /* Slightly more rounded */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.bonus-info h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    /* Ensure title is white */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.bonus-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white for text */
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .bonuses-grid {
        flex-direction: column;
        align-items: center;
    }

    .bonus-card {
        width: 100%;
        max-width: 320px;
    }
}

/* Plan Labels and Animations */
.plan-id {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.plan-id.highlight-text {
    color: var(--brand-secondary);
}

@keyframes weak-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    }
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

.pulse-card {
    animation: weak-pulse 3s infinite ease-in-out;
}

.pulse-btn {
    animation: btn-pulse 2s infinite;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    /* Transparent bg allows cyan to show through */
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testi-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--brand-primary);
}

.testi-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testi-name {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}