/* tarjetas de diseño*/
.tarjeta {
    display: flex;
    flex-direction: row;
    background: #f0f8ff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 30px 0;
    transition: transform 0.3s ease;
  }

  .tarjeta:hover {
    transform: scale(1.02);
  }

  .tarjeta img {
    width: 400px;
    height: auto;
    transition: transform 0.5s ease;
  }

  .tarjeta:hover img {
    transform: scale(1.05) rotate(2deg);
  }

  .contenido {
    padding: 20px;
    flex: 1;
  }

  @media (max-width: 768px) {
    .tarjeta {
      flex-direction: column !important;
      text-align: center;
    }

    .tarjeta img {
      width: 100%;
    }
  }

  .izquierda {
    flex-direction: row-reverse;
  }

  h1 {
    text-align: center;
    font-family: Arial, sans-serif;
  }

  /* ========================
   Sección Información
   ======================== */
.info-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.info-section .container {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

.info-section h1,
.info-section h2 {
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 10px;
}

.info-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.info-section ul li {
  margin-bottom: 8px;
}

.info-section p {
  margin-bottom: 12px;
}

