.global {
    position: relative;
    min-height: 100vh;
    height: 100%;
    background-color: #000;
}

.global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/campanhas/black-friday/bg.png?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.bf-hero {
    padding: 40px 0;
    text-align: center;
}

/* Logo */
.bf-logo-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 20px;
    z-index: 100;
}

.pd-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.bf-logo {
    max-width: 280px;
}

/* Box da Oferta */
.bf-offer-box {
    border: 2px solid var(--bs-primary);
    border-radius: 7px 24px;
    max-width: 700px;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 25px 40px;
    position: relative;
    backdrop-filter: blur(10px);
    font-weight: bold;
}

.offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 20px 0 0;
}

.offer-left, .offer-right {
    text-align: center;
}

.offer-left span, .offer-right span {
    color: white;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px;
}

.offer-divider {
    width: 2px;
    height: 130px;
    background: var(--bs-primary);
}

/* Preços e Números */
.price, .days {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price small {
    font-size: 20px;
    color: white;
    font-weight: 500;
    margin-top: 8px;
}

.price strong {
    font-size: 95px;
    color: white;
    line-height: 1;
}

.days strong {
    font-size: 95px;
    color: var(--bs-primary);
    font-weight: 700;
    line-height: 1;
}

.days span {
    color: white;
    font-size: 16px;
}

.offer-footer {
    font-size: 12px;
    color: white;
    opacity: 0.8;
    margin-top: 10px;
}

.offer-footer span {
    color: #00FFB2;
}

/* Contador */
.bf-countdown {
    max-width: 600px;
    margin: 0 auto;
}

.bf-countdown p {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

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

.countdown-item .number {
    color: #00FFB2;
    font-size: 36px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    display: block;
    min-width: 70px;
    line-height: 1;
}

.countdown-item .label {
    color: white;
    font-size: 12px;
    margin-top: 8px;
    display: block;
    font-weight: bold;
}

.countdown-separator {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-top: -20px;
}

/* Botão CTA */
.bf-cta-button {
    background: var(--bs-primary);
    color: white;
    border: none;
    border-radius: 70px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.bf-cta-button:hover {
    background: var(--bs-primary-500);
    color: #00FFB2;
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
    .bf-offer-box {
        margin: 0 15px 40px;
        padding: 20px;
    }

    .offer-content {
        flex-direction: column;
        gap: 30px;
    }

    .offer-divider {
        width: 80%;
        height: 2px;
    }

    .price strong, .days strong {
        font-size: 56px;
    }

    .countdown-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item .number {
        font-size: 28px;
        min-width: 60px;
    }

    .countdown-separator {
        font-size: 28px;
    }
}

/* Sobre a oferta */
.bf-offers-section {
    padding: 60px 0;
    color: white;
}

.bf-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.bf-text {
    flex: 1;
    max-width: 550px;
}

.bf-tag {
    background: var(--bs-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 30px;
}

.bf-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: normal;
    color: white;
}

.bf-text p {
    color: #00FFB2;
    font-size: 18px;
    margin-bottom: 30px;
}

.bf-offers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bf-offer-item {
    border: 2px solid #00FFB2;
    font-weight: bold;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease; /* Transição suave para o efeito de zoom */
}

.bf-offer-item:hover {
    transform: scale(1.05); /* Leve zoom de 5% */
}

.bf-offer-item .offer-price {
    color: #00FFB2;
}

.check-icon {
    color: #00FFB2;
    font-weight: bold;
}

.bf-image {
    flex: 1;
    max-width: 600px;
}

.bf-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsivo */
@media (max-width: 991px) {
    .bf-content {
        flex-direction: column;
        gap: 40px;
    }

    .bf-text {
        max-width: 100%;
    }

    .bf-text h2 {
        font-size: 28px;
        text-align: center;
    }

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

    .bf-tag {
        margin: 0 auto 30px;
        display: table;
    }

    .bf-image {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Seção de Funcionalidades */
.functionalities {
    padding: 80px 0;
}

.functionalities .h2,
.functionalities .h4 {
    color: white!important;
}

.functionalities p {
    color: #0DEDD2;
}
.functionalities img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(72%) saturate(1242%) hue-rotate(127deg) brightness(96%) contrast(98%);
    opacity: 0.9;

}

.functionalities .col-md-6 article {
    border-bottom: 1px solid #E9E9E926;
}

/* Seção de Planos */
.plano_oferta {
    position: relative;
    height: 100%;
}

.plano_oferta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/campanhas/black-friday/bg-plano.png?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.marquee {
    background: var(--bs-primary);
    color: white;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    padding: 15px 0;
    animation: marquee 80s linear infinite;
    font-size: 16px;
    font-weight: 500;
}

.plano_container {
    padding: 60px 0;
}

.plano_oferta_header {
    text-align: center;
}

.plano_oferta_header h2 {
    color: white;
    font-size: 36px;
}

.plano_oferta_header p {
    color: #00FFB2;
    font-size: 18px;
    margin-bottom: 30px;
}

.plano_container .planos {
    padding: 60px 0;
    max-width: 1200px; /* Aumentar a largura máxima */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Espaçamento entre os cards */
}

.plano {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.plano .card {
    background: rgba(0, 0, 0, 0.53);
    border: 2px solid var(--bs-primary);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-height: 100%;
    /* colocando o botão inferior da .card */
    position: relative;
}

@media (max-width: 768px) {
    .plano .card {
        min-height: auto;
    }
}

/* colocando o botão inferior da .card */
.card-body {
    padding-bottom: 60px;
}

.plano-titulo {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.plano-valor {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.plano-valor .valor {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pv-tag {
    background: rgba(0, 0, 0, 0.53);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
}

.pv-tag-periodo {
    color: #0DEDD2;
}

.plano-implantacao {
    margin-bottom: 30px;
}

.plano-implantacao .label {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.plano-implantacao .valores {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.plano-implantacao .valor-original {
    color: white;
    text-decoration: line-through;
    font-size: 20px;
    font-weight: bold;
}

.plano-implantacao .pv-tag {
    color: #0DEDD2;
    font-size: 22px;
    font-weight: 600;
    padding: 5px 15px;
}

.btn-assinar {
    background: var(--bs-primary);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 13px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    /* colocando o botão inferior da .card */
    position: absolute;
    bottom: 30px; /* Distância da parte inferior da .card */
    left: 50%;
    transform: translateX(-50%);
}

.plano-beneficios {
    margin-top: 20px;
    text-align: left;
    padding: 0 10px;
}

.plano-beneficios .label {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

.beneficios-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
}

.beneficios-lista li {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.beneficios-lista li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0DEDD2;
}

.btn-assinar:hover {
    background: var(--bs-primary-500);
    color: white;
    text-decoration: none;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .plano_container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .plano {
        width: 100%;
        max-width: 300px;
    }

    .plan-price .h2 {
        font-size: 36px;
    }
}

/* Seção FAQ */

.faq {
    padding: 80px 0;
    text-align: center;
}

.faq h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 15px;
}

.faq p {
    color: #0DEDD2;
    font-size: 16px;
    margin-bottom: 40px;
}

.faq .accordion {
    max-width: 800px;
    margin: 40px auto;
}

.faq .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 15px;
}

.faq .accordion-header {
    border-bottom: 1px solid #E9E9E926;
    border-radius: 8px;
    overflow: hidden;
}

.faq .accordion-button {
    background: transparent;
    color: white;
    font-size: 18px;
    padding: 20px 25px;
    border: none;
}

.faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: #0DEDD2;
    box-shadow: none;
}

.faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230DEDD2'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 24px;
    transition: transform 0.2s ease;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230DEDD2'%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}

.faq .accordion-body {
    color: white;
    padding: 20px 25px;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    line-height: 1.6;
}

#beneficio--1 {
    display: none;
}
