

body {
  background-color: #e4f0fb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
}

.hero {
  position: relative;
  width: 100%;
  height: 150px;
  background: url("codigo.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 20px;
  text-align: left;
}

.hero-content h1 {
  
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-content p {
  font-size: 1.0rem;
  opacity: 0.9;
  
}

    .card {
     transition: transform 0.2s ease, box-shadow 0.2s ease;
}

     .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(13, 110, 253, 0.15);
}

     .btn-outline-primary:hover {
      color: #fff;
}
