* {
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

body {
    position: relative;
    background-color: beige;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: black;
}

header {
    background: url('../img/banner.jpg');
}

header h1 {
    font-family: Comic Sans Ms;
    font-size: 2.5rem;
    font-weight: normal;
}

#titulo {
    display: inline-block;
}

#logo,
header h1 {
    display: inline-block;
    margin-bottom: 0px;
    height: 140px;

}

nav {
    display: inline-block;
    width: 100%;
    height: 40px;
    text-align: right;
    background-color: rgb(88, 88, 88);
}

nav ul {
    list-style-type: none;
}

nav li {
    display: inline-block;
    margin-right: 15px;
}

nav a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    color: #ebebeb;
    padding-bottom: 3px;
    text-decoration: none;
}

nav a:hover {
    color: rgb(182, 119, 3);
    border-bottom: 3px solid rgb(2, 66, 184);

}

img {
    height: 250px;
}

article {
    padding: 10px;

}

section {
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    float: left;
    width: 75%;
}

aside {
    padding: 5px;
    font-size: italic;
    float: right;
    width: 20%;
    border: 2px solid;
}

footer {
    float: left;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    border-top: 2px solid #000000;
    background-color: rgb(50, 66, 141);
    color: white;
    text-align: center;
    padding-top: 10px;
}

.caracteristicas-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #007BFF;
    margin-top: 0;
}

.info-card img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
}