/* =======================================================
   ESTILOS DA HOMEPAGE - MARCELO PLAY (TEMA VERDE VIP V2)
======================================================= */

/* 1. Truque para Quebrar a Borda do WHMCS (Largura Total) */
.mp-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 5vw;
    padding-right: 5vw;
    background-color: #f8f9fa;
    padding-bottom: 60px;
}

/* 2. Novo Texto Acima da Dobra (Alinhado) */
.mp-hero-text {
    max-width: 900px;
    margin: 40px auto 30px auto; /* Ajuste de espaço vazio */
    text-align: center;
    color: #1a1a1a;
}
.mp-hero-text h4 {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 10px;
    color: #000000;
    text-transform: uppercase;
}
.mp-hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333333;
}

/* 3. Módulos de Preço (Cards Verdes) */
.mp-pricing-card {
    background: linear-gradient(135deg, #009922 0%, #005f15 100%);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    color: #ffffff;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 100, 20, 0.2);
    border: 2px solid #00b327;
}
.mp-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 100, 20, 0.4);
}

/* 4. Imagem do Topo dos Módulos (280px) */
.mp-img-dispositivos {
    max-width: 250px;
    margin: 0 auto 20px auto;
    display: block;
    opacity: 0.95;
}

/* 5. Título e Preço SEPARADOS (Correção Mobile) */
.mp-pricing-card .plan-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 22px;
    margin-top: 10px;
    text-transform: uppercase; /* Se quiser iniciais maiúsculas, é só apagar esta linha */
}
.mp-pricing-card .plan-price {
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 25px;
    color: #ffffff;
}


/* 6. Textos e Ícones dentro do Módulo */
.mp-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 14px;
    line-height: 2.3;
    margin-bottom: 30px;
    font-weight: 500;
}
.feature-icon {
    color: #a3ffb8;
    margin-right: 10px;
}

/* 7. Botão de Assinar */
.btn-assine-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 30px;
    font-weight: bold;
    padding: 14px 0;
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    border: none;
    transition: background-color 0.3s;
}
.btn-assine-dark:hover {
    background-color: #000000;
    color: #00ff44;
}

/* 8. Gatilhos Mentais (Seção Inferior) */
.mp-triggers {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}
.mp-trigger-box {
    text-align: center;
    padding: 15px;
}
.mp-trigger-icon {
    font-size: 45px;
    color: #009922; /* Ícone Verde para combinar com o layout */
    margin-bottom: 15px;
}
.mp-trigger-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.mp-trigger-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* =======================================================
   9. CORREÇÃO DA BARRA CINZA (BREADCRUMB)
======================================================= */
/* Esmaga a margem abaixo da barra e reduz a altura dela */
.breadcrumb {
    margin-bottom: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Remove o preenchimento invisível do topo do WHMCS */
section#main-body {
    padding-top: 0 !important;
}

/* Puxa o nosso bloco de conteúdo um pouco mais para cima */
.mp-full-width {
    margin-top: -10px !important;
}

/* =======================================================
   10. CORREÇÃO DA BARRA DE ROLAGEM HORIZONTAL
======================================================= */
body {
    overflow-x: hidden !important;
}
