.top-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top-bar i {
    margin-right: 10px;
  }
  .navbar-brand img {
    max-height: 80px; /* Logo más alto */
  }
  .navbar {
    padding: 15px 20px; /* Espaciado del menú */
  }
  .dropdown-menu {
    z-index: 1000; /* Para asegurar que los submenús se muestren correctamente */
  }
  .section-title {
    font-weight: bold;
    font-size: 1.5rem;
  }
  .section-subtitle {
    margin-top: 10px;
    color: #666;
  }
 
.section-title {
    font-weight: bold;
    font-size: 2rem;
  }
  .underline {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: black;
    margin-top: 5px;
    margin-bottom: 15px;
  }
  .text-muted {
    margin-bottom: 20px;
    color: #6c757d;
  }
  .btn-arrow {
    background-color: black;
    color: white;
    border: none;
    font-size: 1.2rem;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .file-names {
    color: red;
    font-size: 0.9rem;
    text-align: center;
  }
  .carousel-inner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .left-section {
    text-align: left;
  }
  .right-section {
    text-align: center;
  }
  .card-img-top {
          object-fit: cover;
          height: 200px;
      }
      .button-small {
          display: inline-block;
          padding: 5px 10px;
          background-color: black;
          color: white;
          font-weight: bold;
          border-radius: 3px;
          text-decoration: none;
          transition: background-color 0.3s;
          text-align: left;
      }
      .button-small:hover {
          background-color: red;
      }
      .card-body {
          text-align: center;
      }
      .card-footer {
          text-align: left;
      }
      .card:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  form {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

form h5 {
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.form-label {
  color: #555;
  font-size: 14px;
  font-weight: bold;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: #d9534f;
  box-shadow: 0 0 5px rgba(217, 83, 79, 0.5);
  outline: none;
}

button {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

button:hover {
  background-color: #d9534f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:active {
  transform: translateY(0);
  box-shadow: none;
}
