/* =======================
   VARIAVEIS
======================= */
:root {
    --bg-primary: #050B14;
    --bg-secondary: #0B1A2E;
    --border-soft: #11263F;

    --blue-primary: #00A3FF;
    --blue-neon: #00D1FF;

    --orange-primary: #FF8A00;

    --text-primary: #FFFFFF;
    --text-secondary: #C9D1D9;
}

/* ===================================
   EMPRESARIAL SECTION
=================================== */

.empresarial-section {
    padding: 90px 5%;
    background: var(--bg-primary)
}

/* ===================================
   TÍTULO
=================================== */

.section-title {
    max-width: 760px;
    margin: auto;
    margin-bottom: 55px;
    text-align: center;
}

.section-badge {
    display: inline-block;

    margin-bottom: 18px;
    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.15);

    color: var(--blue-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-primary);
    line-height: 1.7;
}

/* ===================================
   GRID
=================================== */
.planos-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

}

/* ===================================
   CARD
=================================== */

.plano-card {
    position: relative;

    background: #071529;

    border: 1px solid #12345a;
    border-radius: 20px;

    padding: 28px 22px;

    overflow: hidden;

    transition: 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-6px);

    border-color: #00bfff;

    box-shadow: 0 0 25px rgba(0, 191, 255, 0.12);
}

/* ===================================
   DESTAQUES
=================================== */

.destaque {
    border: 1px solid #00bfff;

    box-shadow: 0 0 25px rgba(0, 191, 255, 0.08);
}

.premium {
    border: 1px solid rgba(255, 140, 0, 0.25);
}

.personalizado {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.plano-badge {
    position: absolute;

    top: 16px;
    right: 16px;

    background: linear-gradient(90deg, #00bfff, #007bff);

    color: #fff;

    padding: 7px 12px;

    border-radius: 999px;

    font-size: 0.68rem;
    font-weight: 700;
}

/* ===================================
   TOPO
=================================== */

.plano-top {
    text-align: center;
}

.left-align {
    text-align: left;
}

.plano-icon {
    width: 58px;
    height: 58px;

    margin: auto;
    margin-bottom: 16px;

    border-radius: 16px;

    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
}

.left-align .plano-icon {
    margin-left: 0;
}

.plano-top h3 {
    color: #fff;

    font-size: 1.3rem;

    margin-bottom: 14px;
}

/* ===================================
   PREÇO
=================================== */

.plano-preco {
    margin-bottom: 14px;
}

.plano-preco strong {
    color: #fff;
    font-size: 1.8rem;
}

.plano-preco span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ===================================
   DESCRIÇÃO
=================================== */

.plano-desc {
    color: #94a3b8;

    line-height: 1.5;

    font-size: 0.9rem;
}

/* ===================================
   BOTÃO
=================================== */

.plano-btn {
    display: block;

    width: 100%;

    margin: 24px 0;

    padding: 12px 18px;

    border-radius: 12px;

    background: #ff8c00;
    color: var(--text-primary);

    text-align: center;
    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 600;

    transition: 0.3s ease;
}

.plano-btn:hover {
    transform: scale(1.02);
    background: var(--orange-primary);
    color: var(--text-primary);
}

.destaque-btn {
    background: linear-gradient(90deg, #00bfff, #007bff);
}

.premium-btn {
    background: linear-gradient(90deg, #ff8c00, #ff6600);
}

.custom-btn {
    background: linear-gradient(90deg, #334155, #1e293b);
    border: 1px solid var(--blue-neon);
}

/* ===================================
   DIVIDER
=================================== */

.plano-divider {
    position: relative;

    text-align: center;

    margin-bottom: 22px;
}

.plano-divider::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.08);
}

.plano-divider span {
    position: relative;
    z-index: 2;

    background: #071529;

    padding: 8px 14px;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    color: #94a3b8;

    font-size: 0.72rem;
    font-weight: 700;
}

/* ===================================
   LISTA
=================================== */

.plano-list {
    list-style: none;
    padding: 0;
}

.plano-list li {
    color: var(--text-secondary);

    margin-bottom: 12px;

    line-height: 1.4;
    font-size: 0.88rem;
    list-style-type: none;
}

/* ===================================
   FOOTER
=================================== */

.plano-footer {
    margin-top: 22px;

    padding-top: 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    text-align: center;

    color: var(--text-secondary);
    font-size: 0.78rem;
}

/* ===================================
   HORIZONTAL
=================================== */

.horizontal {
    grid-column: span 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 32px;
}

.horizontal-left {
    width: 320px;
}

.horizontal-right {
    flex: 1;
}

.horizontal .plano-list {
    columns: 2;
    gap: 40px;
}

/* ===================================
   OBSERVAÇÃO
=================================== */
.planos-observacao {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    margin-top: 32px;
    padding: 20px 22px;

    border-radius: 16px;

    background: rgba(255, 140, 0, 0.05);

    border: 1px solid rgba(255, 140, 0, 0.18);

    backdrop-filter: blur(10px);
}

.observacao-icon {
    min-width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(255, 140, 0, 0.12);
    border: 1px solid rgba(255, 140, 0, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange-primary);

    font-size: 1.1rem;
    font-weight: bold;
}

.planos-observacao p {
    color: #cbd5e1;

    font-size: 0.9rem;
    line-height: 1.8;

    margin: 0;
}

/* ===================================
   SVG DECORATIVO PERSONALIZADO
=================================== */

.personalizado {
    position: relative;
    overflow: hidden;
}

.personalizado-bg {
    position: absolute;

    top: 50%;
    right: -120px;

    transform: translateY(-50%);

    width: 420px;
    height: 420px;

    opacity: 0.22;

    pointer-events: none;

    z-index: 0;

    backdrop-filter: blur(4px);
}

.personalizado-bg svg {
    width: 100%;
    height: 100%;

    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.12));
}

/* conteúdo acima do svg */

.personalizado .horizontal-left,
.personalizado .horizontal-right {
    position: relative;
    z-index: 2;
}

/* ===================================
   APENAS DESKTOP
=================================== */

@media (max-width: 1200px) {

    .personalizado-bg {
        display: none;
    }

}

/* ===================================
   RESPONSIVO
=================================== */

@media (max-width: 1100px) {

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .horizontal {
        grid-column: span 1;

        flex-direction: column;
        align-items: flex-start;
    }

    .horizontal-left {
        width: 100%;
    }

    .horizontal .plano-list {
        columns: 1;
    }

}

@media (max-width: 600px) {

    .section-title h2 {
        font-size: 2rem;
    }

    .plano-card {
        padding: 24px 18px;
    }

}