/* ========================= */
/* TOP BAR */
/* ========================= */

html, body {
  overflow-x: hidden;
}
.top-bar {
  background: #0d1117;
  padding: 6px 0;
  font-size: 14px;
  position: relative;
  z-index: 1051;
}

.top-bar .top-social {
  color: #bbb;
  transition: 0.3s;
}

.top-bar .top-social:hover {
  color: #25D366;
}

/* ========================= */
/* NAVBAR PRINCIPAL */
/* ========================= */
.main-navbar {
  background: #111827;
  padding: 15px 0;
  transition: 0.3s ease;

  position: relative;
  z-index: 1050; /* Mayor que overlays */
}

.brand-text {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: #ddd !important;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #25D366 !important;
}

/* Línea animada debajo */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #25D366;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ========================= */
/* BOTÓN CTA */
/* ========================= */
.btn-cta {
  background: rgba(59,130,246,0.15);
  color: #53e41a;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-cta:hover {
  color:white;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.contenedorSI{
    
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

/* Responsive ajustes */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}

