:root {
    --color-wine: #FF4E36;
    --color-wine-dark: #FF6A2C;
    --color-wine-gradient-start: #FF9A00;
    --color-wine-gradient-mid: #FF4E36;
    --color-wine-gradient-end: #EE2A7B;
    --color-green: #1FA34A;
    --color-green-dark: #167a35;
    --color-green-light: #34C759;
    --color-red: #E23B2E;
    --color-gold: #E8C57E;
    --color-white: #FFFFFF;
    --color-cream: #F7F3F0;
    --color-graphite: #2A2A2A;
    --color-gray-light: #EBEBEB;
    --color-gray-medium: #888888;

    --text-display: 28px;
    --text-h1: 22px;
    --text-h2: 18px;
    --text-body: 15px;
    --text-small: 13px;
    --text-tiny: 11px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-graphite);
    background-color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .headline, .section-title {
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-wine { color: var(--color-wine); }
.mt-20 { margin-top: 20px; }
.mb-25 { margin-bottom: 25px; }

/* SEÇÕES GERAIS */
section {
    padding: 75px 0;
}
.pt-30 { padding-top: 30px !important; }
.pb-30 { padding-bottom: 30px !important; }

.section-white { background-color: var(--color-white); }
.section-cream { background-color: var(--color-cream); }
.section-wine { 
    background-color: var(--color-wine); 
    color: var(--color-white);
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-graphite);
    margin-bottom: 25px;
    line-height: 1.2;
}

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

/* BLOCO 1 - HERO */
.hero {
    padding: 50px 0 0; 
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--color-wine-gradient-start) 0%, var(--color-wine-gradient-mid) 45%, var(--color-wine-gradient-end) 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
    z-index: -1;
}

.headline {
    color: var(--color-white);
    font-size: var(--text-display);
    font-weight: 900;
    -webkit-text-stroke: 0.4px currentColor;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.headline .destaque {
    background: #FFFFFF;
    color: #E2551C;
    display: inline-block;
    padding: 2px 14px;
    border-radius: 6px;
    font-weight: 900;
    font-size: var(--text-display);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin: 2px 0;
    text-shadow: none;
    -webkit-text-stroke: 0.4px currentColor;
}

.headline .destaque-dourado {
    background: var(--color-gold);
    color: #6B2D10;
    display: inline-block;
    padding: 2px 14px;
    border-radius: 6px;
    font-weight: 900;
    font-size: var(--text-display);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin: 2px 0;
    text-shadow: none;
    -webkit-text-stroke: 0.4px currentColor;
}

.subheadline {
    color: var(--color-cream);
    font-size: var(--text-body);
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-next-section {
    margin-top: -80px;
    padding-top: 110px !important;
}

.price-box {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-old {
    font-size: 20px;
    color: var(--color-white);
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 8px;
}

.price-old .strike {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
}

.price-label {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: -8px;
    z-index: 1;
}

.price-new {
    font-size: 85px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: var(--color-green-light);
    line-height: 1;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: var(--color-green);
    color: var(--color-white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: var(--text-h2);
    padding: 22px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 6px 0 var(--color-green-dark), 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.1s, box-shadow 0.1s;
    margin-bottom: 20px;
}

.hero-cta {
    padding: 22px 20px;
}

.cta-button:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--color-green-dark), 0 4px 8px rgba(0,0,0,0.3);
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
}

.trust-icon {
    display: flex;
    color: rgba(255,255,255,0.8);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-text {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    line-height: 1.3;
    font-weight: 500;
}

.badges-dark .trust-icon,
.badges-dark .trust-text {
    color: var(--color-gray-medium);
}

/* INFINITE MARQUEE CAROUSEL */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
    margin: 20px 0;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
}

.marquee-track.track-left {
    animation: scrollLeft 40s linear infinite;
    margin-bottom: 15px;
}

.marquee-track.track-right {
    animation: scrollRight 40s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 0;
    width: 200px;
    margin-right: 15px;
}

.marquee-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.section-subtitle {
    font-weight: 600;
}

.inclui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 26px 0 30px;
}
.inclui-item {
    text-align: center;
}
.inclui-num {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,78,54,0.10);
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--color-wine);
    line-height: 1;
}
.inclui-label {
    font-size: var(--text-small);
    font-weight: 700;
    color: var(--color-graphite);
    margin-top: 10px;
    line-height: 1.3;
    min-height: 0;
}

/* CARDS BRANCOS ELEVADOS */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.02);
}

.icon-box {
    background-color: var(--color-cream);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-wine {
    background-color: rgba(255, 78, 54, 0.1);
    color: var(--color-wine);
    font-size: 18px;
}

.feature-text {
    font-size: 15px;
    color: var(--color-graphite);
    line-height: 1.4;
}

.highlight-text-block {
    display: inline-block;
    background: rgba(255,78,54,0.10);
    color: var(--color-wine);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: var(--text-body);
    font-weight: 700;
    line-height: 1.35;
    margin-top: 8px;
}

/* BLOCO 5 - BÔNUS */
.bonus-header {
    text-align: center;
    margin-bottom: 35px;
}

.super-bonus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-wine); 
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scarcity-text {
    color: var(--color-wine);
    font-weight: 700;
    font-size: 16px;
    margin-top: -10px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bonus-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    color: var(--color-graphite);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bonus-card-header {
    color: var(--color-white);
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    padding: 12px;
    font-size: 18px;
    text-transform: uppercase;
}

.bg-wine {
    background-color: var(--color-wine) !important;
}

.bonus-image {
    width: 100%;
    max-width: 50%;
    height: auto;
    display: block;
    margin: 35px auto 20px auto;
}

.bonus-card-body {
    padding: 20px 20px 30px;
}

.bonus-card-body h3 {
    font-size: 18px;
    color: var(--color-graphite);
    margin-bottom: 8px;
    font-weight: 800;
}

.bonus-card-body p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 15px;
}

.bonus-price {
    font-size: 14px;
    color: var(--color-graphite);
    display: block;
}

.bonus-price s {
    color: var(--color-red);
    font-weight: 600;
}

.bonus-price strong {
    display: block;
    font-size: 24px;
    color: var(--color-wine);
    font-weight: 900;
    -webkit-text-stroke: 0.4px currentColor;
    margin-top: 5px;
}

/* BLOCO 6 - OFERTAS */
.offer-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offer-card {
    background-color: var(--color-white);
    color: var(--color-graphite);
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.offer-card.basic {
    border: 1px solid rgba(0,0,0,0.1);
}

.offer-card.complete {
    border: 2px solid var(--color-wine);
    padding-top: 40px;
    margin: 40px -12px 0; 
    box-shadow: 0 24px 60px rgba(255, 78, 54, 0.30), 0 8px 20px rgba(0,0,0,0.12);
    z-index: 2;
    transform: scale(1.03);
}

.offer-image {
    width: 100%;
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.badge-mais-pedido {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-wine);
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 78, 54, 0.4);
}

.trust-badges-horizontal {
    background-color: #f2fcf5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    margin: 30px -20px -30px -20px;
    border-radius: 0 0 10px 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-badge-horizontal-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.trust-icon-horizontal {
    display: flex;
    color: var(--color-gray-medium);
}

.trust-icon-horizontal svg {
    width: 20px;
    height: 20px;
}

.trust-text-horizontal {
    font-size: 10px;
    color: var(--color-gray-medium);
    line-height: 1.2;
    font-weight: 600;
    text-align: left;
}

.offer-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.offer-subtitle {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-wine);
}

.offer-price-single {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-graphite);
    line-height: 1;
    margin-bottom: 25px;
}

/* Custom list items with icons */
.offer-features {
    list-style: none;
    margin-bottom: 25px;
}

.offer-features li {
    font-size: 16px; 
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.offer-features li.tachado {
    text-decoration: line-through;
    color: var(--color-gray-medium);
}

.icon-check, .icon-cross, .icon-gift {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.icon-check {
    background-color: var(--color-wine);
    color: var(--color-white);
}

.icon-cross {
    background-color: var(--color-gray-medium);
    color: var(--color-white);
}

.icon-gift {
    background-color: var(--color-wine);
    color: var(--color-white);
}

.offer-alert {
    background-color: rgba(255, 78, 54, 0.08);
    border: 1px dashed var(--color-wine);
    color: var(--color-wine);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.price-box-offer {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-old-dark {
    font-size: 20px;
    color: var(--color-gray-medium);
    font-weight: 600;
}

.price-label-dark {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-graphite);
    margin-bottom: -5px;
}

.price-new-dark {
    font-size: 85px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: var(--color-green-light);
    line-height: 1;
    margin-top: 12px;
}

.access-info {
    text-align: center;
    font-size: 12px;
    color: var(--color-gray-medium);
    margin-bottom: 10px;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

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

/* BLOCO 7 - EXPERT */
.expert-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    margin-top: 24px;
    text-align: left;
}
.expert-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.expert-card-body { padding: 20px; }
.expert-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: var(--text-h2);
    color: var(--color-graphite);
    line-height: 1.2;
}
.expert-role {
    font-size: var(--text-small);
    font-weight: 700;
    color: var(--color-wine);
    margin-top: 2px;
}
.expert-quote {
    font-size: var(--text-body);
    color: var(--color-graphite);
    line-height: 1.6;
    margin-top: 12px;
}

.text-block {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-graphite);
}

.comunidade-box {
    background: rgba(255,78,54,0.08);
    border: none;
    border-left: none;
    border-radius: 12px;
    padding: 18px;
    margin-top: 16px;
    text-align: left;
}
.comunidade-title {
    color: var(--color-wine);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: var(--text-body);
    margin-bottom: 6px;
}

/* BLOCO 8 - GARANTIA */
.garantia-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.garantia-sub {
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* BLOCO 9 - FAQ (ACCORDION) */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-graphite);
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    color: var(--color-wine);
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 15px;
    line-height: 1;
}

.faq-icon::after {
    content: '+';
}

.faq-item.active .faq-icon::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px 20px;
    display: none;
    color: var(--color-gray-medium);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* BLOCO 10 - POPUP */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
    display: none; 
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.popup-modal {
    background-color: var(--color-white);
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-close-x {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.popup-top-bar {
    position: relative;
    background-color: var(--color-wine);
    color: var(--color-white);
    text-align: center;
    font-weight: 800;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.popup-content {
    padding: 12px 20px 15px;
}

.popup-headline {
    color: var(--color-wine);
    font-size: 16px;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.popup-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 8px auto;
}

.popup-features li {
    font-size: 13px; 
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-price {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 8px 0 12px;
}

.popup-price .price-old-dark {
    font-size: 15px;
    color: #E23B2E;
}
.popup-price .price-new-dark {
    font-size: 28px;
}

.popup-content .cta-button {
    padding: 16px 20px;
}

.popup-close-link {
    display: block;
    text-align: center;
    color: var(--color-gray-medium);
    text-decoration: underline;
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Responsividade Mobile Extra */
@media (max-width: 380px) {
    .headline { font-size: 28px; }
    .price-new { font-size: 70px; }
    .cta-button { font-size: 16px; padding: 14px 15px; }
    .trust-badges { font-size: 11px; }
    .mockup-placeholder { height: 280px; }
    .price-new-dark { font-size: 45px; }
    .offer-price-single { font-size: 40px; }
    .offer-card.complete { margin: 0 -5px; }
}
