html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Roboto", sans-serif;
  color: black;
}

/* El body es la columna que contiene header + wraps */
body {
  display: flex;
  flex-direction: column;
  align-items: center;       /* centra horizontalmente las cards */
  padding: 36px 16px;
  gap: 30px;
  background: #f3f4f6;       /* opcional, solo para contraste */
}

/* CONTENEDORES PRINCIPALES */
.wrap1,
.wrap2,
.wrap3 {
  width: 100%;
  max-width: 900px;          /* opcional: ancho máximo */
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  padding: 28px;
  box-sizing: border-box;
}

/* NO les pongas height: 100%; deja que la altura la decida el contenido */
/* header */
header {
  width: 100%;
  max-width: 900px;
  margin: 0;
}

header h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.3px;
  color: black;
}

/* SECCIONES */
section {
  border-top: 1px dashed #e6e9ee;
  padding-top: 18px;
  margin-top: 18px;
}

section:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: darkgrey;
  font-weight: 600;
}

p,
ul {
  margin: 0 0 12px 0;
  line-height: 1.55;
  font-size: 15px;
}

.small {
  font-size: 14px;
  color: black;
}
img{
  width: 100%;
  height: 100%;
}
/* RESPONSIVE */
@media (max-width: 640px) {
  body {
    padding: 24px 12px;
    gap: 20px;
    margin: 20px;
  }

  header h1 {
    font-size: 20px;
  }
}
