/* Estilos generales */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #E9EAED;
    color: #521092;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Encabezado */
header {
    background-color: #521092;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header .logo img {
    height: 60px; /* Tamaño del logo */
}

header h1 {
    color: #E9EAED;
    font-size: 32px; /* Tamaño de letra más grande */
    margin: 0;
    font-weight: 700; /* Negrita para destacar */
}

/* Contenedor principal */
main {
    padding: 40px 20px; /* Más espacio interno */
    width: 100%;
    max-width: 800px;
    text-align: center;
    flex-grow: 1; /* Ocupa el espacio restante */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Secciones */
section {
    margin-bottom: 40px; /* Más margen entre secciones */
    width: 100%;
}

section h2 {
    color: #521092;
    font-size: 26px; /* Tamaño de letra más grande para títulos */
    margin-bottom: 20px;
}

/* Lista de aplicaciones */
.app-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Más espacio entre botones */
    justify-content: center; /* Centra horizontalmente los botones */
}

.app-button {
    background-color: #521092;
    color: #E9EAED;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    width: 200px; /* Ancho fijo para los botones */
    justify-content: center; /* Centra el contenido de los botones */
}

.app-button:hover {
    background-color: #3a0a6e;
}

.app-button i {
    font-size: 20px;
}

.app-button span {
    font-size: 16px;
}

/* Pie de página */
footer {
    background-color: #521092;
    color: #E9EAED;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: fixed;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
}