body {
    margin: 0;
    font-family: 'Roboto','Verdana', sans-serif;
    background-color: #f9f9f9;
}

/* Estilos de la barra lateral */
.sidebar {
    height: 100vh;
    width: 80px;
    position: fixed;
    background-color: #003C58;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos dentro de la barra */
}

.sidebar a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-size: 24px;
}

.sidebar a:hover {
    background-color: #003C58;
}

.sidebar img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

/* Contenedor principal */
.main-content {
    margin-left: 80px;
    padding: 20px;
}

/* Sección del banner */
.banner {
    background-image: url('Imagenes/Dall-epng.png'); /* Ruta de la imagen de fondo */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: relative; /* Para controlar el texto sobre la imagen */
    text-align: center;
    border-radius: 20px;
}

/* Estilo para el título sobre la imagen */
.banner h1 {
    font-size: 80px;
    margin: 10;
    font-weight: bold;
    color: #ffffff;
    position: sticky; /* Título sobre la imagen */
    z-index: 1; /* Asegura que el texto esté sobre la imagen */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);

}

/* Estilo del subtítulo debajo de la imagen */
.subtitle {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
    color: #003C58; /* Color del subtítulo */
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* Estilo de los iconos y secciones */
.search-section {
    margin-top: 50px;
    text-align: center;
}

 /* Estilo de la barra de busqueda */
.search-bar {
    padding: 20px; /* Hacemos la barra más alta */
    width: 700px; /* Ampliamos el ancho */
    border-radius: 30px;
    border: 2.5px solid #9cc0ca;
    font-size: 15px; /* Aumentamos el tamaño del texto */
}

.cards-section {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    gap: 10px;
}

.card {
    text-align: center;
    padding: 20px;
    width: 200px; /* Asegura que todas las tarjetas (botones) tengan el mismo ancho */
    margin: 0;
}

.card img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px; /* Añade espacio entre la imagen y el botón */
}

.card button {
    background-color: #9cc0ca;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.card button:hover {
    background-color: #b0b4b4;
}

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    .form-group div {
        width: 45%;
    }

    .buttons-section {
        flex-direction: column;
    }

    .buttons-section .button {
        margin-bottom: 20px;
    }




}