/* ===== RESET GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #F2D2BD, #F7D9BC, #223248);
  background-attachment: fixed;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;

  padding-top: 50px;  /* 👈 NUEVO */
}

/* ===== BANNER PRINCIPAL (Fotos completas) ===== */
.banner-principal-dos-columnas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.columna-banner {
  flex: 2;
}

.carrusel {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.carrusel img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
}

/* Columna Catálogo */
.columna-catalogo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.img-catalogo {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-descargar {
  display: inline-block;
  padding: 12px 24px;
  background: #223248;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

/* ===== CATEGORÍAS ===== */
.categorias-destacadas {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1550px;
  margin: 0 auto;
}

.categoria {
  text-align: center;
  flex: 1;
  text-decoration: none;
  transition: transform 0.3s ease;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.categoria img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0002;
  border-radius: 10px;
}

.categoria h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 1.2rem;
}

.categoria:hover {
  transform: scale(1.05);
}

/* ===== CTA ===== */
.call-to-action {
  text-align: center;
  padding: 50px 20px;
}

.btn-secundario {
  display: inline-block;
  background: white;
  color: #d6005c;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .banner-principal-dos-columnas {
    flex-direction: column;
    padding: 1rem;
  }

  .categorias-destacadas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .categoria {
    aspect-ratio: 16 / 9;
  }

  .categoria img {
    object-fit: contain;
  }
}