/* Top bar verde */
.top-bar-green {
  background-color: #10642e;
  color: #fff;
  font-size: 0.9rem;
}
@media (max-width: 767px) {  
  .top-bar-green {
    background-color: #10642e20;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    .top-bar-contact {
      display: none;
    }
    .top-bar-social-login {
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
  }
  .top-bar-green:not(.transparent) {
    background-color: #10642e;
  }
}
.top-bar-green a {
  color: #fff;
  text-decoration: none;
  margin-right: 1rem;
}
.top-bar-green a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.access-login a {
  margin-right: 0;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #0b492144;
  color: #fff;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background-color 0.3s;
  margin-right: 0;
}
.top-bar-social a:hover {
  background-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.top-bar-social-login {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.access-login {
  display: inline-flex;
  align-items: end;
}
