
     
    .nota-card {
      border-radius: 10px;               /* Borde redondeado */
      box-shadow: 0 6px 18px rgba(0,0,0,0.25); /* Sombra más notoria */
      overflow: hidden;                  /* Redondeo también en la imagen */
      background: #fff;
      transition: transform 0.2s ease;
    }
    .nota-card:hover {
      transform: translateY(-5px);       /* Efecto al pasar el mouse */
    }
    .nota-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .nota-body {
      padding: 16px;
    }
    .nota-body h5 {
      font-weight: 700;
      margin-bottom: 10px;
    }
    .nota-body p {
      font-size: 0.95rem;
      color: #444;
    }
	
	   .hero {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.4);
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    user-select: none;
  }

  .arrow.left { left: 10px; }
  .arrow.right { right: 10px; }

  /* Opcional: texto sobre hero */
  .hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 0 0 5px black;
  }
  h1 {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
    .data-table td {
      padding: 8px;
      border-bottom: 1px solid #ddd;
    }