/* ========================================
   ESTILOS UNIFICADOS - UNNO SISTEMA
   ======================================== 
   
   COMO USAR:
   1. Inclua este arquivo em TODAS as páginas PHP
   2. Variáveis globais estão em :root (linha 40)
   3. Cada seção está claramente marcada com o nome da página
   4. Para modificar cores/efeitos globais, altere apenas :root
   
   ESTRUTURA:
   - VARIÁVEIS GLOBAIS (CSS Custom Properties)
   - RESET & BASE (Estilos padrão)
   - HOME.PHP (Seções principais)
   - OUTRAS PÁGINAS (Conforme necessário)
   
   DATAS:
   - Criado: 9 de janeiro de 2026
   - Última atualização: 9 de janeiro de 2026 - v2.1
   
   ======================================== */

/* ========================================
   VARIÁVEIS GLOBAIS - MODIFIQUE AQUI PARA
   PADRONIZAR CORES EM TODA O SISTEMA
   ======================================== */
:root {
    /* ========================================
       CORES PADRONIZADAS - ESQUEMA VERDE AQUA
       ======================================== */
    
    /* Cores Primárias */
    --primary: #4db8a8;
    --primary-light: #6dd3c4;
    --primary-lighter: #a8e6c9;
    
    /* Cores Secundárias */
    --secondary: #378e78;
    --accent: #56ab91;
    
    /* Cores Neutras */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    
    /* GRADIENTES - MODIFICAR AQUI PADRONIZA TODAS AS SEÇÕES */
    --bg-gradient: linear-gradient(135deg, #a8e6c9 0%, #56ab91 50%, #378e78 100%);
    --navbar-gradient: linear-gradient(90deg, #4db8a8 0%, #378e78 100%);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamento Padrão */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 40px;
    --spacing-2xl: 80px;
    
    /* Tamanhos de Container */
    --container-max-width: 1200px;
    --container-padding: 40px;
    
    /* Efeitos de Glassmorphism */
    --glass-blur: blur(25px);
    --glass-blur-intense: blur(40px);
    --glass-saturation: saturate(180%);
    --glass-saturation-intense: saturate(200%);
    
    /* ================================================
       BACKGROUNDS GLOBAIS - MODIFIQUE AQUI!
       Altere estes valores para mudar TODOS os backgrounds
       de uma só vez em todo o sistema
       ================================================ */
    --bg-navbar: linear-gradient(90deg, #4db8a8 0%, #378e78 100%);
    --bg-sidebar: linear-gradient(180deg, #4db8a8 0%, #378e78 100%);
    --bg-header: linear-gradient(135deg, #4db8a8 0%, #378e78 100%);
    --bg-section-gradient: linear-gradient(135deg, #4db8a8 0%, #378e78 100%);
    --bg-button-primary: linear-gradient(135deg, #4db8a8 0%, #378e78 100%);
    --bg-welcome: linear-gradient(135deg, #4db8a8 0%, #378e78 100%);
    --bg-hero: linear-gradient(135deg, #4db8a8 0%, #378e78 100%);
    --bg-footer: #f5f5f5;
    --bg-card: #fff;
    --bg-input: #fff;
    --bg-tab-active: #fff;
    --bg-tab-inactive: #f5f5f5;
    
    /* Backgrounds com Hover/Estados */
    --bg-navbar-hover: rgba(255, 255, 255, 0.15);
    --bg-sidebar-hover: rgba(255, 255, 255, 0.15);
    --bg-card-hover: rgba(102, 187, 106, 0.02);
    --bg-input-focus: rgba(102, 187, 106, 0.05);
    --bg-button-secondary: #fff;
    --bg-button-outline: #fff;
    
    /* Alerts */
    --bg-alert-success: #e8f5e9;
    --bg-alert-error: #ffebee;
    --bg-alert-warning: #fff3e0;
    --bg-alert-info: #e3f2fd;
    
    /* ================================================
       CORES DOS CARDS - MODIFIQUE AQUI PARA MUDAR
       TODOS OS CARDS DAS SEÇÕES DE UMA VEZ!
       ================================================ */
    /* Cor da seção (fundo verde) */
    --card-bg-color-color: #4db8a8;
    
    /* Opacidade do card em estado normal (0.35 = 35%) */
    --card-bg-color-opacity: 0.45;
    
    /* Opacidade do card em hover (0.42 = 42%) */
    --card-hover-opacity: 0.55;
    
    /* Opacidade da borda */
    --card-border-opacity: 0.3;
    
    --card-bg-color: rgba(77, 184, 168, 0.45);
    --card-bg-color-hover: rgba(77, 184, 168, 0.55);
    --card-border: rgba(255, 255, 255, 0.4);
}

/* ========================================
   RESET & ESTILOS BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #a8e6c9 0%, #56ab91 50%, #378e78 100%);
    min-height: 100vh;
    color: #fff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   HOME.PHP - PÁGINA INICIAL
   ======================================== */

/* --- NAVBAR --- */
.navbar {
    background: linear-gradient(90deg, #4db8a8 0%, #378e78 100%) !important;
    padding: 8px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    box-shadow: 0 2px 8px rgba(77, 184, 168, 0.2) !important;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
}
.navbar-mobile-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
    border: 2px solid rgba(255,255,255,0.5);
    font-size: 1.1em;
    color: #fff;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}
.navbar-mobile-toggle:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.25) 100%);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.navbar-mobile-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.navbar-mobile-menu {
    display: none !important;
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #4db8a8 0%, #378e78 100%);
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    z-index: 99;
    width: 100%;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: all 0.3s ease;
    max-height: 0 !important;
    overflow: hidden !important;
}
.navbar-mobile-menu.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 500px !important;
}
.navbar-mobile-menu a {
    padding: 12px 16px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
}
.navbar-mobile-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
}
.navbar a {
    color: #fff;
    text-decoration: none;
}
.navbar .logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.navbar .logo-img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav-section-links {
    display: none;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0;
}

.nav-section-links a {
    margin: 0;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    white-space: nowrap;
}
.nav-section-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0bsolute;
    right: 20px;
}
.nav-links a {
    margin: 0;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
}
.nav-links .btn-login {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 18px !important;
    border-radius: 6px;
}
.nav-links .btn-login:hover {
    background: rgba(255,255,255,0.3) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.hero {
    text-align: center;
    padding: 80px 20px 60px 20px;
    color: #fff;
    background: 
        linear-gradient(135deg, #4db8a8 0%, #3ba893 25%, #2b9a84 50%, #1f8c76 75%, #0f7e68 100%),
        linear-gradient(45deg, #5cc4b0 0%, #2d8a78 100%);
    background-blend-mode: overlay;
    box-shadow: 
        0 20px 60px rgba(45, 106, 92, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(15, 126, 104, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(45, 138, 120, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.03) 100%);
    pointer-events: none;
}
.hero h1 {
    font-size: 3.2em;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
}
.hero .subtitle {
    font-size: 1.25em;
    max-width: 600px;
    margin: 0 auto 20px auto;
    color: rgba(255,255,255,0.98);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}
.hero p {
    font-size: 1.05em;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    padding: 14px 36px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255,255,255,0.3);
    transition: all 0.3s;
    min-height: 44px;
    border: 2px solid rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(10px);
}
.btn-cta:hover {
    background: rgba(255,255,255,0.35) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.6) !important;
}
.btn-secondary {
    display: inline-flex;
    background: transparent !important;
    color: #fff !important;
    padding: 14px 36px !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.9) !important;
}
.section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 40px auto;
    background: var(--bg-gradient);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
    position: relative;
    overflow: hidden;
}
.section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.4em;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.95);
    font-size: 1.15em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.section p {
    color: rgba(255,255,255,0.95);
    font-size: 1.08rem;
    line-height: 1.9;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.servico-card {
    background: rgba(77, 184, 168, 0.45);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 40px rgba(255,255,255,0.6), inset 1px 1px 0 rgba(255,255,255,0.9), inset -1px -1px 0 rgba(0,0,0,0.15);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.4);
    display: block;
    backdrop-filter: blur(40px) saturate(200%);
    position: relative;
    overflow: hidden;
}
.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 25%, transparent 60%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
    border-radius: 14px;
}
.servico-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,1), transparent);
    pointer-events: none;
}
.servico-card > * {
    position: relative;
    z-index: 1;
}
.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.7);
    background: var(--card-bg-color-hover);
}
.servico-card .icon {
    font-size: 3.5em;
    margin-bottom: 16px;
    line-height: 1;
}
.servico-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.35em;
    font-weight: 600;
}
.servico-card p {
    color: rgba(255,255,255,0.95);
    font-size: 0.95em;
}
.apoio {
    border-left: 5px solid var(--primary);
    padding: 28px 32px;
    margin: 40px auto;
    max-width: 700px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary);
}
.apoio h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 600;
}
.apoio p {
    color: var(--text-dark);
    font-size: 1rem;
}
.apoio .cvv {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary);
    margin-top: 16px;
}
.redes {
    text-align: center;
    padding: 40px 20px;
}
.redes h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
}
.redes a {
    display: inline-block;
    margin: 0 12px;
    font-size: 2em;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}
.redes a:hover {
    transform: scale(1.2) translateY(-3px);
}

/* SEÇÃO DE ESTATÍSTICAS */
.estatisticas {
    padding: 80px 40px;
    max-width: 1200px;
    background: var(--bg-gradient);
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
    position: relative;
    overflow: hidden;
}
.estatisticas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.estatisticas::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.estatisticas h2 {
    color: #fff;
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.stat-card {
    padding: 32px 24px;
    background: rgba(77, 184, 168, 0.45);
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.4);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 25%, transparent 60%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
    pointer-events: none;
    border-radius: 10px;
}
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    pointer-events: none;
}
.stat-card > * {
    position: relative;
    z-index: 1;
}
.stat-card:hover {
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-4px);
    background: var(--card-bg-color-hover);
}
.stat-number {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.stat-label {
    font-size: 1.05em;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* SEÇÃO DE DIFERENCIAIS */
.diferenciais {
    padding: 80px 40px;
    max-width: 1200px;
    background: var(--bg-gradient);
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
    position: relative;
    overflow: hidden;
}
.diferenciais::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.diferenciais::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.diferenciais h2 {
    color: #fff;
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}
.diferencial-item {
    padding: 28px 24px;
    background: rgba(77, 184, 168, 0.40);
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.5);
    border-left: 5px solid rgba(255,255,255,0.95);
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 0 30px rgba(255,255,255,0.45), inset 1px 1px 0 rgba(255,255,255,0.7);
    backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    overflow: hidden;
}
.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 30%, transparent 70%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
    border-radius: 10px;
}
.diferencial-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}
.diferencial-item > * {
    position: relative;
    z-index: 1;
}
.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    border-left-color: rgba(255,255,255,1);
    background: var(--card-bg-color-hover);
}
.diferencial-item .icon {
    font-size: 2.8em;
    margin-bottom: 12px;
    line-height: 1;
}
.diferencial-item h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.25em;
    font-weight: 600;
}
.diferencial-item p {
    color: rgba(255,255,255,0.95);
    font-size: 0.95em;
    line-height: 1.6;
}

/* SEÇÃO DE DEPOIMENTOS */
.depoimentos {
    padding: 80px 40px;
    max-width: 1200px;
    background: var(--bg-gradient);
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
    position: relative;
    overflow: hidden;
}
.depoimentos::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.depoimentos::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.depoimentos h2 {
    color: #fff;
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.depoimentos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.depoimento-card {
    background: var(--card-bg-color-color);;
    padding: 28px 24px;
    border-radius: 12px;
    border: 2px solid var(--card-border);
    border-top: 4px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 25%, transparent 60%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
    border-radius: 10px;
}
.depoimento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}
.depoimento-card > * {
    position: relative;
    z-index: 1;
}
.depoimento-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    transform: translateY(-4px);
    background: var(--card-bg-color-hover);
}
.stars {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.depoimento-text {
    color: rgba(255,255,255,0.95);
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.depoimento-autor {
    font-weight: 600;
    color: #fff;
    font-size: 0.9em;
}

/* SEÇÃO FAQ */
.faq {
    padding: 80px 40px;
    max-width: 1200px;
    background: var(--bg-gradient);
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
    position: relative;
    overflow: hidden;
}
.faq::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.faq::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.faq h2 {
    color: #fff;
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.faq-item {
    background: rgba(255,255,255,0.12);
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(255,255,255,0.35), inset 1px 1px 0 rgba(255,255,255,0.6);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(25px) saturate(180%);
    position: relative;
}
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 30%, transparent 70%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
    z-index: 1;
}
.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
    z-index: 1;
}
.faq-question {
    background: rgba(255,255,255,0.15);
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s;
}
.faq-question:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.faq-question h4 {
    color: #fff;
    font-size: 1.05em;
    margin: 0;
    font-weight: 600;
}
.faq-toggle {
    color: #fff;
    font-size: 1.2em;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    background: rgba(255,255,255,0.08);
}
.faq-answer.show {
    padding: 16px 20px;
    max-height: 300px;
}
.faq-toggle.active {
    transform: rotate(180deg);
}

/* SEÇÃO COMO FUNCIONA */
.como-funciona {
    padding: 80px 40px;
    max-width: 1200px;
    background: var(--bg-gradient);
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
    position: relative;
    overflow: hidden;
}
.como-funciona::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.como-funciona::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.como-funciona h2 {
    color: #fff;
    text-align: center;
    font-size: 2.4em;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.como-funciona .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.95);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.step-card {
    background: rgba(255,255,255,0.12);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(255,255,255,0.35), inset 1px 1px 0 rgba(255,255,255,0.6);
    position: relative;
    backdrop-filter: blur(25px) saturate(180%);
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 30%, transparent 70%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
    border-radius: 10px;
}
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}
.step-card > * {
    position: relative;
    z-index: 1;
}
.step-card:hover {
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15), inset 0 0 35px rgba(255,255,255,0.45), inset 1px 1px 0 rgba(255,255,255,0.8);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(30px) saturate(200%);
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 auto 16px;
}
.step-icon {
    width: 80px;
    height: 80px;
    margin: 12px auto;
    opacity: 0.9;
}
.step-card h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 12px;
    font-weight: 600;
}
.step-card p {
    color: rgba(255,255,255,0.95);
    font-size: 0.95em;
    line-height: 1.6;
}
.step-arrow {
    display: none;
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    font-size: 1.8em;
}

@media (min-width: 769px) {
    .steps-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .step-card:not(:last-child) .step-arrow {
        display: block;
    }
}

/* --- ANIMAÇÕES --- */
.svg-animated {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.svg-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* --- WIDGET CVV --- */
.cvv-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 98;
    background: var(--bg-gradient);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(102, 187, 106, 0.3);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    max-width: 320px;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.cvv-widget.collapsed {
    max-width: auto;
    padding: 16px 20px;
    border-radius: 50px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.cvv-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 187, 106, 0.4);
}

.cvv-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    white-space: nowrap;
    width: 100%;
    cursor: pointer;
}

.cvv-content {
    margin-top: 16px;
    max-height: 500px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.cvv-widget.collapsed .cvv-content {
    display: none;
}

.cvv-widget h4 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cvv-widget p {
    color: rgba(255,255,255,0.95);
    font-size: 0.9em;
    margin-bottom: 12px;
    line-height: 1.5;
}

.cvv-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.cvv-number:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.05);
}

.cvv-link {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.4);
}

.cvv-link:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

.cvv-toggle-arrow {
    margin-left: 8px;
    transition: transform 0.3s;
    font-size: 0.9em;
}

.cvv-widget .cvv-toggle-arrow {
    transform: rotate(0deg);
}

.cvv-widget.collapsed .cvv-toggle-arrow {
    transform: rotate(-90deg);
}

/* --- CTA SECTION --- */
.cta-section {
    background: var(--bg-gradient);
    padding: 70px 20px;
    text-align: center;
    color: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
}

.cta-section h2 {
    color: white;
    font-size: 2.2em;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    background: rgba(255,255,255,0.25) !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.4) !important;
}

.cta-primary:hover {
    background: rgba(255,255,255,0.35) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(255,255,255,0.6) !important;
}

.cta-secondary {
    display: inline-flex;
    background: transparent !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
    border-radius: 8px !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.9) !important;
}

/* --- APOIO / SUPORTE --- */
.apoio {
    background: rgba(255,255,255,0.12);
    border-left: 5px solid var(--primary);
    padding: 28px 32px;
    margin: 40px auto;
    max-width: 700px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: var(--glass-blur) var(--glass-saturation);
}

.apoio h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 600;
}

.apoio p {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
}

.apoio .cvv {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    margin-top: 16px;
}

/* --- REDES SOCIAIS --- */
.redes {
    text-align: center;
    padding: 40px 20px;
}

.redes h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
}

.redes a {
    display: inline-block;
    margin: 0 12px;
    font-size: 2em;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.redes a:hover {
    transform: scale(1.2) translateY(-3px);
    filter: brightness(1.1);
}
/* --- FOOTER --- */
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }
    
    .section h2,
    .estatisticas h2,
    .diferenciais h2,
    .depoimentos h2,
    .faq h2,
    .como-funciona h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .nav-links {
        gap: 4px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none !important;
    }
    
    .cvv-widget {
        bottom: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}

/* ========================================
   UTILITIES / HELPERS
   ======================================== */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-muted {
    color: rgba(255,255,255,0.7);
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-6 {
    margin-top: 3rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.rounded-lg {
    border-radius: 12px;
}

.rounded-2xl {
    border-radius: 20px;
}

.shadow-lg {
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
}

.transition {
    transition: all 0.3s ease;
}

/* ========================================
   OUTRAS PÁGINAS - CSS CONSOLIDADO
   ======================================== */

/* ========================================
   VARIÁVEIS ADICIONAIS PARA OUTRAS PÁGINAS
   ======================================== */
:root {
    /* Cores de Status (Agendamentos) */
    --status-pendente: #ffa726;
    --status-confirmado: #4db8a8;
    --status-cancelado: #ef5350;
    --status-concluido: #78909c;
    --status-pendente-bg: #fff3e0;
    --status-confirmado-bg: #e8f5e9;
    --status-cancelado-bg: #ffebee;
    --status-concluido-bg: #eceff1;
    
    /* Cores de Especialidades */
    --especialidade-psicologo-bg: #e3f2fd;
    --especialidade-psicologo-text: #1565c0;
    --especialidade-nutricionista-bg: #fff3e0;
    --especialidade-nutricionista-text: #ef6c00;
    
    /* Cores de Notificação */
    --notif-confirmado: #4caf50;
    --notif-cancelado: #f44336;
    --notif-avaliacao: #ffc107;
    --notif-favorito: #e91e63;
    --notif-sistema: #2196f3;
    
    /* Redes Sociais */
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;
}

.navbar {
    background: linear-gradient(90deg, #4db8a8 0%, #378e78 100%) !important;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(77, 184, 168, 0.2) !important;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.navbar .nav-links,
.navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.navbar a:hover {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
}

.navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #4db8a8 0%, #378e78 100%);
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    z-index: 99;
}

.navbar-menu.active {
    display: flex;
}

/* ========================================
   SIDEBAR (Admin)
   ======================================== */
.sidebar {
    width: 250px;
    min-height: 100vh;
    background: var(--bg-sidebar);
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar-header h2 {
    color: #fff;
    font-size: 1.5em;
    margin: 0;
    font-weight: 700;
}

.sidebar-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85em;
    margin-top: 4px;
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 14px 24px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(255,255,255,0.15);
    border-left-color: rgba(255,255,255,0.8);
    color: #fff;
}

.sidebar-menu a i {
    width: 20px;
    text-align: center;
    font-size: 1em;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 16px 0;
}

/* ========================================
   MAIN CONTENT & CONTAINER
   ======================================== */
.main-content {
    margin-left: 250px;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, #4db8a8 0%, #378e78 100%);
    color: white;
    padding: 60px 20px 40px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(77, 184, 168, 0.25);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    color: #fff;
    letter-spacing: -0.5px;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.95);
}

/* ========================================
   GRIDS
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stats-grid,
.profissionais-grid,
.grid,
.acoes {
    display: grid;
    gap: 20px;
}

.stats-grid,
.profissionais-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========================================
   CARDS
   ======================================== */
.card,
.prof-card,
.profile-card,
.acao-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 25px;
    transition: all 0.3s;
}

.card:hover,
.prof-card:hover,
.acao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(77, 184, 168, 0.2);
}

/* Estilo específico para cards de profissionais */
.prof-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    margin-bottom: 20px;
    padding: 0;
    background: linear-gradient(135deg, #8ae7d3 0%, #b7f1e5 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(77, 184, 168, 0.15);
    transition: all 0.3s ease;
    max-width: 300px;
    border: 2px solid rgba(77, 184, 168, 0.1);
}

.prof-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(77, 184, 168, 0.25);
    border-color: var(--primary);
}

.prof-foto,
.prof-foto-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 0;
    object-fit: contain;
    background: linear-gradient(135deg, #4db8a8 0%, #2d8b7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
}

.prof-info {
    flex: 1;
    padding: 24px;
    width: 100%;
}

.prof-info h3 {
    color: #378e78;
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.prof-especialidade {
    display: block;
    padding: 4px 0;
    border-radius: 0;
    font-size: 0.85em;
    font-weight: 700;
    color: #4db8a8;
    background: none;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prof-info p {
    color: #666;
    font-size: 0.9em;
    margin: 8px 0;
    line-height: 1.5;
}

.prof-abordagens,
.prof-sobre {
    background: rgba(77, 184, 168, 0.08);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid #4db8a8;
    font-size: 0.85em !important;
    text-align: left;
}

.btn-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
    padding: 12px 18px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9em !important;
    transition: all 0.3s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.btn-whatsapp:hover {
    background: #1ebd59 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.prof-info a {
    transition: all 0.3s ease;
    background: #4db8a8 !important;
    color: #fff !important;
    padding: 12px 18px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.prof-info a:hover {
    transform: translateY(-2px);
    background: #378e78 !important;
    box-shadow: 0 4px 12px rgba(77, 184, 168, 0.3);
}

.stat-card .icon,
.prof-card .icon,
.acao-card .icon {
    font-size: 2.5em;
    margin-bottom: 12px;
    color: #4db8a8;
}

.stat-card h3,
.acao-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-card p,
.card p,
.acao-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* ========================================
   PROFILE CARD & INFO
   ======================================== */
.profile-card {
    text-align: center;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #4db8a8;
}

.profile-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4db8a8 0%, #378e78 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3em;
}

.profile-info {
    flex: 1;
    min-width: 250px;
}

.profile-info h1,
.profile-info h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 8px;
}

.especialidade,
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    margin: 5px;
}

.especialidade.psicologo,
.badge.psicologo {
    background: var(--especialidade-psicologo-bg);
    color: var(--especialidade-psicologo-text);
}

.especialidade.nutricionista,
.badge.nutricionista {
    background: var(--especialidade-nutricionista-bg);
    color: var(--especialidade-nutricionista-text);
}

/* ========================================
   RATING & STARS
   ======================================== */
.rating,
.stars {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.rating-text {
    color: #666;
    font-size: 0.9em;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn,
button,
input[type="button"],
input[type="submit"] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
}

.btn-primary,
.btn.primary,
button.btn-primary,
input[type="submit"] {
    background: var(--bg-button-primary);
    color: #fff;
}

.btn-primary:hover,
.btn.primary:hover,
button.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}

.btn-secondary,
.btn.secondary,
button.btn-secondary {
    background: #fff;
    color: #4db8a8;
    border: 2px solid #4db8a8;
}

.btn-secondary:hover,
.btn.secondary:hover {
    background: #4db8a8;
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: #4db8a8;
    border: 2px solid #4db8a8;
}

.btn-outline:hover {
    background: #4db8a8;
    color: #fff;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
}

.btn-favorito {
    background: #ffebee;
    color: #e53935;
    border: 2px solid #e53935;
}

.btn-favorito:hover {
    background: #e53935;
    color: #fff;
}

.btn-favorito.active {
    background: #e53935;
    color: #fff;
}

.btn-ativar,
.btn-inativar,
.btn-action {
    padding: 8px 16px;
    font-size: 0.9em;
}

.btn-ativar {
    background: #4caf50;
    color: #fff;
}

.btn-ativar:hover {
    background: #388e3c;
}

.btn-inativar {
    background: #f44336;
    color: #fff;
}

.btn-inativar:hover {
    background: #d32f2f;
}

.btn-voltar {
    background: #e0e0e0;
    color: #333;
}

.btn-voltar:hover {
    background: #bdbdbd;
}

/* ========================================
   ALERTS & STATUS
   ======================================== */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert.success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.alert.error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

.alert.warning {
    background: #fff3e0;
    color: #ef6c00;
    border-left: 4px solid #ffa726;
}

.alert.info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #2196f3;
}

/* ========================================
   STATUS BADGES (Agendamentos)
   ======================================== */
.status-badge,
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.status-badge.pendente,
.badge.pendente {
    background: var(--status-pendente-bg);
    color: var(--status-pendente);
}

.status-badge.confirmado,
.badge.confirmado {
    background: var(--status-confirmado-bg);
    color: var(--status-confirmado);
}

.status-badge.cancelado,
.badge.cancelado {
    background: var(--status-cancelado-bg);
    color: var(--status-cancelado);
}

.status-badge.concluido,
.badge.concluido {
    background: var(--status-concluido-bg);
    color: var(--status-concluido);
}

.notif-badge {
    display: inline-block;
    min-width: 24px;
    padding: 4px 8px;
    background: #f44336;
    color: #fff;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 700;
    text-align: center;
}

/* ========================================
   AGENDAMENTOS
   ======================================== */
.agendamento-item {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #999;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.agendamento-item.pendente {
    border-left-color: var(--status-pendente);
}

.agendamento-item.confirmado {
    border-left-color: var(--status-confirmado);
}

.agendamento-item.cancelado {
    border-left-color: var(--status-cancelado);
}

.agendamento-item.concluido {
    border-left-color: var(--status-concluido);
}

.agendamento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.agendamento-header h4 {
    color: #333;
    margin: 0;
    font-size: 1.1em;
}

.agendamento-info {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 12px;
}

.agendamento-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ========================================
   HORÁRIOS
   ======================================== */
.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.horario-badge,
.horario-row {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.horario-badge:hover,
.horario-row:hover {
    border-color: #4db8a8;
    background: rgba(102, 187, 106, 0.05);
}

.horario-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.remove-btn {
    background: #f44336;
    color: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8em;
}

.add-horario-btn {
    background: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 16px;
}

/* ========================================
   AVALIAÇÕES
   ======================================== */
.avaliacao-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-top: 3px solid #4db8a8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.avaliacao-header strong {
    color: #333;
    font-size: 1em;
}

.avaliacao-header .stars {
    color: #ffc107;
    font-size: 1.1em;
}

.avaliacao-comentario {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4db8a8;
    box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* ========================================
   TABS
   ======================================== */
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    background: #f5f5f5;
    border: none;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab:hover {
    background: #efefef;
    color: #333;
}

.tab.active {
    background: #fff;
    color: #4db8a8;
    border-bottom-color: #4db8a8;
}

.tab .badge {
    margin-left: 8px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 4em;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state-icon i {
    display: block;
}

.empty-state-text {
    color: #999;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.empty-state .btn {
    margin-top: 20px;
}

/* ========================================
   NOTIFICAÇÕES
   ======================================== */
.notif-item {
    background: #fff;
    padding: 16px;
    border-left: 4px solid #4db8a8;
    margin-bottom: 12px;
    border-radius: 6px;
    display: flex;
    gap: 16px;
}

.notif-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
}

.notif-content h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1em;
}

.notif-content p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

/* ========================================
   SEÇÕES
   ======================================== */
.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #ffffff;
    font-size: 1.8em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffffff;
}

/* ========================================
   FILTROS
   ======================================== */
.filtros {
    display: flex;
    gap: 16px;
    margin: -30px auto 40px;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.filtros a {
    padding: 10px 24px;
    border-radius: 25px;
    background: #f5f5f5;
    color: #4db8a8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #4db8a8;
}

.filtros a:hover,
.filtros a.ativo {
    background: #4db8a8;
    color: #fff;
    border-color: #4db8a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 184, 168, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(90deg, #4db8a8 0%, #378e78 100%);
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    margin-top: 60px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.15);
}

.footer a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========================================
   WELCOME & HERO
   ======================================== */
.welcome {
    background: var(--bg-welcome);
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.welcome h1 {
    font-size: 2em;
    margin-bottom: 12px;
    color: #fff;
}

.welcome p {
    font-size: 1.1em;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    /* NAVBAR MOBILE */
    .navbar {
        padding: 12px 2px !important;
        justify-content: center !important;
        position: relative;
    }
    
    .navbar .logo {
        flex: none !important;
    }
    
    .navbar-mobile-toggle {
        display: block !important;
        width: 50px !important;
        height: 50px !important;
        padding: 8px 2px !important;
        font-size: 1.2em !important;
        border-radius: 8px !important;
        position: absolute !important;
        right: 8px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .navbar .logo-img {
        height: 80px !important;
    }
    
    .nav-section-links {
        display: none;
    }
    
    .navbar-mobile-menu {
        display: flex !important;
    }
    
    .sidebar {
        width: 60px;
    }
    
    .sidebar-header h2,
    .sidebar-header p,
    .sidebar-menu span {
        display: none;
    }
    
    .sidebar-menu a {
        justify-content: center;
        padding: 16px;
    }
    
    .main-content {
        margin-left: 60px;
    }
    
    .header h1 {
        font-size: 1.8em;
    }
    
    .profile-header {
        flex-direction: column;
    }
    
    .stats-grid,
    .profissionais-grid,
    .grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .navbar-toggle {
        display: block;
    }
}

/* ========================================
   CARDS DE RESPONSÁVEIS
   ======================================== */
.responsaveis-section {
    background: var(--bg-gradient);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.3);
    margin: 40px auto;
    max-width: 1200px;
}

.responsaveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
    justify-items: center;
}

.responsavel-card {
    background: linear-gradient(135deg, #8ae7d3 0%, #b7f1e5 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(77, 184, 168, 0.15);
    transition: all 0.3s ease;
    max-width: 480px;
    border: 2px solid rgba(77, 184, 168, 0.1);
}

.responsavel-card-nutricao {
    background: linear-gradient(135deg, #8ae7d3 0%, #b7f1e5 100%);
    border: 2px solid rgba(255, 193, 7, 0.15);
}

.responsavel-card-nutricao:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
}

.responsavel-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(77, 184, 168, 0.25);
    border-color: var(--primary);
}

.responsavel-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.responsavel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: white;
}

.responsavel-content {
    padding: 30px 24px;
    text-align: center;
}

.responsavel-content h3 {
    margin: 0 0 8px 0;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
}

.responsavel-especialidade {
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}

.responsavel-frase {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin: 0 0 18px 0;
    line-height: 1.5;
    padding: 12px;
    background: rgba(77, 184, 168, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
}

.responsavel-crn,
.responsavel-crp {
    color: var(--text-dark);
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

.responsavel-profissao {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.responsavel-detalhes {
    background: rgba(77, 184, 168, 0.08);
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    font-size: 12px;
    line-height: 1.5;
    max-height: 150px;
    overflow-y: auto;
}

.detalhe-item {
    margin-bottom: 10px;
}

.detalhe-item:last-child {
    margin-bottom: 0;
}

.detalhe-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detalhe-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 11px;
}

/* ========================================
   RESPONSIVO - CARDS DE RESPONSÁVEIS
   ======================================== */
@media (max-width: 768px) {
    .responsaveis-section {
        padding: 40px 20px;
    }

    .responsaveis-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .responsavel-card {
        max-width: 100%;
    }

    .responsavel-image {
        height: 250px;
    }

    .responsavel-content {
        padding: 25px 20px;
    }

    .responsavel-content h3 {
        font-size: 18px;
    }
}

/* ========================================
   RESPONSIVO - BUSCAR PROFISSIONAIS
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    /* Cards de profissionais em grid responsivo */
    div[style*="display: grid; grid-template-columns: repeat(auto-fill, minmax(280px"] {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
        gap: 20px !important;
    }

    .prof-card {
        max-width: 100%;
    }

    .prof-foto,
    .prof-foto-placeholder {
        height: 260px;
        font-size: 3rem;
    }

    .prof-info {
        padding: 16px;
    }

    .prof-info h3 {
        font-size: 1.1rem;
    }

    .prof-abordagens,
    .prof-sobre {
        font-size: 0.8em !important;
        padding: 10px !important;
    }

    .prof-especialidade {
        font-size: 0.75em;
    }

    /* Botões responsivos */
    .prof-info a {
        padding: 10px 14px !important;
        font-size: 0.85em !important;
    }

    .btn-whatsapp {
        padding: 10px 14px !important;
        font-size: 0.85em !important;
    }

    /* Header responsivo */
    h2 {
        font-size: 1.5em !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }

    /* Cards em coluna única no mobile */
    div[style*="display: grid; grid-template-columns: repeat(auto-fill, minmax(280px"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .prof-card {
        max-width: 100%;
    }

    .prof-foto,
    .prof-foto-placeholder {
        height: 240px;
        font-size: 2.5rem;
    }

    .prof-info {
        padding: 12px;
    }

    .prof-info h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .prof-abordagens,
    .prof-sobre {
        font-size: 0.75em !important;
        padding: 8px !important;
        max-height: 100px;
    }

    .prof-especialidade {
        font-size: 0.7em;
        margin-bottom: 8px;
    }

    /* Botões em coluna mobile */
    div[style*="display: flex; gap: 12px; margin-top: 16px"] {
        flex-direction: column !important;
    }

    .prof-info a,
    .btn-whatsapp {
        width: 100% !important;
        padding: 10px 12px !important;
        font-size: 0.8em !important;
    }

    /* Recomendações responsivas */
    div[style*="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px"] {
        grid-template-columns: 1fr !important;
    }

    /* Header e títulos */
    h2 {
        font-size: 1.2em !important;
        margin-bottom: 20px !important;
    }

    /* Navbar responsivo */
    .navbar {
        padding: 15px 12px;
    }

    .navbar .logo-img {
        height: 50px;
    }

    .nav-links a {
        font-size: 0.9em;
        padding: 8px 10px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 10px 8px;
    }

    .prof-card {
        border-radius: 12px;
    }

    .prof-foto,
    .prof-foto-placeholder {
        height: 200px;
        font-size: 2rem;
    }

    .prof-info {
        padding: 10px;
    }

    .prof-info h3 {
        font-size: 0.95rem;
    }

    .prof-abordagens,
    .prof-sobre {
        font-size: 0.7em !important;
        padding: 6px !important;
    }

    .prof-especialidade {
        font-size: 0.65em;
    }

    .prof-info a,
    .btn-whatsapp {
        padding: 8px 10px !important;
        font-size: 0.75em !important;
    }
}

/* ========================================
   FIM DO ARQUIVO
