﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
    text-align: center;
}

.titulo {
    margin-top: 40px;
    font-size: 32px;
    font-weight: 600;
}
.header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  
}

    .header .logo {
        width: 60px; /* ajusta tamaño */
        height: auto;
    }
.subtitulo {
    color: #777;
    margin-bottom: 40px;
}
.header-column {
    /* background-color: #001149 !important;
    color: #cccccc;*/
    background-image: url(../Imagenes/bg_fondo_2026.png);
    background-size: contain;
    padding: 10px;
    max-height: 200px;
    align-items: center;
    gap: 10px;
}

.logo-small {
    width: 80px;
}

.dashboard {
    padding: 80px 20px; /* mejor que 100px en celular */
    width: 90%;
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* grid-template-columns: repeat(2, 1fr);  👈 SOLO 2 COLUMNAS */
    gap: 25px;
}

.card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    }

.icon {
    font-size: 40px;
}

/* Colores */
.red {
    border-top: 5px solid #e53935;
}

.orange {
    border-top: 5px solid #fb8c00;
}

.blue {
    border-top: 5px solid #1e88e5;
}

.green {
    border-top: 5px solid #43a047;
}

.yellow {
    border-top: 5px solid #fbc02d;
}

.blueX {
    border-top: 5px solid #004990;
}
.gris {
    border-top: 5px solid #777;
}
.negro {
    border-top: 5px solid #333;
}

@media (max-width: 768px) {
    .dashboard {
        padding: 20px;
    }

    .card {
        padding: 25px 15px;
    }
}

