/* ================= ESTRUTURA E BACKGROUND ================= */
#price {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #050505;
    padding: 80px 0;
}

.price-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.3;
}

.price-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #000 100%);
    z-index: 2;
}

.price-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= TÍTULO ================= */
.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.price-main-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

.title-container .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    max-width: 150px;
}

/* ================= SLIDER CONTAINER ================= */
.slider-outer-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.slider-window {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.price-slider {
    display: flex;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ================= CARDS ================= */
.price-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 30px;
    width: 360px;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-15px);
    border-color: #ff0000;
    background: #0f0f0f;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
}

.card-highlight {
    border: 2px solid #ff0000;
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.card-highlight:hover {
    transform: translateY(-15px) scale(1.05);
}

.card-highlight::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 50px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ================= PREÇO ================= */
.card-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap; /* Permite que o texto 'extra' quebre para baixo se necessário */
    margin-bottom: 10px;
    text-align: center;
}

/* R$ */
.currency {
    color: #fff;
    font-weight: 900;
    font-size: 3.0rem;
    line-height: 1;
}

/* VALOR */
.value {
    font-size: 3.0rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

/* ASTERISCO */
.special-asterisk {
    font-size: 1.2rem;
    color: #ff0000;
    vertical-align: super;
}

/* TEXTO ABAIXO */
.card-price .extra {
    width: 100%; /* Mantido para garantir que observações fiquem embaixo */
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}

.pix-label {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-align: center;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-features li {
    padding: 12px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.card-features i {
    color: #ff0000;
    font-size: 0.8rem;
}

/* ================= BOTÕES NAVEGAÇÃO ================= */
.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
    position: absolute;
}

.nav-btn:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* ================= INFO FOOTER ================= */
.info-footer {
    margin: 80px 20px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.info-icon {
    color: #ff0000;
    font-size: 1.8rem;
}

.info-header h3 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.info-column {
    padding: 0 10px;
}

.info-column.border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-column ul {
    list-style: none;
    padding: 0;
}

.info-column li {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.info-column li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}

.li-note::before {
    content: "" !important;
}

.li-note {
    padding-left: 0 !important;
}

.note-asterisk {
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: 900;
    margin-right: 5px;
    vertical-align: middle;
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-column.border-right {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .slider-window {
        mask-image: none;
        -webkit-mask-image: none;
        overflow-x: auto;
        padding: 40px 20px;
    }

    .nav-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    #price {
        padding: 60px 0;
        height: auto;
    }

    .slider-window {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .price-card {
        width: 290px;
        scroll-snap-align: center;
        margin-right: 15px;
    }

    .card-highlight {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .price-main-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .price-card {
        width: 88vw;
    }

    .value {
        font-size: 3rem;
    }

    .currency {
        font-size: 3rem;
    }
}