@charset "UTF-8";

/* ==========================================================================
   CSS RESET & VARIABLES (Low Ticket Template Style)
   ========================================================================== */
:root {
    /* Colors - Child & Christian Niche (Mapping to reference style) */
    --primary-dark: #264653;
    --primary-blue: #2A9D8F;
    --accent-yellow: #E9C46A;
    --accent-yellow-hover: #D4B15C;
    --accent-red: #E76F51;

    --bg-light: #F0EFE9;
    --bg-white: #FFFDF5;

    --text-dark: #264653;
    --text-light: #FFFFFF;
    --text-muted: #5F7470;

    --success-green: #2A9D8F;

    /* Typography */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    /* Effects (Flat Sticker Style) */
    --shadow-hard: 4px 4px 0px rgba(38, 70, 83, 0.1);
    --shadow-soft: 4px 4px 0px rgba(38, 70, 83, 0.1);
    --border-radius: 12px;
}

/* === WAVE SECTION DIVIDERS === */
.section-divider {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.section-divider-top {
    top: 0;
    transform: rotate(180deg);
}

.section-divider-bottom {
    bottom: -1px;
}

/* Color variants — each wave is filled with the NEXT section's exact bg color */
.divider-white svg path {
    fill: #FFFDF5;
}

/* → testimonial bg */
.divider-light svg path {
    fill: #F0EFE9;
}

/* → visual-proof bg */
.divider-red svg path {
    fill: #E60000;
}

/* → countdown bg */
.divider-callout svg path {
    fill: #F0EFE9;
}

/* → callout bg */
.divider-ideal svg path {
    fill: #FFFDF5;
}

/* → ideal bg */
.divider-delivery svg path {
    fill: #F0EFE9;
}

/* → delivery bg */
.divider-bonus-t svg path {
    fill: #FFFDF5;
}

/* → bonus-transition bg */
.divider-bonuses svg path {
    fill: #FFFDF5;
}

/* → bonuses bg */
.divider-pricing svg path {
    fill: #FFFDF5;
}

/* → pricing bg */
.divider-guarantee svg path {
    fill: #2A9D8F;
}

/* → guarantee bg */
.divider-faq svg path {
    fill: #F0EFE9;
}

/* → faq bg */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 95%;
    /* Reduz a escala geral um bocadinho (tipo 15.2px) */
}

@media (max-width: 768px) {
    html {
        font-size: 87.5%;
        /* Reduz um pouco mais no celular (base 14px) sem ficar invisível, afetando todos os botões e textos */
    }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    background-image: radial-gradient(rgba(233, 196, 106, 0.6) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   UTILITY CLASSES & COMMON
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.dark-text {
    color: var(--text-dark);
}

.light-text {
    color: var(--text-light);
}

.highlight-blue {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
    text-decoration-thickness: 4px;
}

.highlight-yellow {
    color: #fff;
    background: var(--accent-red);
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    margin: 0 4px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 50px;
    transition: transform .2s, box-shadow .2s;
    border: 3px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.primary-cta {
    background-color: #27ae60;
    background: #27ae60;
    color: #FFF;
    border: none;
    box-shadow: 4px 4px 0px rgba(38, 70, 83, 0.1);
    animation: pulseButton 2s infinite;
}

.primary-cta:hover {
    background: #219653;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 6px 6px 0px rgba(38, 70, 83, 0.15);
    animation: none;
}

.primary-cta:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e8449;
}

.shadow-drop {
    box-shadow: 0 6px 0 #1e8449;
}

.shadow-drop:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e8449;
}

.secondary-cta {
    background-color: #27ae60;
    color: #fff;
    box-shadow: 0 6px 0 #1e8449;
    border: none;
}

.secondary-cta:hover {
    box-shadow: 0 8px 0 #1e8449;
    transform: translateY(-2px);
}

.block-cta {
    display: block;
    width: 100%;
    font-size: 1.3rem;
    padding: 1.5rem;
}

.pulse-subtle {
    animation: bounceSlow 3s infinite ease-in-out;
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* Top Urgency Bar */
.top-urgency-bar {
    background-color: var(--accent-red);
    color: white;
    text-align: center;
    padding: 6px 15px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.top-urgency-bar i {
    color: #FFD700;
    margin-right: 5px;
}

.scarcity-bar {
    background-color: var(--accent-red);
    color: white;
    text-align: center;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

/* HERO SECTION */
.hero-section {
    background: var(--bg-white);
    background-image: radial-gradient(var(--accent-yellow) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 70px 0 100px;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section .dark-text {
    color: var(--text-dark);
}

.hero-section h1 {
    color: var(--text-dark);
    text-shadow: none;
}

.hero-section .hero-subtitle {
    color: var(--text-dark);
    background: #fff;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    border: 2px dashed var(--accent-yellow);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
    transform: rotate(1deg);
    display: inline-block;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    width: 100%;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-yellow);
    color: #1a1035;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(233, 196, 106, 0.4);
    border: none;
}

.secure-badge i {
    color: #F9A826;
    margin-right: 8px;
    font-size: 1rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 10px;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.delivery-note {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 20px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

.delivery-note i {
    vertical-align: middle;
    margin: 0 4px;
}

.green-icon {
    color: var(--success-green);
    font-size: 1.2rem;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.social-proof span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-mockup.inline-mockup {
    margin: 10px auto 20px;
    max-width: 100%;
}

.hero-mockup.inline-mockup img {
    max-width: 100%;
    border-radius: var(--border-radius);
    display: block;
    margin: 0 auto;
}

/* TESTIMONIALS SECTION */
.testimonial-section {
    padding: 5rem 0 6rem;
    background-color: #FFFDF5;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: -20px;
    margin-bottom: 3rem;
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    max-width: 900px;
    margin: 0 auto;
    /* Hide scrollbar for a cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-image {
    flex: 0 0 80%;
    /* Takes 80% of width on mobile, showing a piece of the next one */
    max-width: 350px;
    scroll-snap-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

@media(min-width: 768px) {
    .testimonial-carousel {
        justify-content: center;
    }

    .testimonial-image {
        flex: 1;
        /* Stretch on desktop */
    }
}

.swipe-hint {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    opacity: 0.8;
}

.swipe-hint i {
    font-size: 1.2rem;
    vertical-align: bottom;
    margin-right: 5px;
    display: inline-block;
    animation: walkSide 2s infinite ease-in-out;
}

@keyframes walkSide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media(min-width: 768px) {
    .swipe-hint {
        display: none;
        /* Só exibido no celular onde de fato precisam arrastar */
    }
}

/* VISUAL PROOF AUTO CAROUSEL SECTION */
.visual-proof-section {
    padding: 6rem 0 6rem;
    background-color: #F0EFE9;
    overflow: hidden;
    position: relative;
}

.auto-carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Full bleed trick */
    display: flex;
    overflow: hidden;
    /* Only CSS animation moves this */
}

.auto-carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.auto-carousel-item {
    height: 350px;
    width: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* Removed hover pause per user request */

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.75rem));
        /* Move exactly half distance (since we duplicated the set) minus half a gap*/
    }
}

.visual-proof-checklist {
    background: #FFF;
    border: 2px dashed #E9C46A;
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    display: inline-block;
    text-align: left;
    margin-top: 1rem;
    box-shadow: var(--shadow-soft);
    transform: rotate(-1deg);
}

.visual-proof-checklist h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-heading);
}

.visual-proof-checklist ul {
    list-style: none;
    padding: 0;
}

.visual-proof-checklist li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.visual-proof-checklist li i {
    color: var(--success-green);
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 6rem 0 6rem;
    background-color: #FFFDF5;
    position: relative;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFF;
    border: 2px dashed #E9C46A;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05);
    transform: rotate(1deg);
}

.benefit-card:nth-child(even) {
    transform: rotate(-1deg);
    border-color: var(--primary-blue);
}

.benefit-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-closing {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.benefits-closing p {
    margin-bottom: 5px;
}

.benefits-closing strong {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

/* COUNTDOWN BANNER SECTION */
.countdown-banner {
    padding: 2.5rem 1rem 5rem;
    background-color: #E60000;
    color: white;
    border-bottom: none;
    position: relative;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.timer-display {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

/* CALLOUT SECTION */
.callout-section {
    padding: 4rem 1rem 5rem;
    background-color: #F0EFE9;
    position: relative;
}

.callout-card {
    background-color: var(--bg-white);
    border: 2px solid var(--primary-blue);
    border-radius: var(--border-radius);
    padding: 3rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.callout-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.callout-btn {
    width: 100%;
    font-size: 1rem;
}

/* IDEAL FOR YOU (Vertical Checklists) */
.ideal-for-you-section {
    padding: 6rem 0 6rem;
    background-color: #FFFDF5;
    position: relative;
}

.checklist-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.check-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #FFF;
    border: 2px dashed #C3E6CB;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05);
    transform: rotate(-1deg);
}

.check-box:nth-child(even) {
    transform: rotate(1deg);
}

.check-green {
    color: var(--success-green);
    font-size: 2rem;
    flex-shrink: 0;
}

.check-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* DELIVERY / BONUSES IMAGE SECTION */
.delivery-visual-section {
    padding: 4rem 0 5rem;
    background-color: #F0EFE9;
    position: relative;
}

.central-showcase img {
    max-width: 100%;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

.product-features-card {
    background: #FFF;
    border: 3px solid #E2E8F0;
    border-top: 8px solid var(--accent-yellow);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
    box-shadow: 4px 4px 0px rgba(38, 70, 83, 0.1);
}

.features-title {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 2px dashed #CBD5E1;
    padding-bottom: 1.5rem;
}

@media(min-width: 768px) {
    .features-title {
        flex-direction: row;
        font-size: 1.5rem;
        align-items: center;
    }
}

.features-title i {
    color: var(--accent-yellow);
    font-size: 2.2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list>li {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 15px 16px 50px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.features-list>li>i {
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--success-green);
    font-size: 1.4rem;
}

.sub-list {
    list-style: none;
    padding-left: 15px;
    margin-top: 15px;
    background: #F8FAFC;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    padding: 12px 12px 12px 20px;
}

.sub-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.sub-list li:last-child {
    margin-bottom: 0;
}

.sub-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* BONUS SECTION */
.bonus-transition {
    background-color: #FFFDF5;
    padding: 5rem 1rem 3rem;
    position: relative;
}

.bonus-attention {
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.bonus-sub {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.bonus-badge {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(42, 117, 195, 0.3);
    border: 3px solid var(--accent-yellow);
    transform: rotate(-2deg);
}

.bonuses-section {
    padding: 2rem 0 5rem;
    background-color: #FFFDF5;
    position: relative;
}

.bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.bonus-card {
    background: #FFF;
    border: 2px dashed var(--accent-yellow);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 0px rgba(38, 70, 83, 0.1);
}

@media(min-width: 768px) {
    .bonus-card {
        flex-direction: row;
        align-items: center;
    }

    .bonus-img {
        width: 220px;
        /* Adjusted width for vertical images */
    }
}

.bonus-img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    background-color: var(--bg-light);
    border-bottom: 1px solid #E2E8F0;
}

@media(min-width: 768px) {
    .bonus-img {
        max-height: none;
        border-bottom: none;
        border-right: 1px solid #E2E8F0;
    }
}

.bonus-content {
    padding: 1.5rem;
    flex: 1;
}

.bonus-tag {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.bonus-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.bonus-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.bonus-value {
    margin-bottom: 0 !important;
    text-align: center;
    background-color: #f7fff7;
    border: 1px dashed var(--success-green);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--accent-red);
}

.bonus-value strong {
    color: var(--success-green);
    font-size: 1.1rem;
}

/* PRICING SECTION (Large Central Boxes) */
.pricing-section {
    padding: 2rem 0 6rem;
    background-color: #FFFDF5;
    position: relative;
}

.pricing-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.price-box {
    width: 100%;
    max-width: 800px;
    /* Large box width based on template */
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid #EEE;
    background: #FFF;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-red);
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-align: center;
    width: 90%;
    max-width: max-content;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
}

.premium-box {
    border: 4px solid var(--primary-blue);
    box-shadow: 6px 6px 0px rgba(38, 70, 83, 0.15);
    padding-top: 4.5rem;
}

.price-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-top: 10px;
}

.price-value {
    color: #27ae60;
    margin: 10px 0;
}

.price-value .currency {
    font-size: 2rem;
    font-weight: 700;
    vertical-align: top;
}

.price-value {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
}

.price-value .cents {
    font-size: 2rem;
    font-weight: 700;
}

.price-header .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 2rem;
}

.price-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.2rem;
    color: #27ae60;
}

.highlight-feat {
    font-weight: 600;
    color: #27ae60;
}

.highlight-feat i {
    color: #27ae60;
}

.basic-box {
    max-width: 600px;
    background-color: var(--bg-light);
    border-color: #DDD;
}

.basic-box .price-header h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}



.basic-box .price-features {
    grid-template-columns: 1fr;
    gap: 10px;
}

.color-blue {
    color: #27ae60 !important;
}

.color-red {
    color: var(--accent-red) !important;
}

.opacity-low {
    opacity: 0.6;
}

.upsell-pointer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed #E2E8F0;
}

.upsell-pointer p {
    color: var(--accent-red);
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.upsell-pointer i {
    font-size: 2.5rem;
    color: var(--accent-red);
    display: inline-block;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}


/* GUARANTEE SECTION */
.guarantee-section {
    padding: 5rem 0 6rem;
    background-color: #2A9D8F;
    color: white;
    position: relative;
}

.guarantee-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.custom-guarantee-seal {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 8px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    flex-shrink: 0;
}

.custom-guarantee-seal::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed #FFF;
    border-radius: 50%;
}

.seal-inner {
    text-align: center;
    color: #FFF;
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.seal-inner .seal-days {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #FFF;
}

.seal-inner .seal-text1,
.seal-inner .seal-text2 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.g-texto h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--accent-yellow);
    line-height: 1.2;
}

.g-texto p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 20px;
}

.g-texto p:last-child {
    margin-bottom: 0;
}


/* FAQ SECTION */
.faq-section {
    padding: 6rem 0;
    background-color: #F0EFE9;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    background: #FFF;
    border: 1px solid #DDD;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-box summary {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    /* Hide arrow */
    position: relative;
    padding-right: 3rem;
    font-size: 1.1rem;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.faq-box[open] summary::after {
    content: '-';
}

.faq-box[open] summary {
    border-bottom: 1px solid #EEE;
}

.faq-content {
    padding: 1.5rem;
    color: var(--text-muted);
}

/* FOOTER */
.footer-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--accent-yellow);
}

.footer-section h3 {
    font-family: var(--font-heading);
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--accent-yellow);
}

.disclaimer-txt {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.75rem !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .blocks-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .price-features {
        grid-template-columns: 1fr;
    }

    .price-box {
        padding: 2rem 1.5rem;
    }
}

/* ============================
   DOWNSELL MODAL
   ============================ */
.ds-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 1rem;
}

.ds-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ds-modal {
    background: #fff;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    position: relative;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.ds-modal-overlay.active .ds-modal {
    transform: translateY(0) scale(1);
}

.ds-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.ds-close:hover {
    color: var(--accent-red);
}

.ds-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.ds-subtitle {
    font-size: 1rem;
    color: var(--primary-dark);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.ds-subtitle strong {
    color: var(--primary-dark);
}

/* Checklist */
.ds-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.ds-checklist li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ds-checklist li i {
    color: var(--success-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ds-green-item {
    color: #27ae60 !important;
    font-weight: 800;
}

.ds-green-item i {
    color: #27ae60 !important;
}

/* Price */
.ds-por {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.ds-valor {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #27ae60;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.ds-valor span {
    font-size: 1.5rem;
}

/* CTA green button */
.ds-cta-green {
    display: block;
    width: 100%;
    background: #27ae60;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    transition: background 0.2s;
}

.ds-cta-green:hover {
    background: #1ab363;
}

/* Skip link */
.ds-skip {
    font-size: 0.9rem;
    color: #000;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
    margin-top: 8px;
}

.ds-skip:hover {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 500px) {
    .ds-modal {
        padding: 1.8rem 1.2rem;
    }

    .ds-title {
        font-size: 1.3rem;
    }

    .ds-valor {
        font-size: 2.2rem;
    }
}