/* ==========================================
   MÉTODO ACELERA 14 DIAS - LANDING PAGE
   Styles.css OTIMIZADO - Design BLACK
   ========================================== */

/* ==================== CSS RESET ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors */
    --color-primary: #FF1744;
    --color-primary-hover: #D50000;
    --color-primary-light: rgba(255, 23, 68, 0.1);
    --color-secondary: #FF6B00;
    --color-success: #00C853;
    --color-danger: #FF1744;
    --color-danger-light: rgba(255, 23, 68, 0.1);
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-dark: #0A0A0A;
    --bg-section-alt: #F5F5F5;
    --bg-card: #ffffff;
    --bg-gradient: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
    
    /* Text */
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #888888;
    
    /* Borders */
    --border-color: #e5e5e5;
    --border-radius: 16px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    
    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 8px 32px rgba(255, 23, 68, 0.4);
    --shadow-button-hover: 0 12px 48px rgba(255, 23, 68, 0.6);
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 56px 16px;
    --container-max: 680px;
}

/* ==================== BASE STYLES ==================== */
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

strong {
    font-weight: 700;
    color: var(--text-primary);
}

/* ==================== LAYOUT ==================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.section-alt {
    background-color: var(--bg-section-alt);
}

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

.text-primary {
    color: var(--color-primary);
}

.text-danger {
    color: var(--color-danger);
}

/* ==================== ALERT BAR ==================== */
.alert-bar {
    background: var(--bg-gradient);
    color: white;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 23, 68, 0.3);
    position: relative; /* ← ÚNICA MUDANÇA NECESSÁRIA */
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.alert-bar p {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    letter-spacing: 0.3px;
}

.alert-icon {
    animation: pulse 2s infinite;
    font-size: 20px;
}

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

/* ==================== HERO SECTION ==================== */
.hero-section {
    text-align: center;
    padding-top: 48px;
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    text-wrap: balance;
    letter-spacing: -0.5px;
}

.hero-title .text-primary {
    display: inline-block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
    line-height: 1.7;
}

.hero-image-container {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: -12px;    /* Reduzido de -16px (menos para fora) */
    right: -12px;     /* Reduzido de -16px (menos para fora) */
    background: var(--bg-gradient);
    color: white;
    padding: 10px 18px;  /* Reduzido de 14px 24px */
    border-radius: var(--border-radius);
    font-weight: 700;    /* Reduzido de 800 (menos forte) */
    font-size: 13px;     /* Reduzido de 15px */
    box-shadow: var(--shadow-button);
    animation: bounce 2.5s infinite; /* Mais lento */
    transform: scale(0.9); /* Diminui tudo em 10% */
    transform-origin: bottom right; /* Mantém proporção do canto */
}

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

/* ==================== LOSS SECTION ==================== */
.loss-card {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 23, 68, 0.2);
    position: relative;
    overflow: hidden;
}

.loss-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
}

.loss-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.3;
}

.loss-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loss-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.loss-item:hover {
    transform: translateX(4px);
}

.loss-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-danger);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.loss-item span {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-light);
    border-radius: 50px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== DELIVERABLES ==================== */
.deliverables-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deliverable-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bg-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.deliverable-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.deliverable-card:hover::before {
    transform: scaleY(1);
}

.deliverable-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius);
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.deliverable-content {
    flex: 1;
}

.deliverable-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.deliverable-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deliverable-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-gradient);
    flex-shrink: 0;
}

/* ==================== BONUS SECTION ==================== */
.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-button);
    animation: pulse 2s infinite;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-card {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF8E1 100%);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.bonus-card::before {
    content: '🎁';
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 32px;
    animation: bounce 2s infinite;
}

.bonus-card:hover {
    border-color: var(--color-primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.bonus-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(255, 23, 68, 0.3);
}

.bonus-content {
    flex: 1;
}

.bonus-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.bonus-description {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==================== VALUE ANCHOR ==================== */
.value-subtitle {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 16px;
}

.value-box {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    max-width: 440px;
    margin: 24px auto 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-primary);
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.value-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.value-price {
    color: var(--color-danger);
    font-weight: 700;
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.7;
}

.value-total {
    border-top: 2px solid var(--color-primary);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-total-label {
    font-weight: 800;
    color: var(--text-primary);
    font-size: 18px;
}

.value-total-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-danger);
    text-decoration: line-through;
    opacity: 0.7;
}

/* ==================== OFFER SECTION ==================== */
.offer-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F8 100%);
    border-radius: var(--border-radius-xl);
    padding: 40px 28px;
    box-shadow: 0 16px 64px rgba(255, 23, 68, 0.2);
    border: 3px solid var(--color-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.offer-card > * {
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 28px;
    box-shadow: var(--shadow-button);
    animation: pulse 2s infinite;
}

.offer-label {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.offer-price-line {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.installment-count,
.installment-value {
    color: #16A34A;
    font-size: 28px;
    font-weight: 900;
}

.cash-value {
    color: #16A34A;
    font-size: 32px;
    font-weight: 900;
}

.offer-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-style: italic;
}

/* Countdown Timer */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-gradient);
    padding: 14px 26px;
    border-radius: var(--border-radius);
    min-width: 80px;
    box-shadow: var(--shadow-md);
}

.countdown-number {
    font-size: 30px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-primary);
    animation: blink 1s infinite;
}

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

/* Offer Features */
.offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 360px;
    margin: 0 auto 32px;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.check-icon {
    color: var(--color-success);
    font-weight: 900;
    font-size: 18px;
}

.offer-urgency {
    font-size: 15px;
    color: var(--color-primary);
    margin-top: 20px;
    font-weight: 700;
}

/* ==================== CTA BUTTON ==================== */
.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 620px; /* Aumentado de 520px para 580px */
    background: var(--bg-gradient);
    color: white;
    font-weight: 900;
    font-size: 14px; /* Reduzido de 19px para 18px */
    padding: 12px 40px; /* Reduzido de 22px para 16px (altura) */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-button);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    animation: ctaSuperPulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes ctaSuperPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 23, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 16px 64px rgba(255, 23, 68, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 23, 68, 0.4);
    }
}

.cta-button:hover {
    background: linear-gradient(135deg, #D50000 0%, #FF5722 100%);
    box-shadow: var(--shadow-button-hover);
    animation: none;
    transform: scale(1.03);
}

.cta-button:active {
    transform: scale(0.98);
    animation: none;
}

.cta-button::before {
    content: '🔥';
    margin-right: 8px;
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee-card {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-success);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.guarantee-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 4px 24px rgba(0, 200, 83, 0.2);
}

.guarantee-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.guarantee-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== EMOTIONAL CLOSE ==================== */
.sparkle-icon {
    font-size: 56px;
    margin-bottom: 24px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.2);
    }
}

.emotional-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.emotional-text {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

/* Reject Button */
.reject-section {
    margin-top: 40px;
}

.reject-button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    opacity: 0.6;
}

.reject-button:hover {
    color: var(--text-secondary);
    opacity: 1;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--bg-dark);
    padding: 32px 20px;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== RESPONSIVE - TABLET (768px) ==================== */
@media (min-width: 768px) {
    :root {
        --section-padding: 72px 24px;
    }

    .alert-bar p {
        font-size: 16px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .loss-card {
        padding: 40px 32px;
    }

    .loss-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .deliverable-card {
        padding: 28px;
    }

    .offer-card {
        padding: 56px 48px;
    }

    .offer-price-line {
        font-size: 24px;
    }

    .installment-count,
    .installment-value {
        font-size: 32px;
    }

    .cash-value {
        font-size: 36px;
    }

    .guarantee-card {
        flex-direction: row;
        text-align: left;
        padding: 40px 36px;
    }

    .emotional-title {
        font-size: 36px;
    }

    .cta-button {
        font-size: 20px;
        padding: 24px 48px;
    }
}

/* ==================== RESPONSIVE - DESKTOP (1024px) ==================== */
@media (min-width: 1024px) {
    :root {
        --section-padding: 96px 32px;
        --container-max: 760px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .loss-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .emotional-title {
        font-size: 40px;
    }

    .cta-button {
        font-size: 21px;
        padding: 26px 56px;
    }
}