/* Configuração para centralizar o container na página */
.pricing {
    margin: 0 auto;
    min-height: 70vh; /* Altura mínima padrão */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    background: #E9F0F4; /* Fundo cinza claro */
    padding: 20px 20px; /* Padding responsivo nos dois eixos */
    box-sizing: border-box;
}

/* Ajustando a altura dinâmica */
.pricing-banner {
    width: 100%;
    max-width: 55%; /* Limite maior para desktop */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Espaço padrão entre elementos */
    padding-bottom: 20px;
}

/* Header da mensagem de economia */
.banner-header {
    font-size: 1em;
    font-weight: bold;
    color: #0C0C0C;
    background: #8DF598; /* Fundo em verde claro */
    padding: 5px 20px;
    border-radius: 8px 8px 0 0; /* Bordas arredondadas */
    margin-bottom: -20px;
}

.banner-header span {
    display: block;
}

.banner-header b {
    color: #0C0C0C; /* Texto importante destacado */
}

/* Cronômetro */
.vagas-timer {
    margin: 10px 0;
    text-align: center;
    color: #ff6347; /* Vermelho-tomate para números */
    font-weight: bold;
}

#countdown {
    font-size: 1.5em;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

#countdown span {
    display: inline-block;
    min-width: 50px;
    padding: 8px 12px;
    background-color: #222;
    color: #fff;
    border-radius: 5px;
    text-shadow: 0 0 5px #ff6347;
}

/* Caixa de comparação */
.comparison-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.comparison-box {
    background-color: #1A1A1A; /* Fundo escuro */
    padding: 20px 15px;
    border-radius: 10px;
    width: calc(100% - 30px);
    max-width: 900px; /* Tamanho limite para desktop */
}

/* Estilização do conteúdo da comparação */
.comparison-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Bloco "Sem PlugarApp" */
.no-adapta-text, .with-adapta-text, .x {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.no-adapta-text, .with-adapta-text {
    flex-direction: row; /* Alinha texto e preço lado a lado no desktop */
}

.no-adapta-price, .with-adapta-price {
    font-size: 0.9rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
}

.no-adapta-price {
    background: #FF4D4D; /* Fundo vermelho */
    color: white;
}

.with-adapta-price {
    background: #8DF598; /* Fundo verde */
    color: #0C0C0C; /* Texto escuro */
}

/* Banner informativo quando o carrinho está fechado */
.no-timer-banner {
    background: #FFF9C4; /* Fundo amarelo suave */
    color: #4F4F4F;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out; /* Animação suave */
}

.no-timer-banner span {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
}

.no-timer-banner p {
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.5;
}

/* Botão CTA */
.cta {
    margin-top: 20px;
}

.cta-button, .explore-button {
    display: inline-block;
    background: linear-gradient(to right, #00c6ff, #0072ff); /* Gradiente azul */
    color: #fff;
    padding: 15px 10px;
    font-size: 18px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.cta-button:hover, .explore-button:hover {
    transform: translateY(-2px); /* Eleva o botão em hover */
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .pricing-banner {
        max-width: 90%;
        gap: 15px;
    }

    .banner-header {
        font-size: 1rem;
        padding: 10px;
    }

    .no-timer-banner {
        padding: 15px 20px;
    }

    .cta-button {
        width: 100%;
        padding: 15px;
        cursor: pointer;
    }

    .comparison-content {
        flex-direction: column; /* Empilha os blocos no mobile */
        gap: 5px; /* Espaçamento maior entre os blocos */
        text-align: center; /* Centraliza o conteúdo */
    }

    .no-adapta-text, .with-adapta-text {
        flex-direction: column; /* Empilha texto e preço */
        align-items: center; /* Centraliza os itens */
    }

    .no-adapta-price, .with-adapta-price {
        margin-top: 5px; /* Espaçamento entre o texto e o preço */
        display: inline-block; /* Garante o alinhamento */
    }
}

/* Responsividade para smartphones */
@media (max-width: 480px) {
    .banner-header {
        font-size: 0.95rem;
    }

    .pricing {
        padding: 20px 10px;
    }

    .cta-button {
        font-size: 1em;
    }

    .comparison-content {
        gap: 15px; /* Reduz o espaço entre os blocos */
    }

    .no-adapta-text, .with-adapta-text {
        gap: 5px; /* Menor espaço entre os textos */
    }

    .no-adapta-price, .with-adapta-price {
        font-size: 0.85rem; /* Reduz tamanho dos preços */
    }
}