﻿/* ===============================
   HOME LAYOUT
=============================== */

.home-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

/* Top bar */
.top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.admin-link {
    font-weight: 500;
    text-decoration: none;
    color: var(--primary);
}

.admin-link:hover {
    text-decoration: underline;
}

/* Tabs */
.home-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.home-tab {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-muted);
    padding-bottom: 6px;
    transition: color 0.2s ease;
}

.home-tab:hover {
    color: var(--primary);
}

/* Linha animada */
.home-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.25s ease;
}

.home-tab:hover::after {
    width: 100%;
}

.home-tab.active {
    color: var(--primary);
}

.home-tab.active::after {
    width: 100%;
}

/* Conteúdo dinâmico */
.home-content {
    min-height: 300px;
    transition: opacity 0.2s ease;
}

.fade-out {
    opacity: 0;
}
