/* BASE STYLES & VARIABLES */
:root {
    /* Colors */
    --bg-cream: #FFFDF5;
    --text-dark: #2A3B4C;
    --color-orange: #FF7020;
    --color-orange-dark: #cc5614;
    --color-yellow: #FFCB11;
    --color-blue: #3EBCFF;
    --color-green: #29D079;
    --color-green-dark: #1da35e;
    --color-white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-main: 'Fredoka', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    padding-top: 40px; /* Offset para a barra fixa */
}

/* TOP BANNER */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-yellow);
    color: var(--text-dark);
    text-align: center;
    padding: 0 15px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(255,203,17,0.3);
    letter-spacing: 0.5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banner span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-banner strong {
    color: var(--color-orange-dark);
    font-weight: 800;
    text-transform: uppercase;
}

/* CONTAINERS */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10; /* Assegurar que fique acima do background e animações */
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.headline {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.subheadline {
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    color: #4A5D70;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #4A5D70;
    font-weight: 500;
}

/* BACKGROUND ANIMATIONS */
.bg-animations {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 { top: 10%; left: 5%; width: 40px; height: 40px; background-color: var(--color-yellow); border-radius: 50%; opacity: 0.2; }
.shape-2 { top: 30%; right: 10%; width: 60px; height: 60px; background-color: var(--color-blue); border-radius: 15px; transform: rotate(45deg); opacity: 0.2; animation-duration: 25s; }
.shape-3 { top: 60%; left: 15%; width: 30px; height: 30px; background-color: var(--color-green); border-radius: 50%; opacity: 0.15; animation-duration: 18s; }
.shape-4 { top: 80%; right: 20%; width: 50px; height: 50px; background-color: var(--color-orange); border-radius: 20px; transform: rotate(20deg); opacity: 0.2; animation-duration: 22s; }
.shape-5 { top: 40%; left: 50%; width: 20px; height: 20px; background-color: var(--color-yellow); border-radius: 50%; opacity: 0.4; animation-duration: 15s; }
.shape-6 { top: 15%; right: 40%; width: 40px; height: 40px; border: 4px solid var(--color-blue); border-radius: 50%; opacity: 0.2; animation-duration: 30s; }

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

/* BUTTONS */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: var(--font-main);
    z-index: 10;
    position: relative;
}

.btn-primary {
    background-color: var(--color-orange);
    color: #FFF;
    box-shadow: 0 8px 0 var(--color-orange-dark), 0 15px 20px rgba(255, 112, 32, 0.4);
}

.btn-primary:active {
    transform: translateY(6px);
    box-shadow: 0 2px 0 var(--color-orange-dark), 0 5px 10px rgba(255, 112, 32, 0.4);
}

.btn-primary.btn-large {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0.5rem auto 1.5rem auto; /* Reduzi o topo para 0.5rem */
}

.btn-secondary {
    background-color: var(--color-blue);
    color: #FFF;
    box-shadow: 0 6px 0 #289BDB, 0 10px 15px rgba(62, 188, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #289BDB;
}

/* Animations CTAs */
.cta-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.btn-primary:hover.cta-bounce {
    animation: none; /* stop bouncing on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 0 var(--color-orange-dark), 0 20px 25px rgba(255, 112, 32, 0.5);
}

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

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

.btn-primary:hover.cta-pulse {
    animation: none;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 0 var(--color-orange-dark), 0 20px 25px rgba(255, 112, 32, 0.5);
}

/* DIVIDERS */
.section-divider {
    height: 30px; /* Reduzi de 60px para 30px */
    background-image: radial-gradient(circle, var(--color-yellow) 4px, transparent 4px);
    background-size: 30px 30px;
    background-position: center;
    background-repeat: repeat-x;
    opacity: 0.15;
    margin: 1rem 0; /* Reduzi de 2rem para 1rem */
}

/* SECTION PADDINGS & BACKGROUNDS */
section {
    padding: 2.5rem 0; /* Reduzi de 3rem para 2.5rem */
    position: relative;
    z-index: 10;
}

.bg-light-blue {
    background-color: rgba(62, 188, 255, 0.08);
    border-radius: 40px;
    margin: 0 1rem;
}

.bg-light-yellow {
    background-color: rgba(255, 203, 17, 0.1);
    border-radius: 40px;
    margin: 0 1rem;
}

.bg-light-green {
    background-color: rgba(41, 208, 121, 0.08);
    border-radius: 40px;
    margin: 0 1rem;
}

/* MOCKUPS PLACEHOLDERS */
.mockup-placeholder {
    background-color: #E2E8F0;
    border: 3px dashed #CBD5E1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

.mockup-hero {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.mockup-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mockup-deliverables {
    height: 300px;
    background-color: white;
    border: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

/* HERO SECTION */
.hero {
    padding-top: 1.5rem;
    padding-bottom: 1rem; /* Herdou 2.5rem, agora força 1rem no fundo */
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.headline-part2 {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    color: #4A5D70;
    margin-top: 0.3rem;
    line-height: 1.3;
}

.hero .headline {
    line-height: 1.2;
    margin-bottom: 0;
}

.hero .subheadline {
    margin: 0 0 2rem 0;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--text-dark);
    z-index: 1;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -2%;
    width: 104%;
    height: 12px;
    background-color: var(--color-yellow);
    z-index: -1;
    border-radius: 6px;
    opacity: 0.8;
}

.text-orange {
    color: var(--color-orange);
    font-weight: 800;
}

.hero-image-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-cta {
    margin: 0;
    width: 100%;
}

.benefits-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1rem auto 0.2rem auto; /* Trouxe para 1rem no topo e quase nada no fundo */
    max-width: 900px;
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #F1F5F9;
}

.benefit-icon {
    font-size: 1.25rem;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.inside-look {
    padding-top: 1rem; /* Inicia a seção do carrossel mais perto do divisor */
}

/* VEJA POR DENTRO - INFINITE CAROUSEL */
.cards-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0 3rem 0;
    white-space: nowrap;
}

.cards-carousel-wrapper::before,
.cards-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cards-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-cream) 10%, transparent);
}

.cards-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-cream) 10%, transparent);
}

.cards-carousel {
    display: inline-flex;
    gap: 20px;
    animation: autoScrollCards 35s linear infinite;
    height: 380px;
}

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

.carousel-card-img {
    height: 100%;
    width: auto;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: var(--shadow-soft);
    border: 3px solid white;
    background-color: white;
}

@keyframes autoScrollCards {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 10px));
    }
}

.carousel-note {
    text-align: center;
    font-size: 0.95rem;
    color: #4A5D70;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.carousel-note i {
    color: var(--color-blue);
    margin-right: 4px;
    font-size: 1.1rem;
    vertical-align: text-bottom;
}

.cta-discreet {
    display: table;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* COMO FUNCIONA NA PRÁTICA */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    border-bottom: 5px solid var(--color-blue);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-blue);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -3.5rem auto 1.5rem auto;
    box-shadow: 0 4px 10px rgba(62, 188, 255, 0.4);
    border: 4px solid white;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.step-title {
    color: var(--color-blue);
    font-size: 1.4rem;
}

.step-text {
    color: #4A5D70;
}

.microcopy {
    text-align: center;
    font-weight: 600;
    color: #718096;
    font-size: 1.1rem;
}

/* ANTES E DEPOIS */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.compare-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.compare-card.before {
    border-top: 6px solid #FF4D4D;
}
.compare-card.after {
    border-top: 6px solid var(--color-green);
}

.compare-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    pointer-events: none;
}
.compare-card.before::before { background-color: #FF4D4D; }
.compare-card.after::before { background-color: var(--color-green); }

.compare-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.compare-card.before .compare-title { color: #E53E3E; }
.compare-card.after .compare-title { color: var(--color-green); }

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compare-list li {
    font-weight: 500;
    color: #4A5D70;
    display: flex;
    align-items: flex-start;
}

.icon-x {
    color: #E53E3E;
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 4px;
}

.icon-check {
    color: var(--color-green);
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 4px;
}

.closing-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* POR QUE AMAM */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--text-dark);
    font-size: 1.3rem;
}

.feature-text {
    color: #4A5D70;
    font-size: 0.95rem;
}

/* PARA VOCÊ QUE... */
.audience-box {
    background: white;
    border: 4px solid var(--color-yellow);
    border-radius: 30px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(255, 203, 17, 0.15);
    position: relative;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    background-color: var(--color-yellow);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 0 #D4A808;
}

/* TUDO O QUE VOCE RECEBE */
.deliverables-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.deliverables-list-box {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.deliverables-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deliverables-list li {
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.deliverables-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.deliverable-block {
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid transparent;
    transition: transform 0.3s ease;
}

.deliverable-block.highlight {
    border-left-color: var(--color-orange);
}

.deliverable-block:hover {
    transform: translateY(-5px);
}

.deliverable-block-title {
    font-size: 1.3rem;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deliverable-block-desc {
    color: #4A5D70;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.deliverable-sublist {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-dark);
}

.deliverable-sublist li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.deliverable-sublist.plain {
    list-style: none;
    margin-left: 0;
}

.deliverable-sublist.plain li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.card-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px dashed #CBD5E1;
}

.card-meta-chips span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F1F5F9;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748B;
}

.print-formats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.format-tag {
    background: #EBF8FF;
    border: 1px solid #BEE3F8;
    color: #2B6CB0;
    padding: 0.6rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.safety-alert {
    background-color: #FFF5F5;
    border: 2px solid #FEB2B2;
    padding: 1.2rem;
    border-radius: 20px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #C53030;
    font-size: 0.95rem;
    line-height: 1.4;
}

.safety-alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reinforcement-text {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2F855A;
    margin-bottom: 0.5rem;
}

/* BONUS */
.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border: 1px solid #F1F5F9;
}

.bonus-img {
    width: 100%;
    aspect-ratio: 450 / 600; /* Proporção exata pedida */
    object-fit: cover;
    background: #F1F5F9;
}

.bonus-info {
    padding: 1.2rem;
    display: flex;
    align-items: flex-start; /* Alinhado ao topo para descrições longas */
    gap: 1rem;
}

.bonus-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bonus-number {
    background-color: var(--color-orange);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 2px;
}

.bonus-title {
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.bonus-description {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 768px) {
    .deliverables-info {
        grid-template-columns: 1fr 1fr;
    }
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bonuses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ESCOLHA A FORMA (OFERTAS) */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
}

.offer-card.basic {
    border: 2px solid #E2E8F0;
}

.offer-card.premium {
    border: 4px solid var(--color-yellow);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 203, 17, 0.2);
    z-index: 2;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-yellow);
    color: #6B4E00;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #D4A808;
}

.offer-name {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.offer-price {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-green-dark);
    margin: 1rem 0;
}

.offer-description {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    min-height: 48px;
    font-weight: 500;
}

.receive-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.premium-receive {
    color: var(--color-orange-dark); /* Chama mais atencao dentro do plano premium ou o padrao amarelo/verde */
}

.offer-includes {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.offer-includes li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #CBD5E1; /* Linhas mais fortes */
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

.offer-includes li:last-child {
    border-bottom: none;
}

.btn-offer {
    width: 100%;
}

/* GARANTIA */
.guarantee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 800px;
}

.guarantee-icon {
    background-color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    border: 4px solid var(--color-blue);
    font-weight: bold;
    color: var(--color-blue);
}

.guarantee-text {
    font-size: 1.2rem;
    color: #4A5D70;
    margin-bottom: 1rem;
}

.guarantee-reinforcement {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
}

/* COUNTDOWN TIMER MINIMALIST */
.offers-timer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.timer-text {
    font-size: 0.95rem;
    color: #4A5D70;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.offers-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-orange-dark);
}

.time-block {
    background-color: white;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    min-width: 60px;
    text-align: center;
    border: 2px solid #F1F5F9;
}

.time-sep {
    color: #A0AEC0;
}

/* PURCHASE NOTIFICATIONS */
.purchase-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #F1F5F9;
    max-width: 320px;
}

.purchase-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 2.2rem;
    color: var(--color-green);
    display: flex;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.2;
}

.toast-action {
    color: #4A5D70;
    font-size: 0.85rem;
    line-height: 1.3;
}

.toast-action strong {
    color: var(--color-orange);
}

.toast-time {
    font-size: 0.75rem;
    color: #A0AEC0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .purchase-toast {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(150px);
        width: 90%;
        max-width: 340px;
    }
    .purchase-toast.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* UPSELL MODAL */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    border: 3px solid var(--color-yellow);
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    margin-bottom: 0.8rem;
}

.modal-alert-icon {
    font-size: 2.2rem;
    color: #E53E3E;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.modal-highlight {
    font-size: 1rem;
    font-weight: 500;
    color: #4A5D70;
    margin-bottom: 0.5rem;
}

.modal-body p {
    font-size: 1rem;
    color: var(--text-dark);
}

.modal-body strong.text-orange {
    font-size: 1.25rem !important; /* Controlando o H1 inline */
}

.modal-advantage {
    background-color: rgba(41, 208, 121, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
    border: 2px dashed var(--color-green);
}

.modal-advantage p {
    font-weight: 700;
    color: var(--color-green-dark);
    text-align: center;
    margin-bottom: 0.6rem;
}

.modal-advantage ul {
    list-style: none;
    line-height: 1.3;
}

.modal-advantage ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.modal-actions .btn-primary {
    padding: 1rem !important;
    font-size: 1.05rem !important;
}

.btn-decline {
    color: #A0AEC0;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-decline:hover {
    color: #4A5D70;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: #fcfcfc;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--color-blue);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4A5D70;
}

.final-cta-container {
    text-align: center;
}

/* FOOTER */
footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* MEDIA QUERIES (TABLET E DESKTOP) */
@media (min-width: 768px) {
    section { padding: 4rem 0; }
    .audience-box { padding: 2.5rem; }
    .headline { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }

    .hero-container {
        padding-top: 2rem;
    }
    .headline-part2 {
        font-size: 1.6rem;
    }
    .hero-cta {
        margin: 2rem auto;
        max-width: 500px;
    }
    
    .benefits-bar {
        flex-direction: row;
        justify-content: space-around;
        padding: 2rem 1rem;
    }
    .benefit-item {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }

    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    
    .compare-grid { grid-template-columns: 1fr 1fr; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    
    .deliverables-content { grid-template-columns: 1fr 1fr; align-items: center; }
    
    .bonuses-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .guarantee-container {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    section { padding: 5rem 0; }
    .headline { font-size: 3.2rem; }
    .features-grid { grid-template-columns: repeat(4, 1fr); }
    .bonuses-grid { grid-template-columns: repeat(5, 1fr); }
    .bonus-card { flex-direction: column; text-align: center; border-left: none; border-top: 5px solid var(--color-orange); }
}
