/* === GESSO LUCRATIVO V2 — Creme / Quente / Artesanal === */

:root {
    --cream:       #fdf6ef;
    --cream-dark:  #f5ede0;
    --terra:       #c87941;
    --terra-dark:  #a85e2a;
    --terra-light: #e8c9a0;
    --brown:       #6b4c3b;
    --brown-dark:  #3d2b1f;
    --brown-light: #9a7060;
    --white:       #ffffff;
    --green:       #5a9e4e;
    --green-dark:  #3d7a33;
    --text:        #3d2b1f;
    --text-light:  #7a5a4a;
    --border:      #e0ccb8;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background-color: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }

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

/* === CTA BUTTON === */
.v2-cta {
    display: inline-block;
    background-color: var(--green);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 1.1rem 2.2rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(90, 158, 78, 0.35);
    transition: all 0.3s ease;
    animation: v2-pulse 2.5s infinite;
}

.v2-cta:hover {
    background-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(90, 158, 78, 0.45);
    animation: none;
}

@keyframes v2-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(90, 158, 78, 0.35); }
    50%       { box-shadow: 0 10px 32px rgba(90, 158, 78, 0.55); transform: scale(1.02); }
}

.v2-cta-large {
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    padding: 1.3rem 1.5rem;
    border-radius: 8px;
}

/* === SECTION TITLES === */
.v2-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brown-dark);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.v2-title-light { color: var(--white); }

/* === HERO === */
.v2-hero {
    background-color: var(--cream);
    padding: 3rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.v2-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(200,121,65,0.06) 100%);
    pointer-events: none;
}

.v2-hero-inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.v2-hero-img-col { width: 100%; display: flex; justify-content: center; }

.v2-hero-frame { position: relative; width: 280px; }

.v2-hero-frame > img {
    width: 280px;
    height: 340px;
    border-radius: 12px 12px 80px 80px;
    object-fit: cover;
    border: 3px solid var(--terra-light);
    box-shadow: 0 20px 50px rgba(107,76,59,0.15);
}

.v2-hero-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--terra-light);
    box-shadow: 0 10px 25px rgba(107,76,59,0.15);
    background: var(--white);
}

.v2-hero-badge img { width: 100%; height: 100%; object-fit: cover; }

.v2-hero-text-col { width: 100%; text-align: center; padding-bottom: 1rem; }

.v2-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--terra);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.v2-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.v2-sub { font-size: 1rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.v2-sub strong { color: var(--terra-dark); font-weight: 700; }
.v2-sub-detail { font-size: 0.93rem; margin-bottom: 2rem; }

/* === PAIN SECTION === */
.v2-pain { background-color: var(--white); padding: 5rem 0; }
.v2-pain .v2-section-title { text-align: center; margin-bottom: 3rem; }

.v2-pain-list { display: flex; flex-direction: column; margin-bottom: 3rem; }

.v2-pain-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.v2-pain-item:first-child { border-top: 1px solid var(--border); }

.v2-pain-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--terra-light);
    line-height: 1;
    flex-shrink: 0;
    width: 45px;
    padding-top: 2px;
}

.v2-pain-item p { font-size: 0.95rem; color: var(--text); line-height: 1.6; padding-top: 6px; }
.v2-pain-item em { font-style: italic; color: var(--brown-light); }

.v2-pain-closing {
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
    border-radius: 12px;
    padding: 2rem 1.8rem;
    text-align: center;
    box-shadow: 0 12px 35px rgba(200,121,65,0.25);
}

.v2-pain-closing p { color: var(--white); font-size: 1rem; line-height: 1.65; }
.v2-pain-closing strong { font-weight: 700; }

/* === INFO SECTION === */
.v2-info { background-color: var(--cream-dark); padding: 5rem 1.5rem; }
.v2-info-inner { display: flex; flex-direction: column; gap: 3rem; }

.v2-info-img-wrap { position: relative; display: flex; justify-content: center; }

.v2-info-img-main {
    width: 260px;
    height: 310px;
    border-radius: 10px 10px 80px 80px;
    overflow: hidden;
    border: 2px solid var(--terra-light);
    box-shadow: 0 15px 40px rgba(107,76,59,0.12);
    position: relative;
    z-index: 1;
}

.v2-info-img-main img { width: 100%; height: 100%; object-fit: cover; }

.v2-info-img-overlap {
    position: absolute;
    bottom: -25px;
    right: calc(50% - 185px);
    width: 130px;
    height: 160px;
    border-radius: 65px;
    overflow: hidden;
    border: 2px solid var(--terra-light);
    box-shadow: 0 10px 30px rgba(107,76,59,0.15);
    z-index: 2;
}

.v2-info-img-overlap img { width: 100%; height: 100%; object-fit: cover; }

.v2-accent-bar {
    width: 50px;
    height: 4px;
    background-color: var(--terra);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.v2-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--brown-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.v2-info-text p { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin-bottom: 1.2rem; }
.v2-info-text strong { color: var(--terra-dark); font-weight: 700; }

.v2-info-card {
    background-color: var(--white);
    border-left: 4px solid var(--terra);
    border-radius: 0 10px 10px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.v2-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--terra-dark);
    margin-bottom: 0.8rem;
}

.v2-info-card p { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin: 0; }
.v2-bold-p { font-weight: 700; color: var(--brown); font-size: 0.97rem; }

/* === BENEFITS === */
.v2-benefits { background-color: var(--brown); padding: 5rem 1.5rem; }
.v2-benefits .v2-section-title { text-align: center; margin-bottom: 3rem; }

.v2-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 560px;
    margin: 0 auto;
}

.v2-benefit-card {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--white);
    transition: background 0.3s ease, transform 0.3s ease;
}

.v2-benefit-card:hover {
    background-color: rgba(255,255,255,0.18);
    transform: translateX(6px);
}

.v2-benefit-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.4; }
.v2-benefit-card p { font-size: 0.93rem; line-height: 1.55; margin: 0; padding-top: 4px; }

/* === STORY === */
.v2-story { background-color: var(--cream); padding: 5rem 1.5rem; }

.v2-story-quote {
    border-left: 4px solid var(--terra);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}

.v2-story-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brown);
    line-height: 1.6;
}

.v2-story-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(107,76,59,0.07);
}

.v2-story-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra);
    display: block;
    margin-bottom: 0.8rem;
}

.v2-story-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.v2-story-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.v2-story-card p:last-child { margin-bottom: 0; }

.v2-story-imgs { display: flex; gap: 1rem; }
.v2-story-imgs div { flex: 1; height: 160px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.v2-story-imgs img { width: 100%; height: 100%; object-fit: cover; }

/* === MODULES === */
.v2-modules { background-color: var(--cream-dark); padding: 5rem 1.5rem; }

.v2-modules-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra);
    margin-bottom: 0.5rem;
    text-align: center;
}

.v2-modules .v2-section-title { text-align: center; margin-bottom: 1rem; }

.v2-modules-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    text-align: center;
    margin-bottom: 3rem;
}

.v2-modules-intro strong { color: var(--terra-dark); }

.v2-mod-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 8px 25px rgba(107,76,59,0.07);
}

.v2-mod-header {
    background-color: var(--terra);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.v2-mod-alt .v2-mod-header { background-color: var(--brown); }

.v2-mod-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    flex-shrink: 0;
}

.v2-mod-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.3rem;
}

.v2-mod-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.3;
    font-weight: 600;
}

.v2-mod-img { width: 100%; height: 200px; overflow: hidden; }
.v2-mod-img img { width: 100%; height: 100%; object-fit: cover; }

.v2-mod-list { list-style: none; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }

.v2-mod-list li {
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
}

.v2-mod-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--terra);
    border-radius: 50%;
}

.v2-digital-box {
    background-color: var(--terra);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
    color: var(--white);
}

.v2-digital-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.35;
}

.v2-digital-box p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; opacity: 0.92; }
.v2-digital-box p:last-child { margin-bottom: 0; }

/* === AUTHOR === */
.v2-author { background-color: var(--cream); padding: 5rem 1.5rem; }

.v2-author-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.v2-author-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--terra);
    box-shadow: 0 12px 30px rgba(200,121,65,0.2);
    flex-shrink: 0;
}

.v2-author-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

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

.v2-author-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra);
    margin-bottom: 0.5rem;
}

.v2-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--brown-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.v2-author-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.v2-author-highlight { font-weight: 700 !important; color: var(--terra-dark) !important; }

/* === CAROUSEL === */
.v2-carousel { background-color: var(--white); padding: 3rem 0; overflow: hidden; }

.v2-carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brown);
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.v2-carousel-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.v2-carousel-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: v2-scroll 22s linear infinite;
}

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

@keyframes v2-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-5 * (200px + 15px))); }
}

.v2-carousel-item {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.v2-carousel-item img { width: 100%; height: 100%; object-fit: cover; }

/* === TESTIMONIALS === */
.v2-testimonials { background-color: var(--cream-dark); padding: 5rem 1.5rem; }

.v2-testimonials .v2-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.v2-test-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra);
    margin-bottom: 0.5rem;
}

.v2-test-sub {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.v2-video-wrap {
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(107,76,59,0.15);
    border: 2px solid var(--border);
    margin-bottom: 2rem;
}

.v2-video-wrap:last-child { margin-bottom: 0; }
.v2-video-wrap wistia-player { display: block; width: 100%; }

/* === OFFER === */
.v2-offer { background-color: var(--cream); padding: 5rem 0.4rem; }

.v2-offer .v2-container { max-width: 700px; padding: 0 0.4rem; }

.v2-offer-card {
    background-color: var(--brown-dark);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 50px rgba(61,43,31,0.25);
}

.v2-offer-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--terra-light);
    margin-bottom: 1rem;
}

.v2-offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.35;
    margin-bottom: 2rem;
    color: var(--white);
}

.v2-offer-highlight { color: var(--terra-light); }

.v2-price-block { margin-bottom: 2rem; }

.v2-old-price {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
}

.v2-new-price {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--terra-light);
    line-height: 1;
    background-color: rgba(255,255,255,0.08);
    padding: 0.7rem 2.2rem;
    border-radius: 10px;
    display: inline-block;
    letter-spacing: 1px;
}

.v2-price-currency {
    font-size: 2rem;
    font-weight: 600;
    vertical-align: middle;
    opacity: 0.8;
    letter-spacing: 0;
}

.v2-offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.v2-offer-list li { font-size: 0.92rem; color: rgba(255,255,255,0.88); line-height: 1.5; }

.v2-warning-box {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.v2-warning-box strong { color: #ffd6a5; }

.v2-guarantee {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    padding: 0 0.5rem;
}

.v2-guarantee strong { color: rgba(255,255,255,0.9); }

/* === EPILOGUE === */
.v2-epilogue { background-color: var(--terra); padding: 6rem 1.5rem; }

.v2-epilogue-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2.5rem;
    text-align: center;
}

.v2-epilogue-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 3rem;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v2-epilogue-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    padding: 1rem 1.2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.v2-epilogue-list li::before {
    content: '✦';
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    padding-top: 2px;
}

.v2-epilogue-text {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v2-epilogue-text p { font-size: 1rem; color: rgba(255,255,255,0.88); line-height: 1.6; }

.v2-epilogue-em {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.2rem !important;
    font-style: italic;
    color: var(--white) !important;
    font-weight: 600;
}

/* === FAQ === */
.v2-faq { background-color: var(--white); padding: 5rem 1.5rem; }
.v2-faq .v2-section-title { margin-bottom: 3rem; }
.v2-faq-list { display: flex; flex-direction: column; }
.v2-faq-item { border-bottom: 1px solid var(--border); }

.v2-faq-q {
    padding: 1.3rem 0;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--brown);
    cursor: pointer;
    line-height: 1.4;
    transition: color 0.3s;
}

.v2-faq-q:hover { color: var(--terra); }

.v2-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.v2-faq-a p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.65;
    padding-bottom: 1.5rem;
    margin: 0;
}

.v2-active .v2-faq-a { max-height: 300px; opacity: 1; }
.v2-active .v2-faq-q { color: var(--terra); }

/* === SCROLL ANIMATIONS === */
.v2-anim {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.v2-visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (min-width: 768px) {
    .v2-container { max-width: 860px; }

    .v2-hero-inner {
        flex-direction: row;
        max-width: 960px;
        align-items: center;
        gap: 5rem;
        padding: 0 1.5rem;
    }

    .v2-hero-text-col { text-align: left; flex: 1; }
    .v2-hero-img-col { width: auto; flex-shrink: 0; }
    .v2-headline { font-size: 3rem; }

    .v2-hero-frame > img { width: 320px; height: 385px; }
    .v2-hero-frame { width: 320px; }

    .v2-section-title { font-size: 2.5rem; }

    .v2-info-inner { flex-direction: row; align-items: flex-start; gap: 4rem; }
    .v2-info-img-wrap { flex-shrink: 0; }
    .v2-info-img-overlap { right: -30px; }
    .v2-info-text { flex: 1; padding-top: 1rem; }

    .v2-benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        max-width: 700px;
    }

    .v2-author-inner { flex-direction: row; gap: 4rem; }
    .v2-author-text { text-align: left; flex: 1; }
    .v2-author-img { width: 280px; height: 280px; }

    .v2-story-imgs div { height: 220px; }

    .v2-offer { padding: 5rem 1.5rem; }
    .v2-offer .v2-container { max-width: 860px; padding: 0 1.5rem; }
    .v2-offer-card { padding: 4rem 4rem; }
    .v2-offer-title { font-size: 1.9rem; }
    .v2-new-price { font-size: 5.5rem; }

    .v2-carousel-item { width: 270px; height: 270px; }

    .v2-epilogue-title { font-size: 2.2rem; }
    .v2-epilogue-list li { font-size: 1.05rem; }

    .v2-faq-q { font-size: 1.05rem; }
}
