:root {
    /* Cores exatas mapeadas do Camila Fig Fit */
    --color-primary: #04AE41;
    /* Verde forte/CTA */
    --color-primary-dark: #008250;
    --color-secondary: #FF8044;
    /* Laranja/Acento */
    --color-bg-light: #F1F0EF;
    /* Off-white de seções */
    --color-bg-white: #FFFFFF;
    --color-text-main: #202020;
    --color-text-muted: #595959;
    --color-border: #E0DFDF;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.mt-loose {
    margin-top: 3rem;
}

.max-w-sm {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--color-primary);
}

.highlight-text {
    color: var(--color-primary-dark);
}

.brand-text {
    color: var(--color-secondary);
    font-size: 2.5rem;
    display: block;
    margin-top: 1rem;
}

.section {
    padding: 4rem 1.5rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    box-shadow: 0 10px 20px rgba(4, 174, 65, 0.3);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(4, 174, 65, 0.4);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 128, 68, 0.3);
}

.btn-secondary:hover {
    background-color: #e66a31;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 128, 68, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Emoji Cards */
.emoji-cards-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 380px;
    margin: 4rem auto 2rem;
}

.emoji-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: center;
}

.emoji-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: auto;
    z-index: 2;
}

.emoji-card p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.3;
}

/* Components */
.card-grid,
.benefits-grid,
.steps-grid,
.bonus-grid,
.compare-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card,
.step-card,
.bonus-card,
.compare-card,
.min-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    transition: transform 0.3s;
}

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

.step-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(4, 174, 65, 0.1);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    position: relative;
    z-index: 2;
    font-weight: 600;
    margin-top: 1rem;
}

.benefits-grid {
    grid-template-columns: 1fr;
}

.benefit-item {
    padding: 1.5rem;
    background: #fff;
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.benefit-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-weight: 600;
    margin: 0;
}

/* Pill Box & Cycle subtext */
.pill-box {
    background-color: #EF824D;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 1rem 3rem;
    border-radius: 50px;
    display: inline-block;
    margin: 3rem auto 2rem;
    box-shadow: 0 5px 15px rgba(239, 130, 77, 0.3);
}

.cycle-subtext {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-main);
    margin: 0 auto;
}

/* Solution Card */
.solution-card {
    background: #fff;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 3rem auto 2rem;
    position: relative;
}

.solution-title {
    color: #124d29;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.solution-quote {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-main);
    line-height: 1.4;
}

.solution-quote strong {
    font-weight: 700;
    display: inline-block;
    margin-top: 0.3rem;
}

.highlight-box {
    background-color: #e64229;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 4rem auto 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 650px;
}

.highlight-box-text {
    color: #000;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 0;
}

.highlight-box-text .text-white {
    color: #fff;
}

/* Custom Check List */
.custom-check-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 340px;
    text-align: left;
}

.custom-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.custom-check-list .emoji-check {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-check-list p {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-text-main);
    line-height: 1.25;
    font-weight: 400;
}

.custom-check-list p strong {
    font-weight: 700;
}

/* Compare Grid */
.compare-card.bad {
    border-top: 5px solid #df3336;
}

.compare-card.good {
    border-top: 5px solid var(--color-primary);
    background-color: #FAFAFA;
}

.compare-card h3 {
    margin-bottom: 1.5rem;
}

.compare-card ul {
    list-style: none;
    text-align: left;
}

.compare-card.bad ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #595959;
}

.compare-card.bad ul li::before {
    content: 'X';
    color: #df3336;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.compare-card.good ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 600;
}

.compare-card.good ul li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1.5rem;
}

.tag {
    background: rgba(255, 128, 68, 0.1);
    color: var(--color-secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.tag.tech-tag {
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

/* Pricing */
.price-box {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-bg-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: inline-block;
    border: 2px solid var(--color-primary);
    position: relative;
}

.price-box .times {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    color: var(--color-text-muted);
}

.price-box .value {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.old-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 1.2rem;
}

.cash-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.recurring-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-btn:hover {
    background: var(--color-bg-light);
}

.faq-btn::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.faq-btn.active::after {
    content: '-';
}

.faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--color-bg-white);
}

.faq-btn.active+.faq-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Vertical Steps */
.vertical-steps-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 600px;
    margin: -3rem auto 0;
    position: relative;
    z-index: 10;
}

.v-step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.v-step-title-box {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 100%;
    margin-bottom: -1rem;
    position: relative;
    z-index: 2;
}

.v-step-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #124d29;
    margin-bottom: 0;
    line-height: 1.35;
}

.step-label {
    color: #e64022;
}

.step-subtext {
    color: var(--color-secondary);
    font-size: 0.95rem;
    font-weight: 700;
}

.v-step-standalone-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.v-step-standalone-images-grid {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.v-step-standalone-images-grid img {
    flex: 1;
    width: calc(50% - 7.5px);
    object-fit: cover;
    border-radius: 12px;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.deliv-card {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.deliv-card img {
    max-width: 100%;
    margin: 0 auto 1.5rem;
    display: block;
    height: auto;
}

.deliv-card p {
    font-size: 1.15rem;
    font-weight: 800;
    color: #124d29;
    margin: 0;
    line-height: 1.25;
}/* Marquee Slider (Testemunhos Infinitos) */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    gap: 1.5rem;
    padding: 1rem 0;
    min-width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

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

.marquee-img {
    height: 480px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scrollMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 0.75rem)); }
}

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

/* Footer */
.footer {
    background: var(--color-text-main);
    color: #fff;
    padding: 3rem 1.5rem;
    font-size: 0.9rem;
}

.footer .disclaimer {
    opacity: 0.7;
    font-size: 0.8rem;
    margin: 2rem auto;
    max-width: 800px;
}

/* Media Queries (Desktop) */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .compare-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliverables-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .section {
        padding: 6rem 1.5rem;
    }
}