/* Estilos básicos para el sitio */
body {
    font-family: sans-serif;
}

header {
    background-color: #f0f0f0;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between; /* Distribuye el espacio entre el contenido del encabezado y el menú */
    align-items: center; /* Alinea verticalmente los elementos */
}

.header-content {
    display: flex;
    align-items: center; 
}

header .container img { 
    max-width: 50px; 
    height: auto; 
    margin-left: auto; 
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}


#novedades .novedad {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#novedades .categoria {
    font-style: italic;
    color: #777;
}


#hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

#categorias .col-md-4 {
    text-align: center;
}

#categorias img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.social li {
    display: inline;
    margin: 0 5px;
}

.textos-container {
    display: flex;
    flex-direction: column;
}

.texto-item {
    margin-bottom: 10px;
}

/* Cuadrícula */
.textos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajusta el ancho mínimo de las columnas según tus necesidades */
    gap: 20px;
}

.texto-item {
    border: 1px solid #ccc;
    padding: 10px;
}



