/* ==========================================================================
   Space Promoções — Sistema de Design CSS (Premium Dark Mode)
   ========================================================================== */

/* Importar Fontes Modernas */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Paleta de Cores HSL Light Mode */
    --bg-dark: 210 20% 97%;      /* Off-white fundo geral (#f1f5f9) */
    --bg-card: 0 0% 100%;       /* Branco puro para cards (#ffffff) */
    --bg-input: 0 0% 100%;      /* Branco para inputs (#ffffff) */
    --border-color: 210 20% 88%;/* Cinza claro para bordas (#e2e8f0) */
    
    --primary: 215 71% 20%;      /* Azul Marinho Oficial (#0f2d59) */
    --primary-glow: 215 71% 20% / 0.1;
    
    --secondary: 356 76% 50%;     /* Vermelho Destaque (#e01e2b) */
    --secondary-glow: 356 76% 50% / 0.1;
    
    --accent: 45 97% 54%;        /* Amarelo Destaque (#fcc419) */
    
    /* Cores de Feedback */
    --success: 145 80% 40%;
    --warning: 38 95% 45%;
    --danger: 350 85% 50%;
    --info: 200 90% 45%;
    
    /* Texto */
    --text-primary: 222 47% 11%;   /* Azul escuro ardósia para leitura (#0f172a) */
    --text-muted: 215 16% 47%;      /* Cinza ardósia para descrição (#64748b) */
    
    /* Efeitos */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset Global e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(var(--bg-dark));
    color: hsl(var(--text-primary));
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    color: hsl(var(--text-muted));
}

/* Gradientes Texturas */
.text-gradient-purple-cyan {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-rose-orange {
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--warning)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Estrutural */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.main-content {
    flex: 1;
    padding: 2.5rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

/* Grid & Flexbox Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-align { display: flex; align-items: center; gap: 0.75rem; }

/* Barra de Navegação */
header.navbar-container {
    background: hsla(var(--bg-dark), 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid hsla(var(--border-color), 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: hsl(var(--secondary));
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(var(--text-muted));
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
    color: hsl(var(--text-primary));
    background: hsla(var(--primary-glow));
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.8));
    color: white;
    box-shadow: 0 4px 20px hsla(var(--primary) / 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(var(--primary) / 0.45);
}

.btn-secondary {
    background: hsla(var(--border-color));
    color: hsl(var(--text-primary));
    border: 1px solid hsla(var(--border-color), 0.8);
}

.btn-secondary:hover {
    background: hsla(var(--bg-input));
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--primary)));
    color: white;
    box-shadow: 0 4px 20px hsla(var(--secondary) / 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(var(--secondary) / 0.45);
}

.btn-danger {
    background: hsl(var(--danger));
    color: white;
}

.btn-danger:hover {
    background: hsl(var(--danger) / 0.8);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

/* Glass Cards */
.card {
    background: hsl(var(--bg-card));
    border: 1px solid hsla(var(--border-color), 0.6);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: hsla(var(--primary) / 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px hsla(var(--primary) / 0.2);
}

/* Borda superior para categorização ERP */
.card-border-primary { border-top: 4px solid hsl(var(--primary)) !important; }
.card-border-secondary { border-top: 4px solid hsl(var(--secondary)) !important; }
.card-border-accent { border-top: 4px solid hsl(var(--accent)) !important; }

.card-image-wrapper {
    position: relative;
    height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: hsla(var(--bg-dark), 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid hsla(var(--border-color));
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    z-index: 10;
}

/* Formulários */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: hsl(var(--text-muted));
}

.form-input {
    width: 100%;
    background-color: hsl(var(--bg-input));
    border: 1px solid hsla(var(--border-color));
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: hsl(var(--text-primary));
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsla(var(--primary-glow));
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Alertas & Mensagens de Feedback */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: hsl(var(--success) / 0.1);
    border-color: hsl(var(--success));
    color: hsl(var(--success));
}

.alert-error {
    background: hsl(var(--danger) / 0.1);
    border-color: hsl(var(--danger));
    color: hsl(var(--danger));
}

/* Tabelas Responsivas */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid hsla(var(--border-color));
    background: hsl(var(--bg-card));
}

table.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

table.table th, table.table td {
    padding: 1rem 1.25rem;
}

table.table th {
    background: hsla(var(--bg-dark), 0.5);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--text-muted));
    border-bottom: 1px solid hsla(var(--border-color));
}

table.table td {
    border-bottom: 1px solid hsla(var(--border-color), 0.5);
    font-size: 0.95rem;
}

table.table tr:last-child td {
    border-bottom: none;
}

table.table tr:hover td {
    background: hsla(var(--border-color), 0.2);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-pending, .badge-rascunho, .badge-aguardando_aprovacao, .badge-aguardando_pagamento {
    background: hsl(var(--warning) / 0.1);
    color: hsl(var(--warning));
}

.badge-success, .badge-confirmado, .badge-pago, .badge-aprovado, .badge-aprovado_parceiro {
    background: hsl(var(--success) / 0.1);
    color: hsl(var(--success));
}

.badge-danger, .badge-cancelado, .badge-recusado {
    background: hsl(var(--danger) / 0.1);
    color: hsl(var(--danger));
}

.badge-info, .badge-em_andamento, .badge-em_veiculacao, .badge-em_producao {
    background: hsl(var(--info) / 0.1);
    color: hsl(var(--info));
}

/* Dashboards Gerais */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 71px);
    margin: 0;
}

.navbar.navbar-dashboard {
    max-width: none !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

@media (max-width: 992px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        margin: 0;
        min-height: auto;
    }
}

.dashboard-sidebar {
    background: #090e1a !important; /* Darker navy for professional contrast */
    border: none;
    border-right: 1px solid hsla(var(--border-color), 0.8);
    border-radius: 0; /* Flat bleed sidebar */
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #f1f5f9 !important;
}

.dashboard-sidebar h3 {
    color: #ffffff !important;
}

.dashboard-sidebar span, .dashboard-sidebar small {
    color: #94a3b8 !important;
}

.dashboard-content {
    padding: 2.5rem 3rem;
    background: #f1f5f9; /* Clean light content background */
    overflow-y: auto;
    min-height: 100%;
}

@media (max-width: 992px) {
    .dashboard-sidebar {
        border-right: none;
        border-bottom: 1px solid hsla(var(--border-color), 0.8);
        padding: 1.5rem;
        height: auto;
    }
    .dashboard-content {
        padding: 2rem 1rem;
    }
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: #94a3b8 !important; /* Fixed light gray for dark sidebar readability */
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.sidebar-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.sidebar-link.active {
    color: #ffffff !important;
    background: hsl(var(--primary) / 0.15) !important;
    border-left: 4px solid hsl(var(--primary)) !important; /* Indicator bar */
    font-weight: 600;
}

/* Dashboard Cards (Métricas) */
.metric-card {
    background: linear-gradient(135deg, hsl(var(--bg-card)), hsla(var(--bg-card), 0.8));
    border: 1px solid hsla(var(--border-color));
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.metric-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: hsla(var(--secondary-glow));
    color: hsl(var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-details h4 {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.metric-details .value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Heros & Landing Sections */
.hero-section {
    text-align: center;
    padding: 6rem 1rem;
    background: radial-gradient(circle at center, hsla(var(--primary-glow), 0.25), transparent 60%);
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Combo Builder / Customizer */
.combo-builder-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .combo-builder-container {
        grid-template-columns: 1fr;
    }
}

.combo-sidebar-summary {
    background: hsl(var(--bg-card));
    border: 1px solid hsla(var(--primary) / 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.service-selection-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: hsla(var(--bg-input), 0.4);
    border: 1px solid hsla(var(--border-color));
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.service-selection-card:hover {
    border-color: hsla(var(--secondary) / 0.5);
    background: hsla(var(--secondary-glow));
}

.service-selection-card.selected {
    border-color: hsl(var(--primary));
    background: hsla(var(--primary-glow));
}

/* Agenda / Calendário */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1.2;
    background: hsl(var(--bg-card));
    border: 1px solid hsla(var(--border-color), 0.5);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    cursor: pointer;
}

.calendar-day:hover {
    background: hsla(var(--bg-input));
}

.calendar-day.other-month {
    opacity: 0.3;
}

.calendar-day.booked {
    border-color: hsl(var(--success));
    background: hsl(var(--success) / 0.15);
}

.calendar-day.blocked {
    border-color: hsl(var(--danger));
    background: hsl(var(--danger) / 0.15);
}

.calendar-day.pending {
    border-color: hsl(var(--warning));
    background: hsl(var(--warning) / 0.15);
}

.calendar-day-number {
    font-weight: 600;
}

.calendar-day-status {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Widgets e Rodapé */
footer.footer-container {
    background: hsla(var(--bg-card), 0.5);
    border-top: 1px solid hsla(var(--border-color));
    padding: 3rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* floating Dev Switcher (Role Switcher) */
.dev-role-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: hsla(var(--bg-dark), 0.9);
    border: 1px solid hsl(var(--primary));
    box-shadow: 0 10px 30px hsla(var(--primary) / 0.3);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
}

.dev-role-switcher span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(var(--primary));
}

.dev-role-select {
    background: hsl(var(--bg-card));
    border: 1px solid hsla(var(--border-color));
    color: hsl(var(--text-primary));
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    outline: none;
}

/* Estilos de Contrato e Recibos */
.contract-document {
    background: white;
    color: #111827;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contract-document h2, .contract-document h3 {
    color: #111827;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contract-document p {
    color: #374151;
    margin-bottom: 1.25rem;
}

.contract-signature-block {
    margin-top: 3rem;
    border-top: 1px solid #d1d5db;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-style: italic;
}

/* Gráfico de Barras Customizado via HTML */
.chart-container-html {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    height: 250px;
    border-bottom: 2px solid hsla(var(--border-color));
    border-left: 2px solid hsla(var(--border-color));
    padding: 1rem;
    margin-top: 1.5rem;
}

.chart-bar-html {
    flex: 1;
    background: linear-gradient(to top, hsl(var(--primary)), hsl(var(--secondary)));
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 5px;
    animation: barGrow 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
    white-space: nowrap;
}

.chart-bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes barGrow {
    from { height: 0; }
}

/* ==========================================================================
   Redesenho da Landing Page Estilo Corporativo Light
   ========================================================================== */

/* Barra Superior */
.top-bar-container {
    background-color: #031b33;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.9;
}

.top-bar-item i, .top-bar-item svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.top-bar-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar-social {
    color: #ffffff;
    opacity: 0.8;
    display: inline-flex;
    align-items: center;
}

.top-bar-social:hover {
    opacity: 1;
    color: hsl(var(--accent));
}

/* Customizações do Header & Botões */
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #031b33;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    font-size: 1.4rem;
}

.btn-header-outline {
    background: transparent;
    color: #0047ba;
    border: 1px solid #0047ba;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-header-outline:hover {
    background: rgba(0, 71, 186, 0.05);
}

.btn-header-solid {
    background: #002f6c;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-header-solid:hover {
    background: #001f4d;
}

/* Layout Hero Redesenhado */
.hero-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .hero-grid-container {
        grid-template-columns: 1.2fr 1.2fr;
        padding: 3rem 1.5rem;
    }
    .hero-benefits-side {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    .hero-benefits-side {
        grid-column: span 1;
    }
}

.hero-text-side {
    display: flex;
    flex-direction: column;
}

.hero-title-redesign {
    font-size: 2.75rem;
    line-height: 1.15;
    color: #031b33;
    font-weight: 800;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.hero-title-highlight-red {
    color: #e01e2b;
}

.hero-subtitle-redesign {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-hero-solid {
    background: #002f6c;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 47, 108, 0.2);
}

.btn-hero-solid:hover {
    background: #001f4d;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: #002f6c;
    border: 1px solid #002f6c;
}

.btn-hero-outline:hover {
    background: rgba(0, 47, 108, 0.05);
    transform: translateY(-2px);
}

/* Colagem de Imagens do Hero */
.hero-collage-side {
    position: relative;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.75rem;
}

.collage-img-left {
    height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.collage-col-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.collage-img-right {
    height: 176px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.collage-img-left:hover, .collage-img-right:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
}

/* Painel de Diferenciais / Benefícios */
.benefit-list-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 71, 186, 0.06);
    color: #0047ba;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-details h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #031b33;
    margin-bottom: 0.15rem;
}

.benefit-details p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

/* Grid de Categorias "Encontre o serviço ideal" */
.category-section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #031b33;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.category-grid-container {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1100px) {
    .category-grid-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card-redesign {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.25rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
}

.category-card-redesign:hover {
    border-color: #0047ba;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -10px rgba(0, 71, 186, 0.15);
}

.category-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 71, 186, 0.05);
    color: #0047ba;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-icon i, .category-card-icon svg {
    width: 18px;
    height: 18px;
}

.category-card-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #031b33;
}

/* Combos em Destaque */
.combos-redesign-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .combos-redesign-layout {
        grid-template-columns: 1fr;
    }
}

.combos-redesign-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .combos-redesign-grid {
        grid-template-columns: 1fr;
    }
}

.combo-card-redesign {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.combo-card-redesign:hover {
    border-color: #0047ba;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.1);
}

.combo-card-img-wrapper {
    position: relative;
    height: 180px;
    width: 100%;
}

.combo-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #fcc419;
    color: #031b33;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.60rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    text-transform: uppercase;
}

.combo-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.combo-card-title {
    font-size: 1.1rem;
    color: #031b33;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.combo-card-price {
    font-size: 0.95rem;
    color: #031b33;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.combo-card-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

/* Botão WhatsApp */
.btn-whatsapp {
    background-color: #25d366 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
    background-color: #128c7e !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
}

/* Seção Como Funciona */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    border-color: #0047ba;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -10px rgba(0, 71, 186, 0.1);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #031b33;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.process-card:nth-child(2) .process-step-number {
    background: #e01e2b;
}

.process-card:nth-child(3) .process-step-number {
    background: #fcc419;
    color: #031b33;
}

.process-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 71, 186, 0.05);
    color: #0047ba;
    font-size: 1.5rem;
}

.process-card:nth-child(2) .process-icon-wrapper {
    background: rgba(224, 30, 43, 0.05);
    color: #e01e2b;
}

.process-card:nth-child(3) .process-icon-wrapper {
    background: rgba(0, 71, 186, 0.05);
    color: #0047ba;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #031b33;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.process-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ==========================================================================
   Responsividade Mobile (Ajustes de Telas)
   ========================================================================== */

/* Botão Toggle Mobile Hamburger */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #031b33;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 71, 186, 0.05);
}

.mobile-menu-toggle i, .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 992px) {
    .navbar nav {
        display: contents;
    }
    
    /* Ativar Hamburger */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    /* Dropdown de Links Mobile */
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(16px) !important;
        border-bottom: 3px solid #0047ba !important;
        padding: 1.5rem;
        gap: 0.85rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
        z-index: 99;
        align-items: stretch;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 0.75rem;
        width: 100%;
        font-size: 1rem;
    }
    
    .btn-header-outline, .btn-header-solid {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* Responsividade de Elementos Individuais */
@media (max-width: 576px) {
    .top-bar-container {
        padding: 0.35rem 1rem !important;
    }
    .top-bar {
        justify-content: center;
    }
    .top-bar-left {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem !important;
        font-size: 0.75rem !important;
    }
    .top-bar-right {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* Ajustes do Logo e Navbar Mobile */
    .logo-text {
        font-size: 1.15rem !important;
    }
    .logo-link img {
        max-height: 36px !important;
    }
    .navbar {
        padding: 0.65rem 1rem !important;
    }

    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-hero-solid, .btn-hero-outline {
        width: 100%;
        text-align: center;
    }
    
    /* Collage de Imagens */
    .collage-grid {
        grid-template-columns: 1fr;
    }
    .collage-img-left {
        height: 240px;
    }
    .collage-img-right {
        height: 140px;
    }
}

/* Margens e posicionamento do Contato para manter o alinhamento da grade */
#contato {
    margin: 0 1.5rem 5rem !important;
}

@media (min-width: 1440px) {
    #contato {
        margin: 0 auto 5rem !important;
    }
}

/* Ajustes finos do Switcher de Homologação em telas menores */
@media (max-width: 768px) {
    .dev-role-switcher {
        bottom: 10px !important;
        right: 10px !important;
        padding: 0.45rem 0.65rem !important;
        border-radius: var(--radius-sm) !important;
        gap: 0.35rem !important;
    }
    
    .dev-role-switcher span {
        display: none !important; /* Esconde o texto descritivo para não tampar o conteúdo */
    }
}
