/* dashboard.css */

:root {
    --dash-bg-card: rgba(255, 255, 255, 0.05);
    --dash-border: rgba(255, 255, 255, 0.1);
    --dash-hover: rgba(255, 255, 255, 0.1);
}

.dashboard-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.section-title {
    font-family: var(--fuente-destacados);
    color: var(--color-acento);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dash-item {
    background: var(--dash-bg-card);
    border: 1px solid var(--dash-border);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dash-item:hover {
    background: var(--dash-hover);
    border-color: var(--color-acento);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.dash-icon-svg {
    width: 48px;
}

.dash-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(230, 187, 48, 0.2));
}

.dash-item h3 {
    color: #ffffff;
    font-family: var(--fuente-destacados);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.dash-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.full-admin {
    background: rgba(230, 187, 48, 0.05) !important;
    border: 1px solid rgba(230, 187, 48, 0.3) !important;
}

.full-admin h3 {
    color: var(--color-acento);
}

@media screen and (max-width: 768px) {
    .dashboard-container {
        margin-top: 100px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dash-item {
        padding: 30px 20px;
    }
}