﻿/* ============================================
   INVESTMENT SECTION
   ============================================ */

.investment-section {
    background-color: #050810;
    background-image: var(--gradient-hero);
    padding: 120px 0;
    overflow: hidden;
}

.investment-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.investment-title {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.investment-subtitle {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #8b92a8;
    max-width: 650px;
    line-height: 1.6;
}

/* === INVESTMENT GRID (Centered Single Card) === */
.investment-grid {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* === CARD BASE === */
.investment-card {
    background: linear-gradient(145deg, rgba(13, 17, 23, 0.9) 0%, rgba(20, 25, 40, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 480px;
    /* Reduced from 520px */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.05), 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* === CARD HOVER EFFECT (Entire Section) === */
/* We apply the hover effect on the card itself as requested "destaque especial para o card" */
.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
}

/* === CARD CONTENT === */
.card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #00ff88;
    text-align: center;
}

.card-h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 22px;
    text-align: center;
    line-height: 1.2;
}

/* === PRICING === */
.price-block {
    margin-bottom: 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-main {
    font-size: 46px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 5px;
    display: block;
    line-height: 1;
    letter-spacing: -2px;
}

.price-installment {
    font-size: 15px;
    color: #cbd5e0;
    display: block;
    margin-bottom: 14px;
    font-weight: 500;
}

.pix-badge {
    display: inline-block;
    background: rgba(180, 255, 57, 0.15);
    color: #b4ff39;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    border: 1px solid rgba(180, 255, 57, 0.3);
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 22px 0;
}

/* === LIST === */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    /* Vertically center */
    gap: 12px;
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.4;
    margin-bottom: 10px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* === CTA BUTTONS === */
.btn-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.btn-investment {
    height: 56px;
    width: 100%;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    position: relative;
}

/* BotÃ£o Pix - Principal */
.btn-pix {
    background: linear-gradient(135deg, #00D46A 0%, #00B359 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 106, 0.4);
    margin-bottom: 10px;
}

.btn-pix:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 106, 0.5);
    background: linear-gradient(135deg, #00E876 0%, #00C263 100%);
}

/* Badge 5% OFF */
.discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4757;
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Texto de economia Pix */
.pix-savings {
    text-align: center;
    font-size: 13px;
    color: #00ff88;
    font-weight: 600;
    margin-top: -8px;
    margin-bottom: 20px;
}

/* BotÃ£o SecundÃ¡rio - Outras formas */
.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.01);
}

.btn-micro-copy {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 12px;
}

.urgency-text {
    color: #ef4444;
}

.payment-text {
    color: #8b92a8;
}

/* === FOOTER === */
.investment-footer {
    margin-top: 60px;
    text-align: center;
}

.footer-trust {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.payment-logos span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* === RESPONSIVE === */

@media (max-width: 1199px) {
    .investment-grid {
        /* Maintain flex layout for single card */
        display: flex;
        justify-content: center;
        gap: 24px;
        padding: 0 24px;
    }

    .investment-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .investment-section {
        padding: 60px 0;
    }

    .investment-grid {
        gap: 40px;
        padding: 0 16px;
        /* Reduced side padding for grid */
    }

    .investment-title {
        font-size: 28px;
        padding: 0 16px;
    }

    /* === MOBILE OPTIMIZED CARD === */
    .investment-card {
        padding: 24px;
        /* Significantly reduced from 60px */
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
    }

    /* Typography Reductions */
    .card-eyebrow {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .card-h3 {
        font-size: 24px;
        /* Reduced from 36px */
        margin-bottom: 24px;
    }

    .price-block {
        padding: 20px;
        margin-bottom: 24px;
    }

    .price-main {
        font-size: 42px;
        /* Reduced from 64px */
        letter-spacing: -1px;
    }

    .price-installment {
        font-size: 16px;
        /* Reduced from 20px */
        margin-bottom: 12px;
    }

    .pix-badge {
        font-size: 14px;
        padding: 6px 16px;
    }

    /* Benefits List Compactness */
    .benefit-list {
        margin-bottom: 24px;
    }

    .benefit-item {
        font-size: 15px;
        /* Reduced from 18px */
        gap: 10px;
        margin-bottom: 10px;
        line-height: 1.4;
        align-items: flex-start;
    }

    .benefit-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-top: 2px;
        /* Align with top of text */
    }

    /* CTA Buttons Mobile */
    .btn-wrapper {
        width: 100%;
        margin-bottom: 12px;
    }

    .btn-investment {
        height: 60px;
        font-size: 14px !important;
        border-radius: 8px;
        padding: 0 12px !important;
        width: 100%;
    }

    .btn-pix {
        font-size: 14px !important;
    }

    .btn-secondary {
        font-size: 12px !important;
        padding: 0 10px !important;
        line-height: 1.2;
    }

    .discount-badge {
        font-size: 9px !important;
        padding: 3px 7px !important;
        top: -6px;
        right: -6px;
    }
}