/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Paleta Solicitada */
    --bg-main: #FFFFFF;
    --bg-alt: #F3F4F6;
    --hero-bg: #12355B;
    --title-color: #12355B;
    --subtitle-color: #1E88E5;
    --btn-primary: #F97316;
    --btn-hover: #EA580C;
    --checkmark: #22C55E;
    --promo-price: #F97316;
    --best-seller: #F4B400;
    --urgency: #E53935;
    --text-common: #1F2937;

    /* Extras */
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-common);
    line-height: 1.5;
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
}

.dark-heading {
    color: var(--title-color);
}

.white-heading {
    color: var(--white);
}

.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mt-xl { margin-top: 4rem; }
.mb-lg { margin-bottom: 3rem; }
.bg-light-blue { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--hero-bg); }
.font-italic { font-style: italic; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

a { text-decoration: none; }
ul { list-style: none; }

/* ==========================================================================
   Components
   ========================================================================== */

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--btn-primary);
    color: var(--white);
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--btn-hover);
}

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

.cta-button.full-width {
    width: 100%;
}

/* Placeholders */
.placeholder-text {
    display: block;
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Sections
   ========================================================================== */

/* Topbar */
.topbar {
    background-color: var(--urgency);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.topbar .icon { margin-right: 0.5rem; }

/* Hero Section */
.hero-section {
    background-color: var(--hero-bg);
    padding: 3rem 0;
    text-align: center;
}

.secure-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--title-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 12px;
}

.hero-description {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-checklist {
    text-align: left;
    display: inline-block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.hero-checklist li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.hero-checklist .check {
    color: var(--white);
    background: var(--checkmark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 0.75rem;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Showcase Section */
.showcase-section h2 { font-size: 2.5rem; letter-spacing: -1px; }

.carousel-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 3rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-group {
    display: flex;
    gap: 2rem;
}

.carousel-group img {
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    object-fit: contain;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } 
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--bg-main);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #E2E8F0;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 1rem;
    background: var(--bg-alt);
    padding: 0.5rem;
    border-radius: 8px;
}

.feature-content h3 {
    color: var(--subtitle-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--text-common);
    font-size: 0.9rem;
}

/* Power Section */
.power-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.power-section .subtitle { color: var(--subtitle-color); font-size: 1.1rem; margin-bottom: 3rem; font-weight: 500;}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: var(--bg-main);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.stat-card h3 {
    color: var(--promo-price);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-common);
    font-weight: 500;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-common);
    line-height: 1.8;
}

/* Special Offer Section */
.special-offer-section { padding: 5rem 1.5rem; }
.orange-label {
    color: var(--promo-price);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}
.special-offer-section h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.white-subtext { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* Ideal For Section */
.ideal-for-section h2 { font-size: 2.5rem; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background-color: var(--bg-alt);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.5rem;
}

.benefit-card h3 {
    color: var(--title-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefit-card .check-icon {
    color: var(--checkmark);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-common);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Included Section */
.included-section h2 { font-size: 2.5rem; margin-bottom: 3rem; }

.included-box {
    background-color: var(--hero-bg);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.badge-green {
    background-color: var(--checkmark);
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.included-box h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.white-text { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 3rem; }

.included-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin: 0 auto 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.included-list {
    text-align: left;
    display: inline-block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.included-list li { margin-bottom: 1rem; display: flex; align-items: center; }
.included-list .check { color: var(--checkmark); margin-right: 0.75rem; font-size: 1.2rem; }
.included-list .more-text { color: rgba(255,255,255,0.7); font-style: italic; font-weight: 400; padding-left: 2rem; }


/* Bonus Section */
.bonus-section h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.bonus-badge-wrapper { margin-top: 1.5rem; margin-bottom: 3rem; }
.bonus-badge {
    background-color: var(--best-seller);
    color: var(--hero-bg);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bonus-card {
    background-color: var(--bg-alt);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bonus-mockup-placeholder {
    background-color: #E2E8F0;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-image-container {
    position: relative;
    width: 100%;
}
.bonus-image {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--best-seller);
    color: var(--hero-bg);
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
}

.bonus-content {
    padding: 2rem;
    background-color: var(--bg-alt);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-content h3 {
    color: var(--title-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.bonus-content p {
    color: var(--text-common);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bonus-value {
    background-color: var(--hero-bg);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    align-self: center;
    font-size: 0.9rem;
}

.bonus-value span { color: #A3A3A3; margin-right: 0.5rem; }
.bonus-value s { text-decoration-color: var(--urgency); }
.bonus-value strong { font-weight: 800; }

/* Pricing Section */
.pricing-section { padding-top: 5rem; }
.pricing-section h2 { font-size: 2.5rem; }
.divider {
    width: 100px;
    height: 2px;
    background-color: var(--title-color);
    margin: 1.5rem auto 3rem;
}

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

.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Basic Plan */
.basic-plan {
    background-color: var(--bg-alt);
    padding: 2.5rem;
    border: 1px solid #E2E8F0;
}

.plan-title {
    color: var(--title-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.plan-mockup-placeholder {
    border: 1px dashed #CBD5E1;
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.plan-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.complete-plan .plan-image {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.plan-subtitle { font-weight: 700; margin-bottom: 1rem; color: var(--subtitle-color); }

.plan-details ul { margin-bottom: 2rem; }
.plan-details li { margin-bottom: 1rem; display: flex; align-items: center; font-weight: 500; color: var(--text-common); }
.plan-details .check { color: var(--checkmark); margin-right: 0.5rem; font-weight: bold; }
.plan-details .check-box { 
    background-color: var(--checkmark); 
    color: white; 
    border-radius: 4px; 
    width: 20px; 
    height: 20px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.7rem; 
    margin-right: 0.5rem; 
}

.price-box { text-align: center; margin-bottom: 2rem; }
.price-old { color: var(--promo-price); font-weight: 600; font-size: 1.1rem; }
.price-new { color: var(--promo-price); font-size: 4rem; letter-spacing: -2px; margin: 0.5rem 0; }
.price-installments { color: var(--text-common); font-weight: 500; }
.price-savings { color: var(--subtitle-color); font-size: 0.9rem; margin-top: 0.5rem; }
.price-savings strong { font-weight: 800; }

/* Complete Plan */
.complete-plan {
    background-color: var(--hero-bg);
    position: relative;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--best-seller);
    color: var(--hero-bg);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
}

.urgent-banner {
    background-color: var(--urgency);
    color: white;
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-radius: 20px 20px 0 0;
}

.complete-plan .plan-title { margin-bottom: 1rem; margin-top: 1rem;}
.plan-mockup-placeholder.complete {
    background-color: rgba(0,0,0,0.1);
    border-color: rgba(255,255,255,0.2);
    margin: 0 2rem 2rem;
}
.complete-plan .plan-details { padding: 0 2rem 2.5rem; }
.bonus-title-bar {
    background-color: rgba(255,255,255,0.1);
    color: var(--best-seller);
    font-weight: 700;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.complete-plan .plan-details li { color: rgba(255,255,255,0.9); }
.complete-plan .price-new.green-text { color: var(--promo-price); text-shadow: 0 2px 4px rgba(0,0,0,0.2); }

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    opacity: 0.6;
}
.pm-icon {
    font-size: 0.8rem;
    color: white;
    background: rgba(0,0,0,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Alert Box */
.alert-box {
    background-color: var(--bg-alt);
    border: 1px solid var(--checkmark);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}
.alert-box .check-circle {
    background-color: var(--checkmark);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.alert-box p { color: var(--text-common); font-size: 1rem; }
.secure-text { color: var(--text-common); font-weight: 500; font-size: 0.9rem; }

/* Guarantee Section */
.guarantee-section { padding: 5rem 0; }
.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.guarantee-seal-placeholder {
    background: linear-gradient(135deg, var(--best-seller) 0%, var(--promo-price) 100%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.guarantee-seal-placeholder::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
}

.seal-inner {
    text-align: center;
    color: white;
    z-index: 1;
}

.seal-inner h2 { font-size: 3.5rem; line-height: 1; margin: 0; }
.seal-inner .seal-text { font-weight: 800; letter-spacing: 2px; }

.guarantee-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--title-color);}
.guarantee-text .intro-text { font-size: 1.1rem; color: var(--subtitle-color); margin-bottom: 1rem; font-weight: 600;}
.yellow-bullets { margin-bottom: 1.5rem; margin-left: 1rem; }
.yellow-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-common);
}
.yellow-bullets li::before {
    content: '●';
    color: var(--best-seller);
    position: absolute;
    left: 0;
    top: 0;
}
.outro-text { color: var(--text-common); font-size: 0.95rem; }

/* FAQ Section */
.faq-section h2 { font-size: 2.5rem; }
.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 0.5rem;
}

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

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

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-common);
    line-height: 1.6;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 200px; }

/* Footer */
.site-footer {
    background-color: var(--hero-bg);
    padding: 3rem 1.5rem;
    color: rgba(255,255,255,0.6);
}
.copyright { font-weight: 600; margin-bottom: 1.5rem; color: rgba(255,255,255,0.8); }
.disclaimer { font-size: 0.8rem; line-height: 1.8; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-section h1 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .guarantee-content { flex-direction: column; text-align: center; }
    .yellow-bullets { text-align: left; display: inline-block; }
}

@media (max-width: 768px) {
    .container { padding: 3rem 1.5rem; }
    .hero-section h1 { font-size: 1.8rem; }
    .showcase-section h2, .power-section h2, .ideal-for-section h2, .included-section h2, .bonus-section h2, .pricing-section h2, .guarantee-text h2, .faq-section h2 {
        font-size: 2rem;
    }
    .cta-button { padding: 1rem 1.5rem; font-size: 1rem; }
    .hero-mockup-placeholder, .showcase-mockup-placeholder, .included-mockup-placeholder { height: 200px; }
}
