/* 
   MODERN.CSS - Modernização Leve do Peso Saudável
   Este arquivo contém os estilos "Premium" que elevam o visual sem quebrar a estrutura legada.
*/

:root {
    --primary-color: #1f2b7b;
    --secondary-color: #4a5fc1;
    --accent-color: #ffbe00;
    --text-main: #333333;
    --text-sub: #666666;
    --surface: #ffffff;
    --bg-light: #f8f9fa;
    --radius-soft: 12px;
    --shadow-soft: 0 4px 20px rgba(31, 43, 123, 0.08);
}

/* 1. Tipografia Global */
body, h1, h2, h3, h4, h5, h6, p, a, span, label {
    font-family: 'Outfit', sans-serif !important;
}

/* 2. Melhoria nos Botões Originais */
.btn, .header-btn, .hero-btn {
    border-radius: var(--radius-soft) !important;
    text-transform: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 10px rgba(31, 43, 123, 0.15) !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn:hover, .header-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(31, 43, 123, 0.2) !important;
}

/* 3. Cards e Seções de Conteúdo */
.about-caption, .home-blog-single, .card {
    border-radius: var(--radius-soft) !important;
    border: none !important;
    box-shadow: var(--shadow-soft) !important;
    padding: 40px !important;
    background: var(--surface) !important;
}

.alert {
    border-radius: 16px !important;
    border: none !important;
    padding: 30px 50px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    max-width: 700px !important;
    margin: 40px auto !important; /* Centralização real */
    position: relative;
    overflow: hidden;
    background: #fff !important;
    border-left: 5px solid transparent !important;
    transition: transform 0.3s ease;
}

.alert:hover {
    transform: translateY(-3px);
}

.alert-danger {
    border-left-color: #ff5e5e !important;
    background: linear-gradient(to right, #fff5f5, #ffffff) !important;
}

.alert-warning {
    border-left-color: #ffbe00 !important;
    background: linear-gradient(to right, #fffdef, #ffffff) !important;
}

.alert-heading {
    font-weight: 800 !important;
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 4. Modal de Vídeo (Usuário) */
.modal-content {
    border-radius: 16px !important;
    border: none !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
}

.modal-header {
    border-bottom: 1px solid #eee !important;
    padding: 1.5rem !important;
}

.modal-title {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.modal-footer {
    border-top: 1px solid #eee !important;
}

/* 5. Header / Navegação Sticky */
.header-sticky.sticky-bar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.main-menu ul li a {
    font-weight: 500 !important;
    color: var(--primary-color) !important;
    transition: color 0.3s ease !important;
}

.main-menu ul li a:hover {
    color: var(--secondary-color) !important;
}

/* 6. Hero / Slider Section */
.hero__caption h1 {
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    line-height: 1.2 !important;
}

.hero__caption p {
    font-size: 1.2rem !important;
    color: var(--text-main) !important;
}

/* 7. Utilitários de Espaçamento (Adeus <br/> excessivos) */
.mt-space { margin-top: 60px !important; }
.mb-space { margin-bottom: 60px !important; }
.py-space { 
    padding: 120px 0 !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 400px !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero-clean {
    width: 100% !important;
    margin: 0 0 40px 0 !important; /* Zero no topo para 'colar' no header */
    height: 520px; /* Um pouco mais alta para o formato full-width */
    background-size: cover;
    background-position: center;
    box-shadow: none !important; /* Sem sombra para encostar na borda */
}

.hero-title, h1.hero-title {
    color: var(--primary-color) !important;
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    text-align: left; /* Título secundário no conteúdo */
    width: 100%;
    margin-bottom: 15px !important;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    color: var(--text-color) !important;
    margin-bottom: 35px !important;
    max-width: 900px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 8. Ajustes de Imagens */
img {
    border-radius: 12px !important;
}

/* Restaurando o Logo ao Lado Esquerdo (Ajustado para garantir visibilidade) */
.logo {
    display: block !important;
    width: 280px !important; /* Definindo largura fixa para segurança */
    margin: 10px 0 !important;
}

.logo a {
    display: block !important;
}

.logo img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 0 !important;
}

@media (max-width: 991px) {
    .logo {
        width: 180px !important;
    }
}

/* Restauração do Menu ao Lado Direito / Lado do Logo */
.header-area .main-header .row {
    flex-direction: row !important; /* Volta ao padrão Bootstrap de linha */
    gap: 0 !important;
}

.menu-main {
    justify-content: flex-end !important; /* Menu de volta para a direita */
    width: 100% !important;
}

.main-menu {
    float: right !important;
    display: block !important;
    text-align: right !important;
}

.main-menu ul {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 20px;
}

/* 9. Utilidades de Desencaixotamento */
.no-box {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.section-tittle h2 {
    margin-bottom: 0 !important;
}

/* 10. Padronização de Títulos Premium */
.section-title-premium {
    font-size: 2.8rem !important;
    font-weight: 800 !important; /* Peso extra para impacto visual */
    color: #1f2b7b !important; /* Azul FAHZ exato */
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    margin-bottom: 30px !important;
}

.subtitle-premium {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #1f2b7b !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
}

.text-green-fahz {
    color: #83b735 !important;
}

@media (max-width: 991px) {
    .section-title-premium {
        font-size: 2.2rem !important;
    }
}

/* 11. Footer / Rodapé Premium Unificado */
.footer-main {
    background: linear-gradient(90deg, #16518a 0%, #3bae5b 50%, #2f99a3 100%) !important;
    padding: 60px 0 40px 0 !important;
    width: 100% !important;
    text-align: center !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-center {
    width: 100%;
    margin-bottom: 35px;
}

.footer-logo-center img {
    height: auto !important;
    max-height: 130px !important; /* Logo aumentado conforme pedido */
    width: auto !important;
    display: inline-block !important;
    border-radius: 0 !important;
}

.footer-copy-text {
    width: 100%;
    margin: 0 auto;
}

.footer-copy-text p {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    margin: 0 !important;
    opacity: 0.95;
}

.footer-copy-text i {
    color: #ff5e5e !important; /* Coração vermelho suave */
    margin-left: 8px;
    font-size: 1.2rem;
}

/* Estilo Poético e Acolhedor (Citação) */
.poetic-quote {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c333 100%);
    border-radius: 40px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    border-left: 6px solid #1f2b7b;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.poetic-quote:hover {
    transform: translateY(-5px);
}

.poetic-quote::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 10rem;
    color: #1f2b7b;
    opacity: 0.1;
    font-family: serif;
}

.poetic-quote h4 {
    font-family: 'Outfit', sans-serif;
    color: #1f2b7b;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.poetic-quote p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.6rem !important;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto !important;
    font-style: italic;
}

/* 12. Seção de Contatos e Suporte Premium */
.support-section-premium {
    padding: 80px 0 !important;
    background: #ffffff !important;
}

.support-title {
    color: #83b735 !important;
    font-weight: 800 !important;
    font-size: 2.3rem !important;
    margin-bottom: 30px !important;
    border-bottom: 5px solid #1f2b7b;
    display: inline-block;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.support-item-premium {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.support-item-premium:hover {
    transform: translateX(8px);
}

.support-icon-box {
    width: 65px;
    height: 65px;
    background: #1f2b7b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(31, 43, 123, 0.25);
}

.support-text-box h3 {
    color: #1f2b7b;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 3px;
    text-transform: none;
}

.support-text-box p {
    font-weight: 600;
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 0;
}

.support-text-box a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.support-text-box a:hover {
    color: #83b735;
    opacity: 0.8;
}

.support-phones-box p {
    line-height: 1.4;
}

/* Novos Estilos: Chamada de Contato - Design de Alta Conversão */
.support-cta-box {
    border-top: 2px dashed #e0e0e0;
    padding-top: 40px;
    margin-top: 20px;
}

.support-cta-box p {
    font-weight: 600;
    font-size: 1.2rem;
    color: #1f2b7b;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.5;
}

.btn-support-cta {
    background: #1f2b7b !important;
    color: #fff !important;
    padding: 18px 50px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    letter-spacing: 1.5px !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 20px rgba(31, 43, 123, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-block;
}

.btn-support-cta:hover {
    background: #83b735 !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(131, 183, 53, 0.3) !important;
}
