body {
  font-family: 'Karla', sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.4;
}

/* HEADER */
.header {
  background-color: #5ea2f1;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

.perfil-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}



h1 {
    font-family: 'Jomhuria', cursive;
    font-size: 120px;
}

main {
  padding: 60px 20px;
}

.picto-container {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;
  gap: 40px; /* separación entre imágenes */
  flex-wrap: wrap; /* por si en móvil necesitan bajar */
}

.pictoimg {
  max-width: 280px;  /* puedes ajustar tamaño */
  width: 100%;
  height: auto;
}
.picto-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-right: 80px;
}

/* Texto a la izquierda */
.picto-info p {
  max-width: 420px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 60px;
}

/* Imagen grande a la derecha */
.picto-grande {
  max-width: 700px; 
  width: 100%;
  height: auto;
}





/* FOOTER */
.footer {
  position: relative;
  padding: 36px 20px;
  background: #f2fbff;
}

.footer-shape {
  position: absolute;
  left: 12px;
  bottom: -18px;
  width: 160px;
  height: 80px;
  background: #fff4b0;
  border-radius: 6px;
  transform: rotate(-4deg);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 3;
  text-align: center; /* texto centrado */
  font-family: 'Karla', sans-serif;
}

.small-logo {
  margin-bottom: 12px;
  text-align: left; /* logo a la izquierda */
}

.small-logo img {
  width: 120px; /* logo más grande */
  height: auto;
  display: block;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 90px;
  }

  .picto-grande {
    max-width: 500px;
  }

  .picto-info {
    flex-direction: column; /* texto arriba, imagen abajo */
    align-items: center;
    padding-right: 20px;
    margin-top: 40px;
  }

  .picto-info p {
    margin-left: 0;
    text-align: center; /* centrado en columna */
    max-width: 90%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 70px;
  }

  .pictoimg {
    max-width: 200px;
    margin-bottom: 20px;
  }

  .picto-grande {
    max-width: 100%;
  }

  main {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 50px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .pictoimg {
    max-width: 150px;
  }

  .picto-info p {
    font-size: 15px;
  }
}
