/* style.css */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.main-wrapper59 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container59 {
  flex: 1; /* ✅ hace que empuje el footer abajo */
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo59 {
  background-color: #191430;
  padding: 10px;
  text-align: center;
}

.logo59 img {
  max-height: 150px;
}

.hero-img59 {
  position: relative;
}

.hero-img59 img {
  width: 100%;
  display: block;
}

.decorative59 img {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: auto;
}

.profile59 {
  position: absolute;
  bottom: -40px;
  left: 70%;
  transform: translateX(-50%);
  border: 2px solid white;
  border-radius: 50%;
  overflow: hidden;
  width: 170px;
  height: 170px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.profile59 img {
  width: 100%;
  height: auto;
}

.info59 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -15px;
  padding: 10px 5px;
  position: relative;
}

.info-text59 {
  text-align: left;
  margin-top: -40px; /* Sube el bloque cerca al perfil */
  margin-left: 20px; /* Mueve hacia la izquierda */
}

.cargo59 {
  margin-top: 0px;
  padding: 0px 20px;
  font-size: 0.95em;
  color: #383838;
  font-weight: 400;    /* semi‑bold según estándar CSS */  /* 1️⃣ */
  font-style: italic;  /* cursiva */                        /* 2️⃣ */
}

.info-right59 {
  margin-right: -20px;
  margin-top: 40px;
}

.txtcargo59 {
  margin-top: 5px;
  font-size: 0.9em;
  color: #f0f0f0;
}

.contacto-title59 {
  margin-top: 25px;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.contacto59 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0px;
  padding: 0 30px;
}

.contacto59 a {
  text-decoration: none;
  padding: 12px;
  background-color: #0b0916;
  color: white;
  border-radius: 25px;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  text-align: center;
}

.contacto59 a:hover {
  background-color: #79e425;
}

.footer59 {
  background-color: #0b0916;
  padding: 2px 5px;
  text-align: center;
  width: 100%;
}

/* Responsive general */
@media screen and (min-width: 600px) {
  .container59 {
    margin-top: 20px;
    max-width: 400px;
  }
}

.boton-estilo-kc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  border-radius: 40px;
  background: linear-gradient(145deg, #79e425, #0b0916);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1em;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.boton-estilo-kc:hover {
  color: white;
  background: linear-gradient(145deg, #0b0916, #79e425);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
}

.texto-kc {
  padding: 0px 10px;
}

.icono-kc {
  background-color: white;
  border-radius: 50%;
  width: 28px;     /* Ancho fijo */
  height: 28px;    /* Alto fijo */
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #191430;
  font-size: 1.4em;
}

.icono-kc:hover {
  color: #191430;
}