/* ESTILOS CONTENTPILOT */
.contentpilot-destaque {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(0, 255, 8, 0.1);
    border-bottom: 1px solid rgba(0, 255, 8, 0.1);
}

.contentpilot-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.contentpilot-header .subtitulo {
    color: #7d7d7d;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* CARDS DE PLANOS */
.planos-container {
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.plano-box {
    background: #111;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    position: relative;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.plano-box:hover {
    transform: translateY(-10px);
    border-color: #00ff08;
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.1);
}

.destaque-recomendado {
    border: 2px solid #00ff08;
}

.plano-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #252525;
    margin-bottom: 20px;
}

.plano-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.preco {
    color: #00ff08;
    font-size: 2.5rem;
    font-weight: 700;
}

.preco span {
    color: #7d7d7d;
    font-size: 1rem;
}

.plano-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.plano-body li {
    padding: 8px 0;
    color: #ccc;
    display: flex;
    align-items: center;
}

.plano-body i {
    color: #00ff08;
    margin-right: 10px;
    font-size: 1.1rem;
}

.btn-plano {
    display: block;
    background: #00ff08;
    color: #000;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-plano:hover {
    background: #00cc06;
    transform: scale(1.02);
}

.recomendado-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #00ff08;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* DIFERENCIAIS */
.contentpilot-diferenciais {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.diferencial-item {
    text-align: center;
    max-width: 250px;
}

.diferencial-item i {
    font-size: 2.5rem;
    color: #00ff08;
    margin-bottom: 15px;
}

.diferencial-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.diferencial-item p {
    color: #7d7d7d;
    font-size: 0.95rem;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .plano-box {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .contentpilot-diferenciais {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contentpilot-header .titulo {
        font-size: 2rem;
    }

    .preco {
        font-size: 2rem;
    }

}


/* ESTILOS PARA SERVIÇOS DESTAQUE */
.servicos-destaque {
    padding: 60px 4% 80px;
    /* Espaçamento maior na parte inferior */
}

.servico-destaque-box {
    width: 48%;
    background-color: #0f0f0f;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #00ff08;
    transition: all 0.3s;
    margin: 50px 1% 30px;
    text-align: center;
    /* Centraliza todo o conteúdo */
}

.servico-header {
    padding: 25px 20px;
    border-bottom: 1px solid #00ff0833;
}

.servico-header h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.servico-body {
    padding: 25px 20px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-lista {
    width: 100%;
}

.servico-lista p {
    color: #ccc;
    margin: 12px 0;
    padding: 0;
    font-size: 16px;
}

.servico-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #00ff0810;
}

.valor {
    color: #00ff08;
    font-weight: 700;
    font-size: 18px;
}

.btn-servico {
    padding: 8px 25px;
    background-color: #00ff08;
    color: #000;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}

/* EFEITOS HOVER */
.servico-destaque-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 8, 0.2);
}

.btn-servico:hover {
    box-shadow: 0 0 15px #00ff08;
    transform: scale(1.05);
}

/* RESPONSIVO */
@media screen and (max-width: 768px) {
    .servico-destaque-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .servicos-destaque {
        padding: 40px 4% 60px;

    }

    .servicos-destaque h2 {
        margin-bottom: 60px;
        /* Ajuste o valor conforme necessário */
    }

}