main {
  width: 100%;
}

/* 1️⃣ Carrusel */
.carousel {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: auto;
  display: block;
}

/* 2️⃣ Info y noticias */
.info-news {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
}

.info, .news {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

/* 3️⃣ Facebook */
.facebook {
  padding: 20px;
  text-align: center;
}



/* 📱 Responsive */
@media (max-width: 768px) {
  .info-news {
    grid-template-columns: 1fr;
  }
}
