.text-white { color: #fff;}

.mt-10 {margin-top: 10px;}
.mt-15 {margin-top: 15px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}
.mt-100 {margin-top: 100px;}

.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-100 {margin-bottom: 100px;}

.ml-10 {margin-left: 10px;}
.ml-20 {margin-left: 20px;}
.ml-30 {margin-left: 30px;}
.ml-40 {margin-left: 40px;}
.ml-50 {margin-left: 50px;}

.pt-10 {padding-top: 10px;}
.pt-15 {padding-top: 15px;}
.pt-20 {padding-top: 20px;}
.pt-25 {padding-top: 25px;}
.pt-50 {padding-top: 50px;}
.pt-60 {padding-top: 60px;}
.pt-75 {padding-top: 75px;}
.pt-100 {padding-top: 100px;}

.pb-10 {padding-bottom: 10px;}
.pb-15 {padding-bottom: 15px;}
.pb-20 {padding-bottom: 20px;}
.pb-25 {padding-bottom: 25px;}
.pb-50 {padding-bottom: 50px;}
.pb-60 {padding-bottom: 60px;}
.pb-75 {padding-bottom: 75px;}
.pb-100 {padding-bottom: 100px;}

/* --- CORREÇÕES VISUAIS CONTROLUS --- */

.contact-section { }

/* Forçar contraste na coluna azul */
.contact-section .text-white, 
.contact-section h2, 
.contact-section p {
    color: #ffffff !important;
}

/* Força o espaçamento entre o ícone e o texto nos contatos */
.contact-info-item i {
    margin-right: 12px !important; /* "me-2" manual com prioridade total */
    display: inline-block !important;
    vertical-align: middle !important;
}

.contact-info-item span {
    display: flex !important;
    align-items: center !important;
}

/* Resetar o comportamento de float/inline do tema antigo */
.pulse-form .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px;
    margin-left: -15px;
}

/* Garante que as colunas se comportem como blocos flexíveis */
.pulse-form [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    float: none !important; /* Mata o float do style.css */
    width: 100%; /* Default mobile */
}

/* Em telas maiores, permite que e-mail e assunto fiquem lado a lado */
@media (min-width: 768px) {
    .pulse-form .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Estilo dos campos */
.pulse-form label {
    display: block !important;
    width: 100% !important;
    margin-bottom: 8px !important;
    text-align: left !important;
}

.pulse-form .form-control-pulse {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    height: auto !important;
    padding: 12px 15px !important;
    border: 1px solid #ced4da !important;
    background-color: #fff !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important; /* Remove margens extras do tema */
}

.pulse-form select.form-control-pulse {
    height: 52px !important;
}

/* Botão Enviar Agora */
.btn-contact-submit {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 15px;
    cursor: pointer;
}

.btn-contact-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

/* Ajuste do Header para não bugar o MeanMenu */
.mnmenu-sec {
    position: relative;
    z-index: 99;
}

.logo-container {
    background: #fff;
    padding: 10px;
    display: inline-block;
}
/* Classe para transformar qualquer link em botão do site */
.btn-portal-custom {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color); /* Usa a cor do seu tenant */
    color: #ffffff !important;
    border-radius: 50px; /* Estilo arredondado que você gosta */
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-portal-custom:hover {
    filter: brightness(90%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Estilo do botão personalizado dentro do editor */
.ck-content a.btn-custom-pdf {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8b6842; /* A cor marrom que vi no seu botão 'Salvar' */
    color: #ffffff !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    margin: 10px 0;
    border: none;
    transition: 0.3s;
}

.ck-content a.btn-custom-pdf:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}