/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #2d2416 0%, #1a1510 50%, #000 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ===== SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== HERO SECTION ===== */

/* ===== IMAGEM HERO TOPO ===== */
.hero-image-section {
    background: transparent;
    padding: 100px 20px 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hero-top-image {
    width: 100%;
    max-width: 1200px;
    height: 505px;
    object-fit: cover;
    border-radius: 40px;
    display: block;
    margin: 0 auto;
}

/* Desktop grande (1400px+) */
@media (min-width: 1400px) {
    .hero-image-section {
        padding: 120px 20px 0;
    }
}

/* Desktop médio (1024px - 1399px) */
@media (max-width: 1399px) {
    .hero-top-image {
        height: 420px;
        border-radius: 35px;
    }

    .hero {
        margin-top: -420px !important;
        padding-top: 465px !important;
    }
}


/* Tablet landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .hero-image-section {
        padding: 90px 20px 0;
    }

    .hero-top-image {
        height: 350px;
        border-radius: 30px;
    }

    .hero {
        margin-top: -350px !important;
        padding-top: 395px !important;
    }
}

/* Mobile grande (480px - 599px) */
@media (max-width: 599px) {
    .hero-image-section {
        padding: 110px 15px 0;
    }

    .hero-top-image {
        height: 220px;
        border-radius: 20px;
        margin-bottom: 25px;
    }
}

/* Mobile médio (375px - 479px) */
@media (max-width: 479px) {
    .hero-image-section {
        padding: 100px 12px 0;
    }

    .hero-top-image {
        height: 180px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
}

/* Mobile pequeno (até 374px) */
@media (max-width: 374px) {
    .hero-image-section {
        padding: 90px 10px 0;
    }

    .hero-top-image {
        height: 150px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
}

/* Mobile - SEM sobreposição */
@media (max-width: 767px) {
    .hero {
        margin-top: 0 !important;
        padding-top: 40px !important;
        min-height: auto;
    }
}

/* Restante do hero */

.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #2d2416 0%, #1a1510 50%, #000 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 60px;
    margin: -505px 0 0 0;
    padding-top: 550px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    text-align: left;
}


.hero-bottom {
    grid-column: 1 / -1;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.badge {
    display: inline-block;
    background: #ff9d01;
    color: #000;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.highlight-orange {
    color: #ff9d01;
}

.subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.big-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #ff9d01;
    margin: 25px 0;
    text-shadow: 0 0 40px rgba(255, 157, 1, 0.5);
    line-height: 1;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.bonus-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff9d01;
    font-weight: 900;
    font-size: 1.3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator-text {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 2rem;
    color: #ff9d01;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Alternativa: Big number com texto novo */
.big-number-new {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ff9d01;
    margin: 25px 0;
    margin-bottom: 0px;
    text-shadow: 0 0 40px rgba(255, 157, 1, 0.5);
    line-height: 1.3;
}

/* Preço riscado em laranja */
.strikethrough-orange {
    text-decoration: line-through;
    color: #ff9d01;
    opacity: 0.8;
    font-weight: 400;
}

.text-orange {
    color: #ff9d01;
}

.text-white {
    color: #fff;
}

/* ===== BOTÕES ===== */
.cta-primary {
    display: inline-block;
    background: #ff9d01;
    color: #000;
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 157, 1, 0.5);
    color: #000;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #fff;
    cursor: pointer;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* CTA Wrapper */
.cta-wrapper {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

/* CTA Final - Redesign com efeito */
.cta-final {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 157, 1, 0.2) 0%, rgba(255, 157, 1, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 157, 1, 0.4);
    color: #fff;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 48px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: visible;
    z-index: 10;
}

.cta-final:hover {
    background: linear-gradient(135deg, rgba(255, 157, 1, 0.3) 0%, rgba(255, 157, 1, 0.4) 100%);
    border-color: rgba(255, 157, 1, 0.6);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-final:active {
    transform: scale(0.95);
}

.cta-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Flying Icons Container */
.flying-icons-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
}

.flying-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-final:hover .flying-icon {
    opacity: 1;
}

.flying-icon.active {
    opacity: 1;
}

/* Glow pulse animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 157, 1, 0);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(255, 157, 1, 0.4);
    }
}

.cta-final:hover {
    animation: pulseGlow 2s infinite;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-final {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .flying-icons-container {
        width: 400px;
        height: 400px;
    }

    .flying-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===== WARNING BANNER ===== */
.warning-banner {
    background: transparent;
    border-left: 4px solid #ff0000;
    padding: 15px 20px;
    border-radius: 0;
    text-align: left;
    margin: 40px 0;
    color: #fff;
    margin-bottom: -60px !important;
    font-style: italic;
}

.warning-banner {
    color: #fff;
}

.warning-banner strong {
    color: #ff0000;
    font-size: 1.1rem;
}

.warning-banner strong {
    color: #FF0001;
    font-size: 1.1rem;
}

/* Emoji vermelho no warning banner */
.warning-banner {
    color: #fff;
    /* texto normal branco */
}

.warning-banner strong::before {
    content: '⚠️ ';
    filter: grayscale(1) brightness(0.5) sepia(1) hue-rotate(-50deg) saturate(5);
}

/* ===== MODULES SECTION ===== */
.modules-section {
    background: #0a0a0a;
    padding: 28px 20px 80px 20px;
    margin: 0;
}

.modules-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.price-anchor {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-top: -35px;
    padding: 8px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ff9d01;
    border-radius: 0;
}

.price-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.price-value {
    font-size: 1.8rem;
    color: #ff9d01;
    font-weight: 800;
}

@media (max-width: 768px) {
    .price-anchor {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 6px 15px;
        margin-top: -35px;
    }

    .price-label {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.6rem;
    }
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

.module-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-card:hover {
    border-color: #ff9d01;
    transform: translateY(-5px);
}

.module-card .module-desc {
    flex: 1;
}

.module-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: block;
}

.module-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff9d01;
}

.module-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 15px;
}

.module-stat {
    background: linear-gradient(135deg, rgba(255, 157, 1, 0.15) 0%, rgba(255, 157, 1, 0.05) 100%);
    padding: 15px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 157, 1, 0.3);
}

.stat-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    object-fit: contain;
}

.stat-text {
    color: #fff;
    flex: 1;
}

.stat-increase {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-color: rgba(0, 255, 136, 0.4);
}

.stat-increase .stat-icon {
    color: #00ff88;
}

.stat-decrease {
    background: linear-gradient(135deg, rgba(255, 157, 1, 0.2) 0%, rgba(255, 157, 1, 0.05) 100%);
    border-color: rgba(255, 157, 1, 0.5);
}

.stat-decrease .stat-icon {
    color: #ff9d01;
}

.stat-check {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-color: rgba(0, 255, 136, 0.4);
}

.stat-check .stat-icon {
    color: #00ff88;
}

.highlight-box {
    background: rgba(255, 157, 1, 0.1);
    border-left: 4px solid #ff9d01;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* ===== SECTION COMUM ===== */
.section {
    padding: 80px 20px 40px 20px;
    background: #000;
    margin: 0;
    position: relative;
}

.section-dark {
    background: #0a0a0a;
    margin: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== COMPARISON SECTION ===== */

.comparison-card.winner {
    border: 3px solid #ff9d01;
    background: linear-gradient(180deg, #ff9d01 0%, #d67e00 50%, #b36b00 100%) !important;
}

/* Forçar todo o texto em branco */
.comparison-card.winner * {
    color: #fff !important;
}

.comparison-card.winner .comparison-title {
    color: #fff !important;
}

.comparison-card.winner .comparison-features li {
    color: #fff !important;
}

.comparison-card.winner .comparison-features li.positive {
    color: #fff !important;
    font-weight: 600;
}

.comparison-card.winner .comparison-divider {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* restante da seção de comparação */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
    position: relative;
}

.comparison-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.comparison-card.winner {
    border: 3px solid #ff9d01;
    background: linear-gradient(180deg, #ff9d01 0%, #ff8c00 50%, #e67e00 100%);
    color: #000;
}

/* Garantir que o texto fique preto no card laranja */
.comparison-card.winner .comparison-title {
    color: #000;
}

.comparison-card.winner .comparison-price {
    color: #000;
}

.comparison-card.winner .comparison-features li {
    color: #000;
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Linha horizontal divisória */
.comparison-divider {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0 20px 0;
}

.comparison-card.winner .comparison-divider {
    background: rgba(0, 0, 0, 0.3);
}

.comparison-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff9d01;
    margin: 20px 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.comparison-card.winner .comparison-price {
    color: #000;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-features li {
    font-size: 1.05rem;
    padding: 12px 0 12px 40px;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
    min-height: 50px;
}

.comparison-features li.negative {
    color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-card {
        padding: 30px 20px;
    }

    .comparison-title {
        font-size: 1.5rem;
        min-height: auto;
    }

    .comparison-price {
        font-size: 2rem;
        min-height: 100px;
    }

    .comparison-features li {
        font-size: 0.95rem;
        min-height: 45px;
    }
}

/* ===== STEP BOX (OFERTA) ===== */

.step-box {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.step-content strong {
    color: #ff9d01;
    font-weight: 700;
}

/* ===== BENEFITS GRID ===== */

/* Título principal da oferta */
.offer-main-title {
    display: block;
    background: transparent;
    color: #ff9d01;
    padding: 8px 20px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-bottom: 3px solid #ff9d01;
    border-radius: 0;
    margin: 0 auto 40px;
    text-align: center;
    width: fit-content;
}

.section .container>.offer-main-title {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Ícone principal (presente) como imagem */
.step-icon-img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 20px;
}

/* Ícones dos benefícios */
.benefit-item-icon-img {
    width: 60px;
    height: 60px;
    display: block;
}

/* Ajuste no benefit-item-large para usar imagem */
.benefit-item-large {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-item-large:hover {
    border-color: #ff9d01;
    transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
    .offer-main-title {
        padding: 10px 30px;
        margin-bottom: 30px;
    }

    .step-icon-img {
        width: 60px;
        height: 60px;
    }

    .benefit-item-icon-img {
        width: 50px;
        height: 50px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item-large {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border-left: 4px solid #ff9d01;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.benefit-item-large:hover {
    transform: translateX(5px);
    border-left-width: 6px;
}

.benefit-item-content {
    flex: 1;
}

.benefit-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9d01;
    margin-bottom: 10px;
}

.benefit-item-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 12px;
}

.benefit-item-value {
    font-size: 1.1rem;
    color: #ff9d01;
    font-weight: 700;
    background: rgba(255, 157, 1, 0.1);
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-block;
}


/* ===== MATEMÁTICA ===== */

/* Cards de matemática */
.math-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.math-card-icon {
    width: 60px !important;
    height: 60px !important;
    display: block;
    margin-bottom: 20px;
}

.math-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

/* Cenários */
.math-scenario {
    margin-bottom: 25px;
}

.scenario-header {
    background: rgba(255, 157, 1, 0.15);
    border-left: 4px solid #ff9d01;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.scenario-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Highlight box laranja */
.highlight-box.highlight-orange {
    background: rgba(255, 157, 1, 0.1);
    border: 2px solid #ff9d01;
    border-radius: 12px;
    padding: 25px;
}

/* Garantir que o texto dentro seja branco, não laranja */
.highlight-box.highlight-orange p,
.highlight-box.highlight-orange li {
    color: #fff;
}

/* Apenas os destaques específicos em laranja */
.highlight-box.highlight-orange strong[style*="color: #ff9d01"] {
    color: #ff9d01 !important;
}

/* Espaçamento entre cards */
.math-card+.math-card {
    margin-top: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
    .math-card {
        padding: 30px 20px;
    }

    .math-card-icon {
        width: 50px;
        height: 50px;
    }

    .math-card-title {
        font-size: 1.5rem;
    }

    .scenario-header {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .math-card+.math-card {
        margin-top: 30px;
    }
}

/* Acordeão - Card 2 oculto por padrão */
.math-card {
    transition: all 0.5s ease;
}

.math-card:nth-of-type(2) {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    transform: scaleY(0);
    transform-origin: top;
}

/* Card 2 aberto */
.math-card:nth-of-type(2).open {
    max-height: 2000px;
    opacity: 1;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
    transform: scaleY(1);
}

/* Responsivo */
@media (max-width: 768px) {
    .math-card:nth-of-type(2).open {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: 30px;
    }
}

/* ===== URGENCY TIMER ===== */
.urgency-timer {
    background: linear-gradient(135deg, #ff9d01 0%, #ffb333 100%);
    color: #000;
    padding: 50px 20px;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.urgency-timer-icon {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    z-index: 1;
}

.urgency-icon {
    width: 400px;
    height: 400px;
    stroke: #000;
    stroke-width: 4;
    fill: none;
    opacity: 1;
    filter: brightness(0);
    animation: breathe 2s ease-in-out infinite;
}

.urgency-timer-content {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.urgency-timer h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.timer-item {
    background: #000;
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 100px;
}

.timer-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff9d01;
    display: block;
}

.timer-label {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === RESPONSIVIDADE DO TIMER === */

/* Tablet e telas médias */
@media (max-width: 1200px) {
    .urgency-timer-icon {
        left: -150px;
    }

    .urgency-icon {
        width: 350px;
        height: 350px;
    }
}

/* Tablet pequeno */
@media (max-width: 1024px) {
    .urgency-timer-icon {
        left: -180px;
    }

    .urgency-icon {
        width: 300px;
        height: 300px;
    }

    .urgency-timer h3 {
        font-size: 2rem;
    }
}

/* Mobile - ESCONDE O ÍCONE */
@media (max-width: 768px) {
    .urgency-timer-icon {
        display: none;
    }

    .urgency-timer {
        padding: 40px 20px;
    }

    .urgency-timer h3 {
        font-size: 1.5rem;
    }

    .timer-item {
        padding: 15px 20px;
        min-width: 80px;
    }

    .timer-number {
        font-size: 2.2rem;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .urgency-timer h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .timer-display {
        gap: 10px;
    }

    .timer-item {
        padding: 12px 15px;
        min-width: 70px;
    }

    .timer-number {
        font-size: 1.8rem;
    }

    .timer-label {
        font-size: 0.75rem;
    }
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left,
    .hero-right {
        text-align: center;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: center;
    }

    .bonus-list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .step-box {
        padding: 30px 20px;
    }

    /* Timer responsivo */
    .urgency-timer-icon {
        display: none;
    }

    .urgency-timer h3 {
        font-size: 1.8rem;
    }

    .urgency-timer {
        padding: 30px 15px;
    }

    /* Timer em uma linha só */
    .timer-display {
        gap: 8px;
        margin-top: 20px;
    }

    .timer-item {
        min-width: 70px;
        padding: 12px 15px;
    }

    .timer-number {
        font-size: 1.8rem;
    }

    .timer-label {
        font-size: 0.7rem;
    }
}

.benefit-item-large {
    flex-direction: column;
    text-align: center;
}

.benefit-item-icon {
    width: 100%;
}

.cta-primary,
.cta-secondary {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .big-number {
        font-size: 2rem;
    }

    .bonus-list li {
        font-size: 1rem;
    }

    .module-title {
        font-size: 1.1rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .comparison-price {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .benefit-item-title {
        font-size: 1.2rem;
    }

    .urgency-timer h3 {
        font-size: 1.8rem;
    }

    .urgency-timer {
        padding: 30px 15px;
    }

    .urgency-timer-icon {
        left: -160px;
    }

    .urgency-icon {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .urgency-timer-icon {
        left: -180px;
    }

    .urgency-icon {
        width: 200px;
        height: 200px;
    }

    .urgency-timer h3 {
        font-size: 1.5rem;
    }
}

/* Animação de pulsação */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* ===== UTILITÁRIOS ===== */
.min-h-screen {
    min-height: 100vh;
}

.text-center {
    text-align: center;
}

#menu {
    margin: 0;
    padding: 0;
}

/* ===== AJUSTES FINAIS ===== */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== MODAL FORMULÁRIO ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 2px solid #ff9d01;
    border-radius: 20px;
    max-width: 700px;
    /* Aumentado para acomodar 2 colunas */
    width: 100%;
    padding: 35px;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(255, 157, 1, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 157, 1, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-right: 30px;
}

.modal-header h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 8px;
    color: #ff9d01;
    line-height: 1.2;
}

.modal-header p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.85;
    margin: 0;
    line-height: 1.3;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Grid de 2 colunas */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #ff9d01;
}

.form-group input {
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff9d01;
    box-shadow: 0 0 0 3px rgba(255, 157, 1, 0.1);
}

.form-group input::placeholder {
    color: #666;
}

.form-group input.error {
    border-color: #ff0000;
}

.error-message {
    color: #ff0000;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    display: none;
    line-height: 1.2;
}

.error-message.active {
    display: block;
}

/* Input com bandeira */
.input-with-flag {
    display: flex;
    align-items: stretch;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-with-flag:focus-within {
    border-color: #ff9d01;
    box-shadow: 0 0 0 3px rgba(255, 157, 1, 0.1);
}

.flag-prefix {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 10px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    border-right: 2px solid #2a2a2a;
    white-space: nowrap;
    user-select: none;
}

.input-with-flag input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 12px 10px !important;
    margin: 0 !important;
    min-width: 0;
}

.input-with-flag input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.input-with-flag.error {
    border-color: #ff0000;
}

.btn-submit {
    background: #ff9d01;
    color: #000;
    padding: 15px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 157, 1, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-footer {
    text-align: center;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    opacity: 0.7;
    margin-top: 5px;
    line-height: 1.3;
}

.modal-success {
    text-align: center;
    padding: 20px 10px;
}

.success-icon {
    font-size: clamp(3rem, 8vw, 4rem);
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.modal-success h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    color: #00ff88;
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-success p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ===== RESPONSIVO TABLETS E NOTEBOOKS ===== */
@media (max-width: 1024px) {
    .modal-container {
        max-width: 650px;
        padding: 30px 25px;
    }

    .form-row {
        gap: 12px;
    }

    .form-group input {
        padding: 11px;
    }

    .flag-prefix {
        padding: 11px 8px;
    }

    .input-with-flag input {
        padding: 11px 8px !important;
    }
}

/* ===== RESPONSIVO MOBILE ===== */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-overlay.active {
        align-items: flex-start;
        padding-top: 15px;
    }

    .modal-container {
        max-width: calc(100% - 20px);
        padding: 25px 15px;
        border-radius: 16px;
    }

    .modal-header {
        margin-bottom: 20px;
        padding-right: 30px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-header p {
        font-size: 0.85rem;
    }

    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.6rem;
        top: 12px;
        right: 12px;
    }

    .modal-form {
        gap: 15px;
    }

    .form-row {
        gap: 10px;
    }

    .form-group {
        gap: 5px;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input {
        padding: 10px;
        font-size: 16px;
        /* Previne zoom no iOS */
    }

    .flag-prefix {
        padding: 10px 7px;
        gap: 4px;
        font-size: 0.85rem;
    }

    .input-with-flag input {
        padding: 10px 7px !important;
        font-size: 16px !important;
    }

    .btn-submit {
        padding: 13px;
        font-size: 0.95rem;
    }

    .form-footer {
        font-size: 0.7rem;
        margin-top: 5px;
    }
}

/* ===== MOBILE MUITO PEQUENO - EMPILHA OS CAMPOS ===== */
@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
        /* 1 coluna em telas muito pequenas */
        gap: 12px;
    }

    .modal-container {
        padding: 20px 12px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-header p {
        font-size: 0.8rem;
    }
}

/* ===== LANDSCAPE MODE (Celular deitado) ===== */
@media (max-width: 900px) and (orientation: landscape) {
    .modal-overlay.active {
        padding: 10px;
        align-items: flex-start;
    }

    .modal-container {
        max-width: 85vw;
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px;
    }

    .modal-header {
        margin-bottom: 15px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .modal-header p {
        font-size: 0.8rem;
    }

    .modal-form {
        gap: 12px;
    }

    .form-row {
        gap: 10px;
    }

    .form-group input {
        padding: 9px;
    }

    .flag-prefix {
        padding: 9px 7px;
    }

    .input-with-flag input {
        padding: 9px 7px !important;
    }

    .btn-submit {
        padding: 11px;
        margin-top: 5px;
    }

    .form-footer {
        font-size: 0.7rem;
        margin-top: 5px;
    }

    /* Scroll customizado para landscape */
    .modal-container::-webkit-scrollbar {
        width: 6px;
    }

    .modal-container::-webkit-scrollbar-track {
        background: #0a0a0a;
    }

    .modal-container::-webkit-scrollbar-thumb {
        background: #ff9d01;
        border-radius: 3px;
    }
}

/* === RASPADINHA === */

.scratch-game-container {
    text-align: center;
    padding: 20px 15px;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.scratch-game-header {
    margin-bottom: 25px;
}

.scratch-game-header .success-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 10px;
    animation: scaleIn 0.5s ease;
}

.scratch-game-header h3 {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: #00ff88;
    margin-bottom: 8px;
    line-height: 1.2;
    padding: 0 10px;
}

/* Esconde o texto "Nossa equipe entrará em contato" */
.scratch-game-header p:not(.scratch-instruction) {
    display: none;
}

.scratch-instruction {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: #ff9d01;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 5px;
    animation: pulse 2s infinite;
    padding: 0 10px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Ícone de sucesso como imagem */
.success-icon-img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(85%) saturate(2000%) hue-rotate(0deg) brightness(105%);
}

/* Título em laranja */
.success-title-orange {
    color: #ff9d01 !important;
}

/* Grid mais compacto */
.scratch-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 25px;
    padding: 0 15px;
}

/* Cards mais compactos */
.scratch-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 157, 1, 0.3);
    transition: transform 0.3s ease;
    width: 100%;
    background: linear-gradient(135deg, #ff9d01 0%, #ffb333 100%);
}

.scratch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 1, 0.5);
}

.scratch-card-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
    border: 2px solid #ff9d01;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-align: center;
    gap: 6px;
}

/* Esconde os ícones */
.scratch-card-icon,
.scratch-card-icon-img {
    display: none;
}

.scratch-card-title {
    font-size: clamp(0.85rem, 1.6vw, 1.1rem);
    font-weight: 700;
    color: #ff9d01;
    margin-bottom: 6px;
    line-height: 1.2;
    padding: 0 5px;
}

.scratch-card-desc {
    font-size: clamp(0.7rem, 1.3vw, 0.9rem);
    opacity: 0.9;
    line-height: 1.3;
    padding: 0 5px;
}

.scratch-card-canvas {
    position: absolute;
    inset: 0;
    cursor: crosshair;
    touch-action: none;
}

.scratch-card.revealed .scratch-card-canvas {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scratch-progress {
    margin-top: 20px;
    padding: 12px;
    background: rgba(255, 157, 1, 0.1);
    border-radius: 10px;
    border: 2px solid #ff9d01;
    margin-left: 10px;
    margin-right: 10px;
}

.scratch-progress-text {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 8px;
}

.scratch-progress-bar {
    width: 100%;
    height: 8px;
    background: #0a0a0a;
    border-radius: 4px;
    overflow: hidden;
}

.scratch-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9d01, #ffb333);
    width: 0%;
    transition: width 0.3s ease;
}

.scratch-complete-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid #00ff88;
    border-radius: 12px;
    animation: slideDown 0.5s ease;
    margin-left: 10px;
    margin-right: 10px;
}

.scratch-complete-message.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scratch-complete-message h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #00ff88;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Remove emoji confete da mensagem de parabéns */
.scratch-complete-message h4::before {
    content: '';
}

.scratch-complete-message p {
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    line-height: 1.4;
    opacity: 0.9;
}

/* Ícone de parabéns */
.complete-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 15px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(85%) saturate(2000%) hue-rotate(0deg) brightness(105%);
}

/* Botão fechar com texto branco */
.btn-close-white {
    color: #fff !important;
    margin-top: 30px;
    font-weight: 700;
}

/* Desktop grande */
@media (min-width: 1200px) {
    .scratch-cards-grid {
        gap: 15px;
        max-width: 650px;
    }
}

/* Desktop médio */
@media (min-width: 1025px) and (max-width: 1199px) {
    .scratch-cards-grid {
        gap: 15px;
        max-width: 600px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .scratch-cards-grid {
        gap: 12px;
        max-width: 550px;
    }
}

/* =====================================================
   MELHORIAS DE RESPONSIVIDADE MOBILE APENAS (NOVO)
   ===================================================== */
@media (max-width: 600px) {
    .modal-container {
        max-width: 98vw;
        padding: 18px 6px 20px 6px;
        border-radius: 14px;
        min-height: 0;
        box-sizing: border-box;
    }

    .scratch-game-container {
        max-width: 430px;
        margin: 0 auto;
        max-height: 80vh;
        padding: 0 0 10px 0 !important;
        background: transparent;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .scratch-game-header {
        margin-bottom: 18px;
        margin-top: 5px;
    }

    .scratch-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 310px;
        margin: 0 auto 18px auto;
        padding: 0;
    }

    .scratch-card {
        min-height: 78px;
        max-height: 120px;
        aspect-ratio: 1/1;
        max-width: 290px;
        margin: 0 auto;
        border-radius: 13px;
        background: linear-gradient(135deg, #ff9d01 0%, #ffb333 100%);
    }

    .scratch-card-content {
        padding: 11px 8px;
        gap: 3px;
    }

    .scratch-card-title {
        font-size: 1.05rem;
        padding: 0 2px;
        line-height: 1.13;
        margin-bottom: 1px;
    }

    .btn-close-white {
        width: 170px;
        font-size: 1rem;
        margin: 20px auto 0 auto;
        padding: 11px 6px;
        border-radius: 7px;
        display: block;
        letter-spacing: 1px;
    }

    .scratch-progress {
        margin-left: 0;
        margin-right: 0;
        padding: 11px 6px 8px 6px;
        margin-top: 16px;
    }

    .scratch-progress-bar {
        height: 6px;
    }

    .scratch-complete-message {
        margin-left: 0;
        margin-right: 0;
        margin-top: 19px;
        padding: 11px 6px;
        font-size: 1.02rem;
    }

    /* Espaço abaixo do botão */
    .modal-container>.btn-close-white {
        margin-bottom: 8px;
    }

    /* Centraliza verticalmente */
    .modal-overlay.active {
        align-items: center !important;
    }
}

/* Para telas muito pequenas (<400px) */
@media (max-width: 400px) {
    .scratch-game-container {
        max-width: 98vw;
    }

    .scratch-cards-grid {
        max-width: 95vw;
    }

    .scratch-card {
        min-height: 60px;
        max-height: 88px;
    }

    .scratch-card-title {
        font-size: 0.89rem;
    }

    .btn-close-white {
        width: 97vw;
        max-width: 170px;
    }
}

/* Mobile muito pequeno (menos de 360px) */
@media (max-width: 360px) {
    .scratch-cards-grid {
        gap: 7px;
        padding: 0 3px;
        max-width: 98vw;
    }

    .scratch-card-content {
        padding: 8px 2px;
    }

    .scratch-card-title {
        font-size: 0.79rem;
    }

    .scratch-card-desc {
        font-size: 0.65rem;
    }
}

/* Landscape em mobile (mantém experiência desktop se espaço) */
@media (max-width: 900px) and (orientation: landscape) {
    .scratch-game-container {
        padding: 12px 10px;
        max-height: 92vh;
    }

    .scratch-game-header {
        margin-bottom: 12px;
    }

    .scratch-game-header .success-icon {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .scratch-instruction {
        margin-bottom: 12px;
        margin-top: 4px;
    }

    .scratch-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-bottom: 15px;
        max-width: 650px;
    }

    .scratch-progress {
        margin-top: 12px;
        padding: 10px;
    }

    .scratch-complete-message {
        margin-top: 12px;
        padding: 12px;
    }
}

/* Esconde o header do modal quando a raspadinha está ativa */
.modal-container:has(#modalSuccess[style*="display: block"]) .modal-header {
    display: none !important;
}

.modal-form[style*="display: none"]+.modal-header {
    display: none !important;
}

/* Centraliza ícones dos cards no mobile */
@media (max-width: 768px) {
    .module-icon {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .step-box {
        text-align: center;
    }

    .step-icon-img {
        margin-left: auto;
        margin-right: auto;
    }

    .math-card {
        text-align: center;
    }

    .math-card-icon {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .benefit-item-large {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-item-icon-img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Ícone no header do modal */
.modal-header-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
}

/* Ícone no botão do modal */
.btn-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

/* Ícone da bandeira do Brasil */
.flag-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

@media (max-width: 600px) {

    .scratch-progress,
    .btn-close-white {
        display: none !important;
    }
}

/* ==== PLANOS E PREÇOS - Black Friday ==== */

#planos-e-precos {
    padding: 70px 0 60px 0;
    background: #000 !important;
}

@media (max-width: 768px) {
    #planos-e-precos {
        padding-top: 30 !important;
        position: relative;
        top: 0px;
    }
}

#planos-e-precos .col-12.text-center .titulo,
#planos-e-precos .titulo,
.titulo {
    font-size: 2rem !important;
    font-weight: 900 !important;
    margin-bottom: 2.2rem !important;
    color: #ff9d01 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    line-height: 1.2 !important;
    letter-spacing: 0.5px;
}

/* Cards */
.pricing-card {
    background: linear-gradient(135deg, #18120c 0%, #23201b 100%);
    border-radius: 20px;
    padding: 2rem 1.3rem 1.7rem 1.3rem;
    border: 2px solid #2a2a2a;
    transition: all 0.3s cubic-bezier(.55, .19, .23, .9);
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    min-height: 540px;
    box-shadow: 0 4px 32px -12px rgba(255, 157, 1, 0.15);
}

.pricing-card:hover,
.pricing-card:focus-within {
    border-color: #ff9d01;
    box-shadow: 0 10px 36px 0 rgba(255, 157, 1, 0.20);
    transform: translateY(-2px) scale(1.015);
}

.pricing-card:active {
    transform: scale(0.98);
    box-shadow: 0 6px 32px #ff9d0133;
}

.pricing-card.destaque {
    border: 3px solid #ff9d01;
    position: relative;
    z-index: 2;
}

.pricing-card.sob-medida {
    background: linear-gradient(135deg, #ff9d01 0%, #ffb333 100%);
    border-color: #ff9d01;
    color: #18120c !important;
    box-shadow: 0 16px 32px -18px #ff9d0130;
}

/* Header e título */
.pricing-card__head {
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    border-bottom: none;
}

.pricing-card__left {
    display: flex;
    flex-direction: column;
    gap: 0.70rem;
}

.pricing-card__title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ff9d01;
    margin: 0;
    line-height: 1.07;
    letter-spacing: 0.02em;
}

.pricing-card.sob-medida .pricing-card__title {
    color: #18120c;
}

.pricing-card__meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

/* Chip de usuário - ESSENCIAL/FISCAL */
.users-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.36rem 0.8rem;
    border-radius: 50px;
    background: #20190f;
    border: 1px solid #ff9d0180;
    color: #ff9d01;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1;
}

.users-chip img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* ALTERAÇÃO 1: computador branco */
}

/* Chip sob medida branco/preto */
.pricing-card.sob-medida .users-chip {
    background: #fff !important;
    color: #18120c !important;
    border-color: #fff !important;
    /* ALTERAÇÃO 2 */
}

.pricing-card.sob-medida .users-chip img {
    filter: none;
}

/* Preço */
.pricing-card__price {
    margin: 1.05rem 0 1.05rem 0;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.pricing-card.sob-medida .pricing-card__price {
    border-color: #fbeedc;
}

.pricing-card__price .value {
    font-size: 2.3rem;
    font-weight: 900;
    color: #ff9d01;
    display: block;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-card.sob-medida .pricing-card__price .value {
    color: #18120c;
    font-size: 2rem;
}

.pricing-card__price .period {
    font-size: 1.06rem;
    color: #ff9d01d4;
    display: block;
    margin-top: 0.18rem;
    font-weight: 600;
}

.pricing-card.sob-medida .pricing-card__price .period {
    color: #18120c !important;
    /* ALTERAÇÃO 3.1: "personalizado" preto */
    font-weight: 700;
    opacity: 0.9;
}

/* Subtítulo */
.pricing-card__subtitle {
    font-size: 0.98rem;
    color: #fff;
    margin-bottom: 1.32rem;
    text-align: center;
    line-height: 1.47;
}

.pricing-card.sob-medida .pricing-card__subtitle {
    color: #18120c !important;
    /* ALTERAÇÃO 3.2: subtítulo preto */
    font-weight: 700;
    opacity: 1;
}

/* Lista de features */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.2rem;
    flex: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.60rem;
    margin-bottom: 0.67rem;
    font-size: 0.97rem;
    color: #fff;
    line-height: 1.45;
    letter-spacing: 0;
    font-weight: 400;
}

.pricing-card.sob-medida .pricing-card__features li {
    color: #18120c;
    font-weight: 600;
}

.pricing-card__features .ico {
    display: inline-flex;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #ff9d01;
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px #ff9d0133;
    font-size: 1.1em;
}

.pricing-card.sob-medida .pricing-card__features .ico {
    background: #fff7e1;
    color: #ff9d01;
    box-shadow: none;
}

.pricing-card__features .ico svg {
    width: 11px;
    height: 7px;
}

.pricing-card__cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.82rem;
    align-items: center;
}

/* Botão padrão */
.btn.btn-cta,
.btn.btn-cta-white {
    background: linear-gradient(90deg, #ff9d01 0%, #ffb333 100%);
    color: #18120c;
    border: none;
    border-radius: 10px;
    font-size: 1.08rem;
    padding: 13px 0;
    min-width: 160px;
    font-weight: 800;
    letter-spacing: .03em;
    margin-bottom: 2.5px;
    width: 100%;
    transition: all 0.25s cubic-bezier(.46, .14, .43, 1.02);
    box-shadow: 0 2px 18px #ff9d0132;
    text-shadow: none !important;
    text-transform: uppercase;
}

/* Botão sob medida: branco */
.pricing-card.sob-medida .btn-cta-white,
.pricing-card.sob-medida .btn.btn-cta-white {
    background: #000 !important;
    color: #fff !important;
    font-weight: 900;
    border: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 2px 18px #14141444;
}

.pricing-card.sob-medida .btn-cta-white:hover,
.pricing-card.sob-medida .btn.btn-cta-white:hover {
    background: #23201b !important;
    color: #ff9d01 !important;
}

.btn.btn-cta:hover,
.btn.btn-cta-white:hover {
    transform: scale(1.03) translateY(-2px);
    background: linear-gradient(90deg, #ffad36 0%, #ff9d01 100%);
    color: #000;
    box-shadow: 0 6px 32px #ff9d0133;
}

/* Botão "FALAR COM ESPECIALISTA" exclusivo sob medida: fundo branco, texto preto */
.pricing-card.sob-medida .btn-cta-white,
.pricing-card.sob-medida .btn.btn-cta-white {
    background: #fff !important;
    color: #18120c !important;
    font-weight: 900;
    border: none;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pricing-card.sob-medida .btn-cta-white:hover,
.pricing-card.sob-medida .btn.btn-cta-white:hover {
    background: #ffedb2 !important;
    color: #18120c !important;
}

.compare-link {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #ffb333;
    text-decoration: none;
    transition: color 0.2s cubic;
}

/* "Compare os planos" no card Sob Medida: preto */
.pricing-card.sob-medida .compare-link {
    color: #18120c !important;
    opacity: 0.93;
}

.pricing-card.sob-medida .compare-link:hover,
.pricing-card.sob-medida .compare-link:focus {
    color: #b36b00 !important;
    text-decoration: underline;
}

/* "Compare todos os módulos" abaixo dos cards: branco, borda branca embaixo */
.btn-compare-all {
    /* Remove fundo, borda, radius, box-shadow, padding generoso */
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0;
    min-width: 0;
    display: inline-block;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: .01em;
    color: #fff !important;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
    position: relative;
    text-transform: uppercase;
    transition: color .20s;
}

.btn-compare-all:hover,
.btn-compare-all:focus {
    color: #ff9d01 !important;
    cursor: pointer;
}

.btn-compare-all:after {
    content: "";
    display: block;
    margin: 9px auto 0 auto;
    width: 55%;
    max-width: 150px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    opacity: .95;
}

@media (max-width: 700px) {
    .btn-compare-all:after {
        width: 94%;
    }
}

/* (Opcional) Mais compacto em telas menores */
@media (max-width: 1024px) {
    .pricing-card {
        min-height: 460px;
        padding: 1.3rem 0.8rem 1.2rem 0.8rem;
    }
}

@media (max-width: 700px) {
    .pricing-card {
        min-height: 0;
        padding: 1.3rem 0.6rem 1.0rem 0.6rem;
    }

    #planos-e-precos .titulo {
        font-size: 1.2rem !important;
    }
}

/* BOTÕES ANCORANDO O PREÇO */

.anchor-price-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0px;
    text-decoration: none !important;
    cursor: pointer;
    font-family: inherit;
}

.anchor-price-highlight .price-arrow {
    color: #ff9d01;
    font-size: 1.5rem;
    font-weight: 800;
    opacity: .85;
    transition: color .18s, transform .3s cubic-bezier(.49, .01, .45, 1.16);
    filter: drop-shadow(0 0 10px #ff9d0140);
    user-select: none;
    animation: arrow-glow 1.8s infinite alternate;
}

.anchor-price-highlight .price-arrow:first-child {
    margin-right: 8px;
    animation-name: arrow-glow-l;
}

.anchor-price-highlight .price-arrow:last-child {
    margin-left: 8px;
    animation-name: arrow-glow-r;
}

@keyframes arrow-glow-l {
    0% {
        text-shadow: none;
        transform: translateX(0);
    }

    20% {
        text-shadow: 0 0 7px #ffad463c;
    }

    80% {
        transform: translateX(0);
    }

    100% {
        text-shadow: 0 0 18px #ff9d01cc, 0 0 12px #ffb33388;
        transform: translateX(7px);
    }
}

@keyframes arrow-glow-r {
    0% {
        text-shadow: none;
        transform: translateX(0);
    }

    20% {
        text-shadow: 0 0 7px #ffad463c;
    }

    80% {
        transform: translateX(0);
    }

    100% {
        text-shadow: 0 0 18px #ff9d01cc, 0 0 12px #ffb33388;
        transform: translateX(-7px);
    }
}

/* CÉREBRO DO DESTAQUE */
.anchor-price-highlight .price-highlight-text {
    color: #ff9d01;
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: 0.01em;
    background: none;
    border-bottom: 3px solid #ff9d01;
    box-shadow: 0 4px 18px #ff9d0120;
    padding: 0 10px 1px 10px;
    text-transform: none;
    transition: color .2s, border-bottom-color .18s;
}

.anchor-price-highlight .price-highlight-text b {
    font-weight: 900;
    color: #fff6e4;
    letter-spacing: .01em;
}

.anchor-price-highlight:hover .price-highlight-text,
.anchor-price-highlight:focus .price-highlight-text {
    color: #fff;
    border-bottom: 3px solid #fff;
}

.anchor-price-highlight:hover .price-arrow,
.anchor-price-highlight:focus .price-arrow {
    color: #fff;
    filter: drop-shadow(0 0 12px #fff9);
    transform: scale(1.12);
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-right .bonus-list {
    text-align: left !important;
    margin-bottom: 0px;
}

.hero-price-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* NAV-BAR E FOOTER */

.navbar .navbar-nav > li > a,
.navbar .navbar-nav > li > .nav-link,
.navbar .navbar-nav > li > a.nav-link {
    color: #212429 !important;
    font-family: 'Syne', Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
    text-decoration: none !important;
    font-style: normal !important;
    transition: color .3s;
}

footer .links a {
    font-family: 'Syne', Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: left !important;
    display: block !important;
    margin-bottom: 0px !important;
    color: #ff9d01 !important;
    text-decoration: none !important;
}

footer p,
footer a {
    color: #ff9d01 !important;
    font-family: "Unbounded", 'Syne', Arial, Sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 28px !important;
}

footer .titulo,
footer .links .titulo,
footer .col-md-2 .titulo,
footer .col-md-3 .titulo {
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: 'Unbounded', 'Syne', Arial, sans-serif !important;
    line-height: 1.4em !important;
    color: #222 !important;
    text-align: left !important;
    padding-bottom: 10px;
    margin-bottom: 0 !important;
    letter-spacing: initial !important;
    display: block;
}