/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    /* Cores Yelly */
    --yelly-yellow: #FFC700;
    --yelly-dark: #1a1a1a;
    --yelly-white: #FFFFFF;
    --bf-red: #E63946;
    --bf-black: #0D0D0D;
    --text-gray: #4a4a4a;
    --light-gray: #f5f5f5;

    /* Espaçamentos */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;

    /* Tipografia */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--yelly-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bf-black) 0%, var(--yelly-dark) 100%);
    color: var(--yelly-white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--yelly-yellow);
    opacity: 0.1;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Hero Video Mobile - Formato Stories */
.hero-video-mobile {
    display: none;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 9 / 16;
}

/* Estilização dos controles do vídeo */
.hero-video-mobile::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.fire-icon {
    display: inline-block;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--yelly-yellow);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* Destaque Box */
.destaque-box {
    background: linear-gradient(135deg, var(--yelly-yellow) 0%, #FFD700 100%);
    color: var(--yelly-dark);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 199, 0, 0.3);
    margin-top: var(--spacing-lg);
    animation: slideUp 0.6s ease-out;
}

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

.destaque-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.destaque-header h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    text-align: center;
}

.lightning-icon {
    font-size: 2rem;
    animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.destaque-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.destaque-list li {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.destaque-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--bf-red);
    font-size: 1.5rem;
}

/* CTA Buttons */
.cta-button {
    background: var(--yelly-dark);
    color: var(--yelly-yellow);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 600px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: var(--bf-black);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-primary {
    background: var(--yelly-dark);
    color: var(--yelly-yellow);
}

.cta-secondary {
    background: var(--yelly-yellow);
    color: var(--yelly-dark);
}

.cta-large {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    padding: var(--spacing-lg);
}

.cta-subtitle {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* Como Funciona Section */
.como-funciona {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--yelly-dark);
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.passo-card {
    background: var(--yelly-white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.passo-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.passo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--yelly-dark);
}

.passo-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Produto Section */
.produto {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.produto-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.produto-subtitle {
    font-size: 1.25rem;
    color: var(--bf-red);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.produto-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: var(--spacing-md);
}

/* Grid de 3 Maquininhas */
.maquininhas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.maquininha-card {
    background: var(--yelly-white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.maquininha-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--yelly-yellow);
}

.maquininha-destaque {
    border-color: var(--yelly-yellow);
    box-shadow: 0 15px 40px rgba(255, 199, 0, 0.3);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--bf-red);
    color: var(--yelly-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    z-index: 10;
}

.badge-desconto {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--yelly-yellow);
    color: var(--yelly-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 199, 0, 0.4);
    z-index: 10;
}

.maquininha-image {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: 15px;
}

.maquininha-image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.maquininha-card:hover .maquininha-image img {
    transform: scale(1.1);
}

.maquininha-info {
    text-align: center;
}

.maquininha-titulo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--yelly-dark);
    margin-bottom: var(--spacing-xs);
}

.maquininha-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yelly-yellow);
    margin-bottom: var(--spacing-sm);
}

.maquininha-desc {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.preco-box {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.preco-original {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: var(--spacing-xs);
}

.preco-parcelado {
    font-size: 1.1rem;
    color: var(--yelly-dark);
    margin-bottom: var(--spacing-xs);
}

.preco-parcelado strong {
    font-size: 1.5rem;
    color: var(--bf-red);
}

.preco-vista {
    font-size: 1rem;
    color: var(--yelly-dark);
    font-weight: 600;
}

.maquininha-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.maquininha-features li {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-sm);
}

.cta-machine {
    width: 100%;
    background: var(--yelly-yellow);
    color: var(--yelly-dark);
    font-size: 1rem;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    display: block;
    text-align: center;
    text-decoration: none;
}

.cta-machine:hover {
    background: var(--yelly-dark);
    color: var(--yelly-yellow);
}

/* Tabela Comparativa de Taxas */
.tabela-taxas-section {
    background: var(--yelly-white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    margin-top: var(--spacing-xl);
}

.taxas-subtitulo {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* Bandeiras Aceitas */
.bandeiras-aceitas {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: 10px;
}

.bandeira-label {
    font-weight: 600;
    color: var(--yelly-dark);
    margin-right: var(--spacing-sm);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.bandeiras-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.bandeira-icon {
    font-size: 0.9rem;
    padding: 6px 12px;
    background: var(--yelly-white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bandeira-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    padding: 6px 12px;
    background: var(--yelly-white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.bandeira-logo:hover {
    transform: scale(1.1);
}

/* Wrapper da Tabela */
.tabela-taxas-wrapper {
    overflow-x: auto;
    margin-bottom: var(--spacing-lg);
}

/* Tabela de Taxas - Unica Coluna */
.tabela-taxas-unica {
    max-width: 600px;
    margin: 0 auto;
}

/* Colunas da Tabela */
.coluna-taxas {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.coluna-yelly {
    background: linear-gradient(135deg, #FFFBEA 0%, #FFF9E6 100%);
    border: 3px solid var(--yelly-yellow);
}

.coluna-concorrencia {
    background: var(--light-gray);
    border: 2px solid #e0e0e0;
}

/* Header das Colunas */
.header-taxas {
    background: var(--yelly-dark);
    color: var(--yelly-white);
    padding: var(--spacing-md);
    text-align: center;
}

.coluna-yelly .header-taxas {
    background: linear-gradient(135deg, var(--yelly-yellow) 0%, #FFD700 100%);
    color: var(--yelly-dark);
}

.header-taxas h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.recebimento {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Linhas de Taxa */
.taxa-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.taxa-linha:hover {
    background: rgba(255, 199, 0, 0.1);
}

.taxa-linha .label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.taxa-linha .valor {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yelly-dark);
}

.taxa-linha .valor.destaque {
    color: var(--bf-red);
    font-size: 1.25rem;
}

/* Disclaimer da Tabela */
.tabela-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

/* Botão CTA da Tabela */
.cta-tabela {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

/* Nova Calculadora de Lucro (Layout 2 Colunas) */
.calculadora-section {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: 20px;
    margin-top: var(--spacing-xl);
}

/* Grid Principal da Calculadora */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Lado Esquerdo: Inputs */
.calc-inputs-lado {
    background: var(--yelly-white);
    padding: var(--spacing-lg);
    border-radius: 15px;
}

.calc-title-left {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--yelly-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.input-group-calc {
    margin-bottom: var(--spacing-md);
}

.input-group-calc label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yelly-dark);
    margin-bottom: var(--spacing-xs);
}

.input-group-calc select,
.input-group-calc input[type="text"] {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--yelly-white);
    color: var(--yelly-dark);
    transition: all 0.3s ease;
}

.input-group-calc select:focus,
.input-group-calc input[type="text"]:focus {
    outline: none;
    border-color: var(--yelly-yellow);
}

/* Row de Taxas (2 colunas) */
.calc-taxas-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.taxa-input-small {
    margin-bottom: 0;
}

.taxa-disclaimer-small {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: var(--spacing-xs);
    line-height: 1.3;
}

/* Taxa Yelly Display */
.taxa-yelly-display {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
}

.taxa-yelly-box {
    background: var(--yelly-yellow);
    border: 2px solid var(--yelly-dark);
    border-radius: 8px;
    padding: var(--spacing-sm);
    text-align: center;
    margin-top: 2px;
}

.taxa-yelly-box span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yelly-dark);
}

/* Botão CTA Calculadora Esquerda */
.cta-calc-left {
    width: 100%;
    background: var(--yelly-yellow);
    color: var(--yelly-dark);
    font-size: 1.1rem;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    display: block;
    text-decoration: none;
    text-align: center;
}

.cta-calc-left:hover {
    background: var(--yelly-dark);
    color: var(--yelly-yellow);
}

/* Lado Direito: Resultados */
.calc-resultados-lado {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.resultado-box-dark {
    background: linear-gradient(135deg, #2a2a2a 0%, var(--yelly-dark) 100%);
    color: var(--yelly-white);
    padding: var(--spacing-xl);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Lucro em Destaque */
.lucro-destaque {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.lucro-label-small {
    font-size: 1rem;
    color: var(--yelly-white);
    margin-bottom: var(--spacing-xs);
}

.lucro-valor-grande {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--yelly-yellow);
    margin: var(--spacing-sm) 0;
}

.lucro-periodo-small {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Seção "Você Recebe" */
.voce-recebe-section {
    margin-top: var(--spacing-lg);
}

.voce-recebe-titulo {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yelly-white);
    margin-bottom: var(--spacing-lg);
}

/* Valores Comparação Novo */
.valores-comparacao-novo {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.valor-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.valor-tipo {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.valor-numero-yelly {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yelly-yellow);
    margin: 0;
}

.valor-numero-sem {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Sticky Top Bar (sempre visível no topo) */
.sticky-bottom-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--yelly-dark) 0%, var(--bf-black) 100%);
    color: var(--yelly-white);
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--yelly-yellow);
}

.sticky-bottom-bar p {
    margin: 0;
    font-size: clamp(0.85rem, 2vw, 1rem);
    line-height: 1.4;
}

.sticky-bottom-bar strong {
    color: var(--yelly-yellow);
}

/* Adicionar padding no body para não cobrir conteúdo */
body {
    padding-top: 60px; /* Espaço para sticky top bar */
}

/* Vantagens Section */
.vantagens {
    padding: var(--spacing-xl) 0;
    background: var(--yelly-dark);
    color: var(--yelly-white);
}

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

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.vantagem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vantagem-card:hover {
    background: rgba(255, 199, 0, 0.2);
    border-color: var(--yelly-yellow);
    transform: translateY(-5px);
}

.vantagem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.vantagem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--yelly-yellow);
}

.vantagem-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Final Section */
.cta-final {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--bf-red) 0%, #dc2f02 100%);
    color: var(--yelly-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: var(--yelly-yellow);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-final-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.rocket-icon {
    display: inline-block;
    animation: float 2s ease-in-out infinite;
}

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

.cta-final-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.cta-final-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.destaque-final {
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
    z-index: 1;
}

/* Urgência */
.urgencia {
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.urgencia-text {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-md);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.urgencia-icon {
    font-size: 1.5rem;
    margin-right: var(--spacing-xs);
}

#stockCount {
    color: var(--yelly-yellow);
    font-weight: 800;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--bf-black);
    color: var(--yelly-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-content {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    margin: var(--spacing-md) 0;
}

.footer-links a {
    color: var(--yelly-yellow);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-disclaimer {
    margin-top: var(--spacing-md);
    opacity: 0.8;
    font-size: 0.85rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 998;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 20%);
    backdrop-filter: blur(10px);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none; /* Escondido no desktop por padrão */
    
}

.sticky-cta-mobile.visible {
    bottom: 0;
    animation: slideUpBounce 0.6s ease-out;
}

@keyframes slideUpBounce {
    0% {
        bottom: -100px;
    }
    60% {
        bottom: 10px;
    }
    100% {
        bottom: 0;
    }
}

.cta-sticky {
    width: 100%;
    background: var(--yelly-yellow);
    color: var(--yelly-dark);
    font-size: 1.1rem;
    font-weight: 800;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-sticky:hover {
    background: var(--bf-red);
    color: var(--yelly-white);
    transform: scale(1.02);
}

.cta-sticky:active {
    transform: scale(0.98);
}

.sticky-cta-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}


/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    /* Hero Grid vira Stack em mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Imagem aparece primeiro em mobile */
    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 100%;
        max-height: 400px;
    }

    /* Ocultar imagem e mostrar vídeo no mobile */
    .hero-image-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
        max-width: 350px;
        width: 100%;
        height: auto;
        max-height: 600px;
        margin: 0 auto;
    }

    .destaque-box {
        padding: var(--spacing-md);
    }

    .cta-button {
        font-size: 1rem;
        padding: var(--spacing-md);
        
    }

    a {text-decoration: none;}

    .passos-grid,
    .vantagens-grid,
    .maquininhas-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .maquininha-card {
        padding: var(--spacing-md);
    }

    .plano-max-beneficios {
        padding: var(--spacing-md);
    }

    .badge-popular {
        font-size: 0.75rem;
        padding: 6px 15px;
        top: -10px;
    }

    .badge-desconto {
        font-size: 0.75rem;
        padding: 6px 15px;
        top: -10px;
    }

    /* Sticky CTA sempre visível em mobile */
    .sticky-cta-mobile {
        display: block;
        bottom: 0;
    }

    /* Tabela de Taxas em mobile */
    .tabela-taxas {
        min-width: 500px;
    }

    .header-taxas h3 {
        font-size: 1.25rem;
    }

    .taxa-linha .label {
        font-size: 0.85rem;
    }

    .taxa-linha .valor {
        font-size: 1rem;
    }

    /* Nova Calculadora em mobile */
    .calculadora-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0;
    }

    .calc-inputs-lado {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        padding: var(--spacing-md);
    }

    .calc-resultados-lado {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .resultado-box-dark {
        padding: var(--spacing-lg);
    }

    .calc-taxas-row {
        grid-template-columns: 1fr;
    }

    .calc-title-left {
        font-size: 1.25rem;
        text-align: center;
        line-height: 1.4;
    }

    .lucro-valor-grande {
        font-size: 2rem;
    }

    /* Centralizar texto dos botões */
    .cta-calc-left {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    /* Ajuste de padding para sticky CTA mobile */
    body {
        padding-bottom: 80px; /* Espaço para sticky CTA mobile */
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 30px;
        --spacing-xl: 40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .destaque-list li {
        font-size: 0.95rem;
    }
}

/* Animações de entrada */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

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