body {
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    background-color: white;
    border: 1px solid #000;
    padding: 20px;
    margin: 0 auto;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.foto img {
    width: 260px;
    height: auto;
    border-radius: 8px;
}

.text-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center h3 {
    margin: 0;
}

.text-center h3 {
    margin: 0;
}

.navbar {
    background-color: #EBF3FC; 
    padding: 4px;
}

.nav-link.active {
    color: #005187 !important; /* Color del texto del enlace activo */
}

.items {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
}

.item {
    background-color: #EBF3FC; 
    border: 3px solid #F1F1F1;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item:hover {
    transform: scale(1.05);
}

.item img {
    max-width: 80px;
    border-bottom: 3px solid #606060;
    padding-bottom: 10px;
}

.item p {
    margin: 0;
    padding: 8px 0;
    font-size: 16px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    color: #005187;
}

.btn-outline-success {
    color: white;
    background-color: #005187; /* Fondo del botón */
    border-color: #005187;
}

.btn-outline-success:hover {
    color: white;
    background-color: #004166; /* Fondo del botón en hover */
    border-color: #004166;
}
