@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.bundle.scp.css';

/* _content/AppHokkaido/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-kizn3llhfp] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

main[b-kizn3llhfp] {
    flex: 1;
    background: #f8f9fa;
}

.sidebar[b-kizn3llhfp] {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    border-right: 1px solid #e0e0e0;
}

.top-row[b-kizn3llhfp] {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 3px solid #dc3545;
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-row[b-kizn3llhfp]  a, .top-row[b-kizn3llhfp]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.top-row[b-kizn3llhfp]  a:hover, .top-row[b-kizn3llhfp]  .btn-link:hover {
    text-decoration: none;
    color: #dc3545;
    transform: translateY(-1px);
}

.top-row[b-kizn3llhfp]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024.98px) {
    .top-row[b-kizn3llhfp] {
        justify-content: space-between;
    }

    .top-row[b-kizn3llhfp]  a, .top-row[b-kizn3llhfp]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 1025px) {
    .page[b-kizn3llhfp] {
        flex-direction: row;
    }

    /* Sidebar em modo drawer (regras globais no app.css) — nada fixo aqui. */

    .top-row[b-kizn3llhfp] {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .top-row.auth[b-kizn3llhfp]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-kizn3llhfp], article[b-kizn3llhfp] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-kizn3llhfp] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(220, 53, 69, 0.3);
    display: none;
    left: 0;
    padding: 1rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-radius: 8px 8px 0 0;
}

#blazor-error-ui .dismiss[b-kizn3llhfp] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#blazor-error-ui .dismiss:hover[b-kizn3llhfp] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Estilos para o widget de usuário */
.user-info-widget[b-kizn3llhfp] {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-info-widget:hover[b-kizn3llhfp] {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.user-info[b-kizn3llhfp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar[b-kizn3llhfp] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #dc3545;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.user-avatar img[b-kizn3llhfp] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details[b-kizn3llhfp] {
    display: flex;
    flex-direction: column;
}

.user-name[b-kizn3llhfp] {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.2;
}

.user-role[b-kizn3llhfp] {
    color: #dc3545;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Botão customizado */
.custom-button[b-kizn3llhfp] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.custom-button:hover[b-kizn3llhfp] {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

.custom-button i[b-kizn3llhfp] {
    font-size: 0.8rem;
}

/* Links de redes sociais */
.top-row a[href*="instagram"][b-kizn3llhfp], .top-row a[href*="youtube"][b-kizn3llhfp] {
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.top-row a[href*="instagram"]:hover[b-kizn3llhfp], .top-row a[href*="youtube"]:hover[b-kizn3llhfp] {
    transform: translateY(-2px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .user-info-widget[b-kizn3llhfp] {
        margin-right: 0.5rem;
        padding: 0.35rem 0.7rem;
        min-width: 0;
    }

    .user-info[b-kizn3llhfp] {
        gap: 0.5rem;
        min-width: 0;
    }

    /* Mostra nome e cargo no mobile */
    .user-details[b-kizn3llhfp] {
        display: flex;
        min-width: 0;
    }

    .user-name[b-kizn3llhfp] {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .user-role[b-kizn3llhfp] {
        font-size: 0.68rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }

    .user-avatar[b-kizn3llhfp] {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .custom-button[b-kizn3llhfp] {
        padding: 0.4rem 0.8rem;
        font-size: 0.78rem;
    }
}
/* _content/AppHokkaido/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-26b84j5c9g] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:checked[b-26b84j5c9g] {
    background-color: rgba(220, 53, 69, 0.3);
    border-color: #dc3545;
    transform: scale(1.05);
}

.top-row[b-26b84j5c9g] {
    height: 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.navbar-brand[b-26b84j5c9g] {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.navbar-brand img[b-26b84j5c9g] {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(220, 53, 69, 0.3));
}

.navbar-brand:hover img[b-26b84j5c9g] {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(220, 53, 69, 0.5));
}

.bi[b-26b84j5c9g] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-26b84j5c9g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-26b84j5c9g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.nav-menu-home[b-26b84j5c9g] {
    background-image: url("./icons/home.svg");
}

.bi-list-nested-nav-menu[b-26b84j5c9g] {
    background-image: url("./icons/add-user.svg");
}

.nav-menu-add-user[b-26b84j5c9g] {
    background-image: url("./icons/add-user.svg");
}

.nav-menu-manage[b-26b84j5c9g] {
    background-image: url("./icons/note.svg");
}

.nav-menu-report[b-26b84j5c9g] {
    background-image: url("./icons/print.svg");
}

.nav-menu[b-26b84j5c9g] {
    padding: 1rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

.nav-item[b-26b84j5c9g] {
    font-size: 0.95rem;
    padding: 0.1rem 0.6rem;
    margin: 0.1rem 0;
}

.nav-item:first-of-type[b-26b84j5c9g] {
    padding-top: 0.5rem;
}

.nav-item:last-of-type[b-26b84j5c9g] {
    padding-bottom: 0.5rem;
}

/* Item sem "caixa": ícone limpo, destaque só no ativo/hover. */
.nav-item[b-26b84j5c9g]  .nav-link {
    color: #c9d1d9;
    background: transparent;
    border: none;
    border-radius: 8px;
    height: 2.6rem;
    display: flex;
    align-items: center;
    line-height: 2.6rem;
    width: 100%;
    padding: 0 0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

/* Divisor entre os blocos do menu */
.nav-sep[b-26b84j5c9g] {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0.6rem 1rem;
}

/* Rótulo da seção — só aparece com o menu expandido */
.nav-secao[b-26b84j5c9g] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #7d8896;
    padding: 0.35rem 1.35rem 0.2rem;
    white-space: nowrap;
}

.nav-item[b-26b84j5c9g]  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-item[b-26b84j5c9g]  .nav-link:hover::before {
    left: 100%;
}

/* Item atual: marca vermelha à esquerda + leve realce (sem "caixa") */
.nav-item[b-26b84j5c9g]  a.active {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.nav-item[b-26b84j5c9g]  a.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.5rem;
    background: #dc3545;
    border-radius: 0 3px 3px 0;
}

.nav-item[b-26b84j5c9g]  .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.nav-item[b-26b84j5c9g]  .nav-link i {
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: color 0.2s ease;
}

.nav-item[b-26b84j5c9g]  .nav-link:hover i { color: #dc3545; }
.nav-item[b-26b84j5c9g]  a.active i { color: #dc3545; }

.nav-scrollable[b-26b84j5c9g] {
    display: none;
    height: calc(100vh - 4rem);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #dc3545 #2d2d2d;
}

.nav-scrollable[b-26b84j5c9g]::-webkit-scrollbar {
    width: 6px;
}

.nav-scrollable[b-26b84j5c9g]::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 3px;
}

.nav-scrollable[b-26b84j5c9g]::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 3px;
}

.nav-scrollable[b-26b84j5c9g]::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

.navbar-toggler:checked ~ .nav-scrollable[b-26b84j5c9g] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-26b84j5c9g] {
        display: none;
    }

    .nav-scrollable[b-26b84j5c9g] {
        display: block;
        height: calc(100vh - 4rem);
        overflow-y: auto;
    }
}

/* Animação de entrada para os itens do menu */
@keyframes slideInLeft-b-26b84j5c9g {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-item[b-26b84j5c9g] {
    animation: slideInLeft-b-26b84j5c9g 0.3s ease forwards;
}

.nav-item:nth-child(1)[b-26b84j5c9g] { animation-delay: 0.1s; }
.nav-item:nth-child(2)[b-26b84j5c9g] { animation-delay: 0.2s; }
.nav-item:nth-child(3)[b-26b84j5c9g] { animation-delay: 0.3s; }
.nav-item:nth-child(4)[b-26b84j5c9g] { animation-delay: 0.4s; }
.nav-item:nth-child(5)[b-26b84j5c9g] { animation-delay: 0.5s; }
.nav-item:nth-child(6)[b-26b84j5c9g] { animation-delay: 0.6s; }

/* Responsividade */
@media (max-width: 768px) {
    .nav-item[b-26b84j5c9g] {
        padding: 0.2rem 0.8rem;
    }
    
    .nav-item[b-26b84j5c9g]  .nav-link {
        height: 3rem;
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    .nav-item[b-26b84j5c9g]  .nav-link i {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
}
/* _content/AppHokkaido/Components/Pages/Agenda.razor.rz.scp.css */
.agenda-header[b-h5tyj4hufy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.agenda-header h3[b-h5tyj4hufy] { margin: 0; }

.agenda-aviso[b-h5tyj4hufy] {
    font-size: 0.85rem;
    color: #8a6d3b;
    background: #fcf8e3;
    border: 1px solid #faebcc;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1rem;
}

/* ===== Modal ===== */
.ag-overlay[b-h5tyj4hufy] {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-modal[b-h5tyj4hufy] {
    background: #fff;
    border-radius: 14px;
    padding: 1.3rem;
    width: min(94vw, 520px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ag-modal h3[b-h5tyj4hufy] { margin: 0 0 1rem; font-size: 1.15rem; color: #1a1a1a; }

.ag-campo[b-h5tyj4hufy] { display: flex; flex-direction: column; margin-bottom: 0.8rem; flex: 1; }
.ag-campo label[b-h5tyj4hufy] { font-size: 0.8rem; font-weight: 600; color: #555; margin-bottom: 0.25rem; }

.ag-row[b-h5tyj4hufy] { display: flex; gap: 0.8rem; }

.ag-actions[b-h5tyj4hufy] { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem; }

@media (max-width: 640px) {
    .ag-row[b-h5tyj4hufy] { flex-direction: column; }
}
/* _content/AppHokkaido/Components/Pages/Home.razor.rz.scp.css */
.home-container[b-vromzjpk6b] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ===== Agendamentos do dia ===== */
.agenda-hoje[b-vromzjpk6b] {
    background: #fff;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    margin: 0 auto 1.75rem;
    max-width: 720px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #eee;
    text-align: center;
}

.agenda-hoje-header[b-vromzjpk6b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    margin-bottom: 0.9rem;
}

.agenda-hoje-header h2[b-vromzjpk6b] {
    margin: 0;
    font-size: 1.15rem;
    color: #1a1a1a;
}

.agenda-hoje-header h2 i[b-vromzjpk6b] { color: var(--hk-vermelho); margin-right: 0.4rem; }

.agenda-hoje-data[b-vromzjpk6b] {
    font-size: 0.78rem;
    color: #888;
    text-transform: capitalize;
}

.agenda-hoje-msg[b-vromzjpk6b] {
    color: #777;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.agenda-hoje-lista[b-vromzjpk6b] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

/* Cada agendamento em uma cápsula */
.agenda-hoje-item[b-vromzjpk6b] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #f8f9fb;
    border: 1px solid #ececec;
    border-radius: 999px;
    padding: 0.25rem 1rem 0.25rem 0.3rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    transition: transform 0.15s, box-shadow 0.15s;
}

.agenda-hoje-item:hover[b-vromzjpk6b] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.15);
}

.agenda-hoje-hora[b-vromzjpk6b] {
    flex: 0 0 auto;
    background: var(--hk-vermelho);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    min-width: 52px;
    text-align: center;
}

.agenda-hoje-nome[b-vromzjpk6b] {
    font-size: 0.82rem;
    color: #2d2d2d;
    font-weight: 500;
    text-align: left;
}

.agenda-hoje-link[b-vromzjpk6b] {
    display: inline-block;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hk-vermelho);
    text-decoration: none;
}

.agenda-hoje-link:hover[b-vromzjpk6b] { text-decoration: underline; }

.hero-section[b-vromzjpk6b] {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    /* Cria contexto de empilhamento próprio para que o z-index do conteúdo
       não compita com a barra superior fixa (evita sobreposição ao rolar). */
    z-index: 0;
    isolation: isolate;
}

.hero-section[b-vromzjpk6b]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content[b-vromzjpk6b] {
    position: relative;
    z-index: 1;
}

.hero-title[b-vromzjpk6b] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.gradient-text[b-vromzjpk6b] {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle[b-vromzjpk6b] {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-stats[b-vromzjpk6b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card[b-vromzjpk6b] {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover[b-vromzjpk6b] {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon[b-vromzjpk6b] {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.stat-content h3[b-vromzjpk6b] {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-number[b-vromzjpk6b] {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    margin: 0;
}

.features-section[b-vromzjpk6b] {
    margin-bottom: 3rem;
}

.features-section h2[b-vromzjpk6b] {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2d2d2d;
}

.features-grid[b-vromzjpk6b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card[b-vromzjpk6b] {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover[b-vromzjpk6b] {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #dc3545;
}

.feature-icon[b-vromzjpk6b] {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
}

.feature-card h3[b-vromzjpk6b] {
    color: #2d2d2d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p[b-vromzjpk6b] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.quick-actions[b-vromzjpk6b] {
    margin-bottom: 1.5rem;
}

.quick-actions h2[b-vromzjpk6b] {
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    color: #2d2d2d;
}

.actions-grid[b-vromzjpk6b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.action-card[b-vromzjpk6b] {
    background: white;
    border-radius: 14px;
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: inherit;
    display: block;
}

.action-card:hover[b-vromzjpk6b] {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(220, 53, 69, 0.18);
    border-color: #dc3545;
    text-decoration: none;
    color: inherit;
}

.action-icon[b-vromzjpk6b] {
    font-size: 1.8rem;
    color: #dc3545;
    margin-bottom: 0.6rem;
}

.action-card h3[b-vromzjpk6b] {
    color: #2d2d2d;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.action-card p[b-vromzjpk6b] {
    color: var(--hk-cinza);
    font-size: 0.82rem;
    line-height: 1.3;
    margin: 0;
}

.contact-section[b-vromzjpk6b] {
    margin-bottom: 2rem;
}

.contact-card[b-vromzjpk6b] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.contact-card h2[b-vromzjpk6b] {
    color: #2d2d2d;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-info[b-vromzjpk6b] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item[b-vromzjpk6b] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #2d2d2d;
}

.contact-item i[b-vromzjpk6b] {
    color: #dc3545;
    font-size: 1.25rem;
    width: 20px;
}

.social-links[b-vromzjpk6b] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link[b-vromzjpk6b] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover[b-vromzjpk6b] {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .home-container[b-vromzjpk6b] {
        padding: 1rem;
    }
    
    .hero-section[b-vromzjpk6b] {
        padding: 2rem 1rem;
    }
    
    .hero-title[b-vromzjpk6b] {
        font-size: 2.5rem;
    }
    
    .hero-stats[b-vromzjpk6b] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid[b-vromzjpk6b],
    .actions-grid[b-vromzjpk6b] {
        grid-template-columns: 1fr;
    }
    
    .contact-info[b-vromzjpk6b] {
        text-align: left;
    }
    
    .contact-item[b-vromzjpk6b] {
        justify-content: flex-start;
    }
} 
