* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FCEEB5;
}

header {
    background-color: #ff049b;
    color: #ddd;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 150px;
    height: 100px;
    border-radius: 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.logo:hover {
    width: 200px;
    height: 150px;
    opacity: 1;
    transform: scale(1.05);
}

nav {
    background-color: #00b7ff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    display: block;
    opacity: 0.8;
}

nav ul li a:hover {
    opacity: 1;
    border-radius: 5px;
    background-color: #0cf9ff;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}
.nosotros {
    background-color: #ff4444;
    width: 30%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.nosotros p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}