/* ============================================
   ESTILO PREMIUM – PLANOS IGARÇOM
   ============================================ */

/* Geral */
.premium-section {
    padding: 80px 0;
}

.pricing-row {
    margin-top: 40px;
}

/* ======== BOXES ========= */
.pricing-box {
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    margin-bottom: 40px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    border-top: 4px solid #f39c12;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ===== Destaque do Plano Professional ===== */
.premium-highlight {
    transform: scale(1.04);
    border-top: 6px solid #e74c3c;
}

.premium-highlight:hover {
    transform: scale(1.07);
}

/* ===== Ícones ===== */
.icon-container {
    text-align: center;
    margin-bottom: 15px;
}

.icon {
    font-size: 52px;
    padding: 18px;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
}

.icon-start {
    background: #f39c12;
}

.icon-pro {
    background: #e74c3c;
}

.icon-premium {
    background: #c0392b;
}

.icon-online {
    background: #8e44ad;
}

/* ===== Preços, textos ===== */
.price {
    font-size: 32px;
    margin: 15px 0 20px;
    font-weight: bold;
}

.highlight-price {
    font-size: 36px;
    color: #e74c3c;
}

.highlight-color {
    color: #e74c3c !important;
}

/* ===== Lista de recursos ===== */
.pricing-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 30px;
}

.pricing-features li {
    font-size: 15px;
    margin-bottom: 10px;
}

.pricing-features i {
    margin-right: 8px;
}

/* ===== Botões ===== */
.btn-main {
    background: #f39c12;
    border: none;
    padding: 12px 20px;
    color: #fff !important;
    font-size: 16px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s;
}

.btn-main:hover {
    background: #d68910;
}

.btn-highlight {
    background: #e74c3c;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-highlight:hover {
    background: #c0392b;
}

.btn-online {
    background: #8e44ad;
    color: #fff !important;
    padding: 14px 28px;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 17px;
}

.btn-online:hover {
    background: #732d91;
}

/* ====== Cards especiais ====== */
.online-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    margin-top: 80px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    border-left: 6px solid #8e44ad;
}

.online-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #8e44ad;
    font-weight: bold;
}

.online-features li i {
    color: #8e44ad !important;
}

/* ===== Ribbon (faixa superior) ===== */
.ribbon {
    position: absolute;
    top: -10px;
    left: 0;
    background: #f39c12;
    padding: 6px 18px;
    color: #fff;
    font-weight: bold;
    border-radius: 0 0 8px 0;
    font-size: 14px;
}

.ribbon-popular {
    background: #e74c3c !important;
}

/* ===== WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 14px;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
    .premium-highlight {
        transform: scale(1);
    }

    .pricing-box:hover {
        transform: none;
    }
}
/* ================================
   CORREÇÃO DE CONTRASTE DO TEMA
   ================================ */

/* Fundo dos cards */
.pricing-box {
    background: #ffffff !important; /* branco */
    color: #333 !important;         /* texto escuro */
}

/* Títulos dos planos */
.pricing-box h3,
.pricing-box h2,
.pricing-box .price {
    color: #333 !important;
}

/* Lista de itens */
.pricing-features li {
    color: #444 !important;
}

/* Ícones de check */
.pricing-features i {
    color: #27ae60 !important; /* verde elegante */
}

/* Ribbon */
.ribbon,
.ribbon-popular {
    color: #fff !important;
}

/* Texto no plano Professional */
.highlight-color {
    color: #e74c3c !important;
}

/* Botões */
.btn-main,
.btn-highlight,
.btn-online {
    color: #fff !important;
}

/* Cor global dentro dos planos */
#pricing,
#pricing * {
    color: #333;
}

/* ============================================
   CORREÇÃO DAS BOLINHAS (ÍCONES REDONDOS)
   ============================================ */

.icon {
    width: 90px !important;
    height: 90px !important;
    line-height: 90px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 40px !important;
    margin: 0 auto 10px auto !important;
    padding: 0 !important;
}

.icon-container {
    text-align: center !important;
}

/* ============================================
   CORREÇÃO E ESTILO DOS BOTÕES
   ============================================ */

.btn-main, .btn-highlight, .btn-online {
    display: block !important;
    text-align: center !important;
    font-size: 17px !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    text-transform: none !important;
}

/* Botão Start */
.btn-main {
    background: #f39c12 !important;
    color: #fff !important;
}
.btn-main:hover {
    background: #d68910 !important;
}

/* Botão Professional */
.btn-highlight {
    background: #e74c3c !important;
    color: #fff !important;
}
.btn-highlight:hover {
    background: #c0392b !important;
}

/* Botão Online */
.btn-online {
    background: #8e44ad !important;
    color: #fff !important;
}
.btn-online:hover {
    background: #732d91 !important;
}

