/* ========================= */
/* VARIÁVEIS (MODERNO) */
/* ========================= */
:root {
    /* Tons de Base (Do quase preto ao azul profundo) */
    --navy-900: #0a121a;        /* Fundo principal (Substitui o "light") */
    --navy-800: #121d29;        /* Seções secundárias */
    --navy-700: #1b2d3f;        /* Sua antiga "primary" */
    --navy-600: #253b52;        /* Cards e elementos de elevação */
    --navy-500: #2f4f6f;        /* Destaques e bordas sutis */
    
    /* Cores de Ação (Azuis mais saturados, mas ainda escuros) */
    --primary: var(--navy-700);
    --secondary: #3d5a7a;       /* Azul médio para hover e detalhes */
    --accent: #557492;          /* O ponto mais "claro" de azul da interface */

    /* Gradientes (Transições suaves entre tons escuros) */
    --gradiente: linear-gradient(135deg, var(--navy-700), var(--navy-600)); 
    --gradiente-section: linear-gradient(
        to bottom,
        var(--navy-900) 0%, 
        var(--navy-800) 50%, 
        var(--navy-800) 70%, 
        var(--navy-900) 100%
    );

    /* Tipografia (Onde o branco é permitido) */
    --text-pure: #ffffff;       /* Títulos e textos importantes */
    --text-soft: #e2e8f0;       /* Textos de corpo (um branco levemente azulado) */
    --text-dim: #94a3b8;        /* Rodapés e legendas */

    /* Estilização */
    --radius: 20px;
    --shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra mais pesada para compensar o fundo escuro */
    --border: 1px solid rgba(255, 255, 255, 0.05); /* Borda quase invisível para separar elementos */
    --border-test: 1px dashed rgb(255, 0, 0); /* Borda de teste mais visível */

    --transition: 0.3s ease;
}

/* ========================= */
/* RESET */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: var(--navy-900);
    color: var(--text-soft);
    overflow-x: hidden;
}

/* ========================= */
/* SCROLL */
/* ========================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* ========================= */
/* CONTAINER */
/* ========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.container h1#ini{
    font-size:3.5rem;
}
.container h2#ini{
    font-size: 1.5rem;
}

.container h2#client{
    margin-top: 5rem;
}

/* 
=================================
            Carrossel           
=================================
 */
#carrossel {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.carrossel-track {
    display: flex;
    gap: 40px;
    width: max-content;
    align-items: center;
    will-change: transform;
}

/* IMAGENS PADRÃO */
.carrossel-track img {
    width: 100px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

/* IMAGEM CENTRAL (ATIVA) */
.carrossel-track img.active {
    transform: scale(1.6);
    opacity: 1;
    filter: grayscale(0%);
    z-index: 2;
}
/*
=================================
*/

#text {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 300px;
}

#text h1 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

#text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

#img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

#img img {
    background-color: transparent;
    width: 100%;
    height: auto;
    max-width: 400px;
}
/* ========================= */
/* HEADER (GLASS MODERNO) */
/* ========================= */
#header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 40px);
    height: 75px;
    background: rgba(18, 29, 41, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: var(--radius);
    box-shadow: var(--shadow);

    display: flex;
    align-items: center;

    z-index: 9999;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(30, 42, 56, 0.95);
}

/* HEADER CONTAINER */
#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LOGO */
.logo {
    height: 65px;        /* controla tamanho da logo */
    width: auto;
    display: block;
    object-fit: contain;
    padding-bottom: 1px;
}

/* ========================= */
/* MENU */
/* ========================= */
.menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu ul li a {
    color: var(--text-soft);
    text-decoration: none;
    position: relative;
    font-size: 0.95rem;
}

.menu ul li a:hover{
    color: var(--accent);
}

/* LINHA ANIMADA */
.menu ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary);
    transition: var(--transition);
}

.menu ul li a:hover::after {
    width: 100%;
}

/* ========================= */
/* MENU MOBILE */
/* ========================= */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* ANIMAÇÃO X */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================= */
/* SEÇÕES */
/* ========================= */
section {
    min-height: 100vh;
    display: flex;
    position: relative;
    padding: 80px 0;
    color: var(--text-soft);
}


/* ========================= */
/* BANNER */
/* ========================= */
.banner {
    text-align: center;
    border-radius: var(--radius);
}


/* ========================= */
/* SECTIONS */
/* ========================= */

#home {
    padding-top: 12.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

/* VÍDEO FUNDO */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* OVERLAY GRADIENTE */
#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to top,
        rgba(10,18,26, 0.95) 0%,   /* FUNDO ESCURO (embaixo) */
        rgba(27,45,63, 0.8) 30%,
        rgba(27,45,63, 0.4) 60%,
        rgba(27,45,63, 0.15) 80%,
        transparent 100%           /* TOPO TRANSPARENTE (mostra vídeo) */
    );

    z-index: 1;
}

/* CONTEÚDO ACIMA */
#home .container {
    position: relative;
    z-index: 2;
    color: var(--text-pure);
    text-align: center;
}


/* ========================= */
/* CLASSES UTILITÁRIAS */
/* ========================= */
.bg-light {
    background: var(--navy-800) !important;
}

#contato-endereco {
    background: var(--navy-900);
}

/* ========================= */
/* SEÇÕES ESPECÍFICAS */
/* ========================= */
#sobre {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--navy-900);
}

#sobre .container {
    flex: 1;
    min-width: 300px;
}

#servicos {
    color: var(--text-soft);
    background: var(--gradiente-section);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#servicos .container {
    width: 100%;
}


    /* dashboard admin */
.dashboard {
    display: flex;
}

/* ASIDE */

aside ul li a{
    color: var(--text-soft);
    text-decoration: none;
    transition: var(--transition);
}

aside ul li a:hover{
    transition: var(--transition);
    color: var(--text-pure);
    font-weight: 700;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

aside ul li a.active {
    color: var(--text-pure);
    font-weight: 700;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}


/* SIDEBAR */
.sidebar {
    --sidebar-width: 220px;
    width: var(--sidebar-width);
    min-width: 160px;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-800);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    transition: width 0.2s ease, transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
}

/* Scrollbar discreta para sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: background 0.2s ease;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.4);
}

.sidebar.collapsed {
    width: 0;
    min-width: 0;
    padding: 0;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.sidebar h2 {
    color: var(--text-pure);
    margin-bottom: 0;
    font-size: 1.25rem;
}

.sidebar-toggle {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-pure);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
}

.sidebar-toggle::before {
    content: "☰";
    font-size: 1rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: var(--text-soft);
    text-decoration: none;
}

.sidebar ul li a.active {
    color: var(--text-pure);
    font-weight: 700;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

.sidebar.dragging {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.sidebar-resize-handle {
    position: absolute;
    top: 0;
    right: -6px;
    width: 12px;
    height: 100%;
    cursor: ew-resize;
    z-index: 103;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-right: 2px solid transparent;
}

.sidebar:hover .sidebar-resize-handle {
    opacity: 1;
    border-right-color: var(--accent);
}

.sidebar-open-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 14px;
    background: var(--navy-800);
    color: var(--text-pure);
    display: grid;
    place-items: center;
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.sidebar-open-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sidebar-open-btn::before {
    content: "☰";
    font-size: 1.1rem;
}

.admin-sidebar-form {
    margin-top: 20px;
}


/* MAIN */
.main {
    margin-left: calc(var(--sidebar-width, 220px) + 2px);
    padding: 20px;
    width: 100%;
    transition: margin 0.2s ease, padding 0.2s ease;
}

.main.sidebar-collapsed {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.admin-main {
    padding-bottom: 40px;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    flex: 1;
    background: var(--navy-700);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

/* GRÁFICO */
.grafico-box {
    background: var(--navy-700);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* TABELA */
.tabela-box table {
    width: 100%;
    border-collapse: collapse;
}

.tabela-box th,
.tabela-box td {
    padding: 10px;
    border: 1px solid var(--navy-500);
}

.tabela-box {
    overflow-x: auto;
}

.tabela-box th {
    background: var(--navy-700);
}

.flash {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    font-weight: 600;
}

.flash-success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.6);
}

.flash-error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.6);
}

.status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.status-ok {
    background: rgba(46, 204, 113, 0.2);
    color: #9ff0bc;
}

.status-warning {
    background: rgba(241, 196, 15, 0.2);
    color: #ffe08a;
}

.status-danger {
    background: rgba(231, 76, 60, 0.2);
    color: #ffb4b4;
}

.status-info {
    background: rgba(61, 90, 122, 0.35);
    color: #cbd5e1;
}

.status-secondary {
    background: rgba(150, 150, 150, 0.2);
    color: #b0b0b0;
}

.ranking-list {
    margin-top: 8px;
    list-style-position: inside;
    text-align: left;
}

.ranking-list li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.ranking-list li a {
    color: var(--text-soft);
    text-decoration: none;
}

.switch-chart-form {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.switch-chart-form .btn {
    margin-top: 0;
}

.admin-form-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.admin-form-grid form h3,
.payment-entry-form h3 {
    margin-bottom: 12px;
}

.payments-filter-form {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    max-width: 430px;
}

.payments-filter-form .btn {
    margin-top: 0;
}

.payment-entry-form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    align-items: end;
}

.payment-entry-form h3 {
    grid-column: 1 / -1;
}

.payment-entry-form .btn {
    margin-top: 0;
}


strong a.abrir-imovel,
a.abrir-inquilino {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
    position: relative;
}

strong a.abrir-imovel::after,
a.abrir-inquilino::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--text-pure);
    transition: width 0.4s ease;
}

strong a.abrir-imovel:hover,
a.abrir-inquilino:hover {
    color: var(--text-pure);
    transition: var(--transition);
}

strong a.abrir-imovel:hover::after,
a.abrir-inquilino:hover::after {
    width: 100%;
}


/* ========================= */
/* BOTÃO PREMIUM */
/* ========================= */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: var(--gradiente);
    color: var(--text-pure);
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

/* BRILHO */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    transform: skewX(-25deg);
    transition: 0.6s;
}

.btn:hover::after {
    left: 120%;
}

.btn-wpp {
    background: #25D366;
}

/* BOTÕES FORM */
.botoes-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ========================= */
/* CARDS */
/* ========================= */
.cards {
    display: flex;
    gap: 20px;
}

.card {
    background: var(--navy-600);
    color: var(--text-soft);
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex: 1;
    transition: var(--transition);
}

.card h3{
    color: var(--text-pure);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}


/* ========================= */
/* CONTATO + ENDEREÇO */
/* ========================= */
.contato-grid {
    display: flex;
    gap: 40px;
}

.contato-box,
.endereco-box {
    flex: 1;
}

.contato-box h2,
.endereco-box h2{
    margin-bottom: 15px;
}

/* MAPA */
.mapa-container {
    border-radius: var(--radius);
    border: var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-endereco{
    margin-top: 15px;
    margin-bottom: 15px;
}



/* ========================= */
/* FORM */
/* ========================= */
form {
    background: var(--navy-700);
    color: var(--text-soft);
    border: 1px solid var(--navy-500);
    padding: 25px;
    border-radius: 15px;
}

form input,
form textarea {
    background: var(--navy-700);
    color: var(--text-soft);
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--navy-500);
    transition: var(--transition);
}

form input::placeholder,
form textarea::placeholder{
    color: var(--text-dim);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

#form{
    margin-left: 35%;
    display: flex;
    width: 25rem;
}

/* SELECT ESTILIZADO */
form select {
    background: var(--navy-700);
    color: var(--text-soft);
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--navy-500);
    transition: var(--transition);
    appearance: none; /* remove estilo padrão */
    cursor: pointer;
}

/* SETINHA CUSTOM */
form select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2394a3b8' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* FOCO */
form select:focus {
    outline: none;
    border-color: var(--secondary);
}

form select:hover {
    border-color: var(--accent);
}

.formulario {
    display: none;
}

.detalhe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.detalhe-box {
    background: var(--navy-700);
    border: 1px solid var(--navy-500);
    border-radius: 15px;
    padding: 20px;
}

.detalhe-box p{
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .detalhe-grid {
        grid-template-columns: 1fr;
    }
}

#login{
    text-align: center;
}

section#fin input {
    background: var(--navy-700);
    color: var(--text-soft);
    width: 45%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--navy-500);
    transition: var(--transition);
}

section#fin input[type="month"]::-webkit-calendar-picker-indicator{
    filter: invert(1) brightness(1.5);
}

/* ========================= */
/* FOOTER */
/* ========================= */
#footer {
    background: var(--navy-900);
    color: var(--text-dim);
    text-align: center;
    padding: 20px;
    border-top: var(--border);
    border-radius: 0 0 15px 15px;
}

/* ========================= */
/* RELATÓRIO E EXPORTAÇÃO */
/* ========================= */
.relatorio {
    background: var(--navy-600);
    color: var(--text-soft);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 20px;
}

.relatorio h1 {
    color: var(--text-pure);
    margin-bottom: 20px;
    font-size: 24px;
}

.relatorio h3 {
    color: var(--accent);
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 16px;
}

.relatorio table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--navy-700);
}

.relatorio table thead {
    background: var(--navy-800);
}

.relatorio table th {
    color: var(--text-pure);
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid var(--accent);
}

.relatorio table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.relatorio table tbody tr:hover {
    background: var(--navy-600);
}

.relatorio-resumo {
    margin-top: 30px;
    background: var(--navy-700);
    padding: 20px;
    border-radius: 15px;
}

.tabela-resumo {
    width: 100%;
    border-collapse: collapse;
}

.tabela-resumo tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabela-resumo td {
    padding: 10px;
}

.tabela-resumo td:last-child {
    text-align: right;
    color: var(--accent);
}

.relatorio-opcoes-exportacao {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.relatorio-opcoes-exportacao h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.export-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.export-buttons form {
    display: inline;
}

.btn-export-pdf,
.btn-export-excel,
.btn-export-csv,
.btn-print {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: var(--text-pure);
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-export-pdf:hover {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.4);
}

.btn-export-excel {
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-export-excel:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.4);
}

.btn-export-csv {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-export-csv:hover {
    background: linear-gradient(135deg, #b45309, #92400e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
}

.btn-print {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.btn-print:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.admin-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-sidebar-form label {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 5px;
}

.admin-sidebar-form input,
.admin-sidebar-form select {
    padding: 10px;
    background: var(--navy-700);
    color: var(--text-pure);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}

.admin-sidebar-form input:focus,
.admin-sidebar-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(85, 116, 146, 0.1);
}

/* ========================= */
/* ANIMAÇÕES */
/* ========================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */
@media (max-width: 768px) {

    .dashboard {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: static;
    }

    .main {
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: var(--navy-800);
        display: none;
    }

    .menu.active {
        display: block;
    }

    .menu ul {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .cards {
        flex-direction: column;
    }

    .contato-grid {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .payments-filter-form {
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .video-bg {
        display: none;
    }

    #home {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }
}