/* Estilo general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Estilo del menú */
.menu {
    background-color: #0044cc;
    padding: 10px 20px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: right; /* lado derecho los elementos del menú */
}

.menu ul li {
    display: inline;
    margin: 0 5px; /* Reduce el espacio entre elementos del menú */
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 3px 5px;
    transition: background-color 0.3s;
}

.menu ul li a:hover {
    background-color: #002a80;
    border-radius: 5px;
}

/* Diseño responsivo del contenido principal */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Sección con imagen y texto al lado */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.text {
    flex: 1;
    padding-right: 20px;
}

.image {
    flex: 1;
    text-align: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Estilo del footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .text {
        padding-right: 0;
        text-align: center;
    }
}

.menu .logo img {
    
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 70px;
    text-align: left;
    
}
