﻿.banner::before {
    background: unset;
    backdrop-filter: unset;
}

.banner-content {
    background: unset;
}

.btn-md {
    height: 50px;
    gap: 10px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee {
    display: inline-block;
    animation: marquee-scroll 15s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee.inverse {
    animation-direction: reverse;
}


.letreiro {
    leading-trim: both;
    text-edge: cap;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--bs-warning);
    color: transparent;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 11.084px;
    font-size: 220px;
}

@media (max-width: 576px) {
    .letreiro {
        font-size: 60px;
        letter-spacing: 3px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .letreiro {
        font-size: 100px;
        letter-spacing: 5px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .letreiro {
        font-size: 150px;
        letter-spacing: 7px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .letreiro {
        font-size: 180px;
        letter-spacing: 9px;
    }
}

@media (min-width: 1201px) {
    .letreiro {
        font-size: 221.682px;
        letter-spacing: 11px;
    }
}


.hero-section {
    background-color: #000;
}

.confetti-overlay {
    pointer-events: none;
    background: url(/assets_2025/images/blackfriday/Parts.svg) repeat;
    background-size: contain;
    opacity: 0.9;
    z-index: 5;
}

.bg-percent {
    background-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 6%), linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 6%), url(/assets_2025/images/blackfriday/background.pricing.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.logos-stack {
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

    .logos-stack .logo {
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #000;
        margin-left: -16px;
    }

        .logos-stack .logo:first-child {
            margin-left: 0;
        }

@media (max-width: 576px) {
    .logos-stack .logo {
        margin-left: -8px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .logos-stack .logo {
        margin-left: -10px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .logos-stack .logo {
        margin-left: -12px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .logos-stack .logo {
        margin-left: -14px;
    }
}

@media (min-width: 1201px) {
    .logos-stack .logo {
        margin-left: -16px;
    }
}


/* Cards Pricing */
.card-pricing {
    padding: 40px;
    transition: transform 0.3s;
    border-radius: 40px;
    background: rgba(13, 13, 13, 0.65);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    width: 100%;
    max-width: 420px; /* Desktop default */
    border: 1px solid var(--bs-warning);
    margin-bottom: 30px;
}

/* Preço */
.price-display {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-weight: bold;
    justify-content: center;
}

    .price-display .currency,
    .price-display .decimals {
        font-size: 25px;
        margin-top: 0.3em;
        font-weight: 600;
    }

    .price-display .amount {
        font-size: 106px;
        line-height: 1;
        font-weight: 700;
    }

/* Responsividade Mobile */
@media (max-width: 576px) {
    .card-pricing {
        padding: 30px;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .price-display .amount {
        font-size: 50px;
    }

    .price-display .currency,
    .price-display .decimals {
        font-size: 16px;
    }

    .card-text-h1 {
        font-size: 16px;
    }

    .card-text-h2 {
        font-size: 14px;
    }

    .btn-buy {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .plan span.text-sw-xl {
        font-size: 14px;
    }

    .badge-discount {
        font-size: 12px;
        padding: 5px 8px;
    }
}

/* Tablet (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .price-display .amount {
        font-size: 70px;
    }

    .price-display .currency,
    .price-display .decimals {
        font-size: 18px;
    }

    .card-text-h1 {
        font-size: 18px;
    }

    .card-text-h2 {
        font-size: 16px;
    }

    .btn-buy {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .plan span.text-sw-xl {
        font-size: 16px;
    }

    .badge-discount {
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* Notebook (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .price-display .amount {
        font-size: 90px;
    }

    .price-display .currency,
    .price-display .decimals {
        font-size: 20px;
    }
}

/* Desktop (≥993px) */
@media (min-width: 993px) {
    .price-display .amount {
        font-size: 106px;
    }

    .price-display .currency,
    .price-display .decimals {
        font-size: 25px;
    }
}



.card-pricing .plan {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 141.602%; /* 35.4px */
    margin-bottom: 28px;
}

.card-pricing .btn-buy {
    background-color: var(--bs-warning);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 8px;
}

.bg-warning .btn-buy {
    background-color: #000;
    color: var(--bs-warning);
}

.badge-discount {
    background: #000;
    color: var(--bs-warning);
    font-weight: 600;
    padding: 7px 10px;
}

.card-text-h1 {
    font-size: 25px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.card-text-h2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 768px) {
    .card-pricing {
        margin-bottom: 30px;
    }
}




.discount-box {
    max-width: 900px;
    background-image: url(/assets_2025/images/blackfriday/banner02.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 576px) {
    .discount-box h5 {
        font-size: 1.5rem;
    }
}


/* Página de Buy now*/
.btn-outline-warning {
    --bs-btn-color: var(--bs-warning);
    --bs-btn-border-color: var(--bs-warning);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--bs-warning);
    --bs-btn-hover-border-color: var(--bs-warning);
    --bs-btn-focus-shadow-rgb: 255, 193, 7;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: var(--bs-warning);
    --bs-btn-active-border-color: var(--bs-warning);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-warning);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-warning);
    --bs-gradient: none;
}

.bg-granite {
    border-radius: 10.693px;
    background: rgba(0, 0, 0, 0.65);
}

.bg-pricing {
    background: url(/assets_2025/images/fabricator/Initial_BG.png) no-repeat center center;
    background-size: cover;
}

.input-gray {
    border: 0px;
    background: #1C1B1F;
    color: var(--bs-light);
}

.divider {
    position: relative;
}

    .divider::after {
        content: "";
        position: absolute;
        right: 0;
        top: 5%;
        bottom: 10%;
        width: 1px;
        background: #D9D9D9;
    }

.form-control:focus {
    border-color: var(--bs-warning) !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0, .075), 0 0 4px var(--bs-warning) !important;
}

.custom-underline {
    text-decoration: underline;
    text-decoration-color: var(--bs-warning);
}

.validator-inline {
    display: inline !important; /* força aparecer */
    margin-left: 5px;
}

.text-danger {
    color: #f52539 !important;
}

.fs-14 {
    font-size: 14px;
}

.form-control, .form-select {
    background-color: #212529;
    border: 1px solid #495057;
    color: var(--bs-light);
}

    .form-control:focus, .form-select:focus {
        background-color: #212529;
        color: var(--bs-light);
        border-color: var(--bs-warning) !important;
        box-shadow: inset 0 1px 1px rgba(0,0,0, .075), 0 0 4px var(--bs-warning) !important;
    }

.terms-text {
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .terms-text a {
        color: var(--bs-warning);
        font-weight: 600;
        text-decoration: none;
    }