/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #e6e6e6; /* Gris claro estilo editorial */
  color: #111111;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px 10px;
}

/* Ajusta este max-width si quieres más/menos aire lateral */
.wrapper {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 10px;
}

/* =========================
   HERO
   ========================= */

   .hero {
    min-height: 100vh;
    width: 100%;
    background-image: url("/img/celosiaSPMlow.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* ← key parallax line */
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 40px;
  }


.hero-logo {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 4vh auto;
  display: block;
}

.hero-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 520px;
  margin: 0 auto 24px;
  color: #555555;
}

/* BOTONES (cuadrados, borde negro) */
.btn-cta {
  display: inline-block;
  align-items: center;
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid #111111;
  background-color: rgba(0, 0, 0, 0.03);
  color: #111111;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-cta:hover {
  background-color: #111111;
  color: #f5f5f5;
}

/* =========================
   MINI HEROES (3 columnas)
   ========================= */

.mini-hero {
  display: grid;
  grid-template-columns: 0.9fr 2.4fr 2fr;
  column-gap: 40px;
  padding: 72px 0;
  border-top: 0px solid #111111;
  box-sizing: unset;
}

.mini-hero__col {
  align-self: flex-start;

}

/* Columna 1: tag pequeño */
.mini-hero__col--tag {
  padding-top: 6px;
}

.mini-hero__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: #999999;
}

/* Columna 2: título grande + primer párrafo */
.mini-hero__col--main {
}

.mini-hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.mini-hero__text {
  font-size: 1.3rem;
  color: #333333;
  max-width: 520px;
  text-align: justify;
}

/* Columna 3: resto de info, más suave */
.mini-hero__col--meta {
  text-align: justify;
  padding-right: 25px;
}

.mini-hero__soft {
  font-size: 0.9rem;
  color: #555555;
  max-width: 520px;
}

.mini-hero__soft h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 4px;
}

.mini-hero__soft ul {
  list-style: none;
  margin-bottom: 4px;
}

.mini-hero__soft ul li {
  margin-bottom: 2px;
}

.mini-hero__small {
  font-size: 0.86rem;
  color: #666666;
  margin-bottom: 4px;
}

.mini-hero__button {
  margin-top: 18px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  border-top: 1px solid #c9c9c9;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 0.78rem;
  color: #666666;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 16px;
}

.footer-logo {
  height: 26px;
  width: auto;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: #555555;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  border-color: #111111;
  color: #111111;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom a {
  color: inherit;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.footer-bottom a:hover {
  border-color: #111111;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {




  .mini-hero {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding: 48px 0;
  }

  .mini-hero__title {
    font-size: 2rem;
  }

  .mini-hero__soft,
  .mini-hero__text {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-logo {
    width: 90%;
    margin: 3vh auto;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }


}
