/* =============================
   DASHBOARD GRUPO ANCOR
============================= */

body.dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #cfd9ff 0%, #eaf1ff 45%, #f6f3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Card principal */
.ancor-card {
    background: #ffffff;
    border-radius: 32px;
    width: 100%;
    max-width: 900px;
    padding: 40px 30px 50px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* Header centrado */
.ancor-header-center {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eef1f7;
}

.ancor-logo-real {
    width: 250px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ancor-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.ancor-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
}

/* Ventas */
.ventas-title {
    text-align: center;
    margin: 35px 0 25px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #7bb6e8;
}

/* Menú */
.ancor-menu {
    max-width: 320px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

/* Botones */
.ancor-btn {
    border-radius: 20px;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    background: linear-gradient(135deg, #dff1ff, #cce9ff);
    color: #1f2937;
    box-shadow: 0 15px 30px rgba(100, 150, 255, 0.25);
    transition: all 0.3s ease;
}

.ancor-btn.costos {
    background: linear-gradient(135deg, #e9ddff, #dccbff);
}

.ancor-btn:hover {
    
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(100, 150, 255, 0.35);
    color: #1f2937;
}

/* Responsive */
@media (max-width: 768px) {
    .ancor-card {
        margin: 20px;
        padding: 30px 20px 40px;
    }

    .ancor-logo-real {
        width: 100px;
    }
}
