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-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  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;
}