/* CSS Reset and Basics */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    font-family: 'Montserrat', sans-serif;
    max-width: 100vw;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Top Banner */
.offer-banner {
    background: linear-gradient(90deg, #d32f2f, #ff4081, #d32f2f);
    background-size: 200% auto;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    letter-spacing: 0.5px;
    animation: premiumShine 3s linear infinite;
}
.top-banner {
    background: linear-gradient(90deg, #d32f2f, #ff4081, #d32f2f);
    background-size: 200% auto;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    letter-spacing: 0.5px;
    animation: premiumShine 3s linear infinite;
}
@keyframes premiumShine {
    to { background-position: 200% center; }
}

/* Hero Section */
.hero-section {
    background-color: #ffffff;
    padding: 65px 0 40px 0;
}

.hero-headline {
    font-size: 46px;
    font-weight: 900;
    color: #0b1c3d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-badge {
    background-color: #28a745;
    color: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    margin: 20px auto;
    display: block;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.hero-description {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Interventions Section */
.interventions-section {
    padding: 40px 0;
    background-color: #f4f6f8;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: #0b1c3d;
    margin-bottom: 30px;
}

.highlight {
    color: #28a745;
    text-decoration: underline;
}

.interventions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.intervention-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-weight: 700;
    color: #0b1c3d;
}

/* Benefits Section */
.benefits-section {
    background-color: #0b1c3d;
    padding: 60px 0;
}

.text-white {
    color: #ffffff;
}

.highlight-green {
    color: #28a745;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
}

.benefit-card .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #0b1c3d;
    margin-bottom: 10px;
}

.mt-40 {
    margin-top: 40px;
}

/* Before and After */
.before-after-section {
    padding: 60px 0;
    background-color: white;
}

.comparison-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.col-before, .col-after {
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
}

.col-before {
    background: #fdf2f2;
}

.col-after {
    background: #eafbf0;
}

.red-title { color: #d32f2f; margin-bottom: 20px; font-weight: 900;}
.green-title { color: #28a745; margin-bottom: 20px; font-weight: 900;}

.comparison-box ul {
    list-style: none;
}

.comparison-box li {
    margin-bottom: 15px;
    color: #444;
}

/* Author Section */
.author-section {
    background-color: #0b1c3d;
    padding: 60px 0;
    color: white;
}

.author-card {
    background: white;
    color: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.author-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.author-card h3 {
    color: #0b1c3d;
    margin-bottom: 15px;
}

.author-card p {
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
    background-color: #f4f6f8;
}

.whatsapp-badge {
    background: #eafbf0;
    color: #28a745;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-orange {
    color: #ff6b00;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Bonus */
.bonus-section {
    background-color: #d32f2f;
    color: white;
    padding: 60px 0;
}

.bonus-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-intro {
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.bonus-title {
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bonus-alert-box {
    background-color: rgba(255, 235, 59, 0.15);
    border: 2px dashed #ffeb3b;
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-block;
}

.scarcity {
    color: #ffeb3b;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.bonus-alert {
    color: #ffeb3b;
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 900;
    margin: 0;
}

.bonus-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-card {
    background: white;
    color: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
}

.bonus-tag {
    background: #0b1c3d;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bonus-card img {
    max-width: 300px;
    margin: 20px auto;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #888;
    margin-top: 15px;
}

.free {
    color: #28a745;
    font-weight: 900;
    text-decoration: none;
}

.bonus-included {
    color: #d32f2f;
    font-weight: 900;
    margin-top: 5px;
}

/* Offer */
.offer-section {
    padding: 60px 0;
    background-color: #f4f6f8;
}

.highlight-yellow {
    color: #d2af61;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.complete-plan {
    border: 4px solid #28a745;
}

.best-seller {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #d2af61;
    color: #0b1c3d;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 900;
    white-space: nowrap;
}

.plan-name {
    font-size: 28px;
    color: #d2af61;
    font-weight: 900;
}

.complete-plan .plan-name {
    color: #d2af61;
}

.essential-plan .plan-name {
    color: #0b1c3d;
}

.plan-subtitle {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card img {
    max-width: 100%;
    margin-bottom: 20px;
}

.plan-access {
    font-size: clamp(16px, 5vw, 22px);
    font-weight: 900;
    color: #0b1c3d;
    margin-bottom: 20px;
}
.plan-access-text {
    white-space: nowrap;
}

.red-text {
    color: #d32f2f;
}

.plan-features {
    text-align: left;
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.plan-features .disabled {
    color: #888;
    text-decoration: line-through;
}

.price-box {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

.today-text {
    font-weight: 700;
    color: #0b1c3d;
}

.new-price {
    font-size: 60px;
    color: #28a745;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
}

.essential-price {
    color: #888;
    font-size: 40px;
}

.payment-method {
    color: #666;
    font-size: 14px;
}

.cta-button.secondary {
    background-color: #e2e8f0;
    color: #0b1c3d;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #444;
    text-align: center;
    line-height: 1.3;
}
.trust-item svg {
    margin-bottom: 5px;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}
.pulse-anim {
    animation: pulse 2s infinite;
}

/* Guarantee & FAQ */
.guarantee-faq-section {
    padding: 60px 0;
    background-color: #f4f6f8;
}

.guarantee-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto 60px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.guarantee-seal-img {
    width: 250px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.faq-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    outline: none;
}

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

.faq-item h3 {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #0b1c3d;
    margin: 0;
}

.faq-item .icon::before {
    content: "+";
}

.faq-item[open] .icon::before {
    content: "-";
}

.faq-item p {
    margin-top: 15px;
    color: #444;
}

footer {
    background-color: #0b1c3d;
    color: white;
    padding: 20px 0;
    font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    * {
        box-sizing: border-box !important;
    }
    .top-banner, .offer-banner {
        width: 100%;
        font-size: 14px;
        padding: 12px 10px;
    }
    .hero-headline {
        font-size: min(28px, 9vw);
        word-break: break-word;
    }
    .hero-badge {
        font-size: 18px;
        padding: 14px 20px;
        white-space: normal;
        height: auto;
        line-height: 1.3;
    }
    .section-title {
        font-size: 22px;
    }
    .cta-button {
        font-size: 18px;
        padding: 18px 15px;
        width: 100%;
        display: block;
        white-space: normal;
        line-height: 1.4;
    }
    .new-price {
        font-size: 45px;
    }
    .col-before, .col-after {
        min-width: 100%;
    }
    .interventions-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 15px;
        width: 100%;
    }
    .bonus-header h2 {
        font-size: 30px;
    }
    .plan-name {
        font-size: 24px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Image Comparison Slider */
.img-comp-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    line-height: 0;
    background-color: white;
}
.badge-antes, .badge-depois {
    position: absolute;
    top: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}
.badge-antes {
    left: 15px;
    background: #d32f2f;
    z-index: 10;
}
.badge-depois {
    right: 15px;
    background: #28a745;
    z-index: 1;
}
.img-comp-img-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    background-color: white;
}
.img-comp-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    pointer-events: none;
    object-fit: cover;
}
.img-comp-img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.img-comp-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.slider-handle::after {
    content: '< >';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Infinite Carousel */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    background: transparent;
    border-radius: 12px;
    padding: 10px 0;
}
.marquee-content {
    display: inline-flex;
    animation: marquee 15s linear infinite;
    gap: 20px;
}
.marquee-reverse {
    animation-direction: reverse;
}
.marquee-content:hover {
    animation-play-state: paused;
}
.marquee-content img {
    height: 320px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}
@media (max-width: 768px) {
    .marquee-content img {
        height: 240px;
    }
}

.testimonials-marquee .marquee-content img {
    height: 450px;
}

@media (max-width: 768px) {
    .testimonials-marquee .marquee-content img {
        height: 350px;
    }
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    z-index: 10000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}
.sales-notification.show {
    transform: translateY(0);
    opacity: 1;
}
.sn-icon {
    width: 40px;
    height: 40px;
    background: #23d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sn-icon svg {
    width: 20px;
    height: 20px;
}
.sn-content {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
    text-align: left;
}
.sn-text strong {
    color: #0b1c3d;
    font-weight: 700;
}
.sn-time {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .sales-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}
