/* ===============================
   CONTENEDOR PRINCIPAL
================================== */
.u-section-1 .u-sheet-1 {
  min-height: 100vh;
  padding: 80px 20px;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  color: #222;
}

/* ===============================
   IMAGEN PRINCIPAL
================================== */
.u-section-1 .u-image-1,
.imagen-navidad {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 14px;
  margin: 50px auto 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.u-section-1 .u-image-1:hover,
.imagen-navidad:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

/* ===============================
   TÍTULO PRINCIPAL
================================== */
.u-section-1 .u-text-1 {
  font-family: "Staatliches", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin: 20px auto 15px;
  max-width: 800px;
  letter-spacing: -0.02em;
}

/* ===============================
   SUBTÍTULO / ENTRADILLA
================================== */
.u-section-1 .u-text-2 {
  font-size: 1.15rem;
  color: #555;
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
  margin: 10px auto 30px;
  font-weight: 400;
}

/* ===============================
   PÁRRAFO PRINCIPAL
================================== */
.u-section-1 .u-text-3 {
  line-height: 1.75;
  font-size: 1.05rem;
  color: #333;
  max-width: 760px;
  margin: 20px auto 80px;
  background-color: #fff;
  padding: 35px 40px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  text-align: justify;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.u-section-1 .u-text-3:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* ===============================
   ENLACES EN IMÁGENES
================================== */
.enlace-imagen {
  text-decoration: none;
  text-align: center;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 14px;
  margin: 0px auto 0px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ===============================
   RESPONSIVE DESIGN
================================== */
@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    padding: 60px 15px;
  }

  .u-section-1 .u-text-3 {
    padding: 25px 30px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-text-1 {
    font-size: 2.2rem;
  }

  .u-section-1 .u-text-2 {
    font-size: 1.05rem;
  }

  .u-section-1 .u-text-3 {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-text-1 {
    font-size: 1.8rem;
  }

  .u-section-1 .u-text-3 {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}