.marcoContenido {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
      background-color: #f4f4f4;
    }

    .fotoPortada {
      width: 100%;
      max-height: 350px;
      object-fit: cover;
      display: block;
    }

    .bloqueResumen,
    .bloqueSobreMi,
    .bloqueLogros,
    .bloqueValores {
    background-color: rgba(200, 200, 200, 0.3);
  padding: 20px;
  margin: 20px;
  width: calc(100% - 60px); /* 100% menos 20px a cada lado */
  text-align: justify;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}

    .fotoPerfil {
      width: 150px;
      height: 150px;
      object-fit: cover;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      text-align: center;
      color: #003B46;
    }

    p {
      font-size: 1.1em;
      color: #333;
    }

    ul {
      padding-left: 20px;
    }

    .gridTarjetas {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 10px 0;
    }

    .tarjetaValor, .tarjetaLogro {
      background-color: #ffffffcc;
      border-left: 6px solid #3a2bc0;
      padding: 16px;
      border-radius: 8px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .tarjetaValor:hover, .tarjetaLogro:hover {
      transform: translateY(-5px);
    }

    .tarjetaValor::before, .tarjetaLogro::before {
      content: '✓';
      color: #2b2dc0;
      margin-right: 8px;
      font-weight: bold;
    }

    /* Estilos para galería */
    .galeriaHobbies {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 10px;
    }

    .galeriaHobbies img {
      width: 100%;
      height: auto;
      display: none;
    }

    .galeriaHobbies img.active {
      display: block;
    }

    .botonGaleria {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0,0,0,0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 1;
    }

    .botonGaleria.izquierda {
      left: 10px;
    }

    .botonGaleria.derecha {
      right: 10px;
    }

.descripcionImagen {
  text-align: center;
  margin: 15px auto 30px;
  padding: 12px 20px;
  max-width: 600px;
  font-size: 1.1em;
  font-style: italic;
  background-color: rgba(255, 255, 255, 0.7);
  border-left: 6px solid #336B87;
  border-radius: 8px;
  color: #003B46;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


p strong {
  color: #336B87; /* azul sobrio y profesional */
  font-weight: bold;
}

p {
  font-size: 0.95em;  /* o prueba con 0.9em si quieres aún más pequeño */
  color: #333;
  line-height: 1.6;
}

.columna1 {
  color: #f5f5f5 !important;
}