
body {
    background-color: #f4f6f9;
    font-family: 'Arial', sans-serif;
}

h1 {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 30px;
    font-weight: 600;
}

.logo {
    max-width: 200px;
    margin: 20px auto;
    display: block;
}

.header {
    background-color: #4d4d4d; /* Burdeos */
    padding: 20px 0;
    text-align: center;
    color: #fff;
} 
.header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card:hover a{
    text-decoration: none;
}

.card-body {
    padding: 30px;
    background-color: #ffffff;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
}

.card-text {
    color: #6c757d;
}

.icono {
    color: #e63763; /* Burdeos */
    transition: color 0.3s;
}

.icono:hover {
    color: #5c0010; /* Un tono más oscuro del burdeos */
}

.container {
    margin-top: 50px;
}

/* Estilo para las tarjetas de cada aplicación */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.col-md-4 {
    flex: 1 1 30%;
    margin-bottom: 30px;
}