
   @font-face {
  font-family: 'Gilroy Regular';
  src: url('../fonts/Gilroy/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal; /* o bold si es necesario */
  font-style: normal;  /* o italic si es necesario */
}

@font-face {
  font-family: 'GilroyExtraBoldItalic';
  src: url('../fonts/Gilroy/Gilroy-ExtraBoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
} 
 

 
 html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
  .top-bar {
    background-color: #61dca3;
    height: 35px;
    font-size: 14px;
    margin: 0 !important;
    padding: 0 15px;
    position: fixed;
    z-index: 11000;
    top: 0;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
  }
  .phoneTop {
    background-color: #61dca3 !important;
  }

  .top-bar a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
  }

  /* Visible top-bar on mobile too */
  @media (max-width: 991px) {
    .top-bar {
      height: auto;
      min-height: 35px;
      padding: 5px 15px;
    }
    .top-bar .container {
        flex-direction: row;
        justify-content: center !important;
    }
  }

  nav.navbar {
    margin: 0 !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: none;
    position: fixed;
    top: 35px; /* Directly below top-bar */
    width: 100%;
    z-index: 10999; /* Just below top-bar but above content */
    background: #ffffff !important;
    transition: all 0.3s ease;
    height: 65px;
  }

  /* Mobile Navigation: Precise Stacking to avoid clashing */
  /* 📱 STATE-OF-THE-ART DARK MOBILE NAVIGATION */
  @media (max-width: 991px) {
    /* 1. Header Integration */
    .top-bar {
      height: 38px !important;
      background: #1a1c21 !important;
      z-index: 11002 !important;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex !important;
      align-items: center;
    }
    
    nav.navbar {
      top: 38px !important;
      height: 68px !important;
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(10px); /* Glassmorphism effect */
      z-index: 11001 !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.05) !important;
    }

    .navbar-header {
      height: 68px !important;
      padding: 0 20px !important;
    }

    .navbar-brand {
      width: 125px !important;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    }

    /* 2. Professional SlickNav Button */
    .slicknav_menu {
      display: block !important;
      background: transparent !important;
      z-index: 100000 !important;
    }

    .slicknav_btn {
      background: #1a1c21 !important;
      padding: 9px 11px !important;
      border-radius: 10px !important;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .slicknav_btn:hover { background: #61dca3 !important; }
    .slicknav_btn .slicknav_icon-bar { background: #fff !important; height: 3px !important; width: 22px !important; }

    /* 3. The Ultra-Premium Dark Slide-Out */
    .slicknav_nav {
      position: fixed !important;
      top: 106px !important;
      left: 0 !important;
      width: 100% !important;
      height: calc(100vh - 106px) !important;
      background: #1a1c21 !important;
      z-index: 99997 !important;
      padding: 0 !important;
      overflow-y: auto !important;
      scroll-behavior: smooth;
      border: none !important;
      box-shadow: none !important;
    }

    .slicknav_nav, 
    .slicknav_nav ul, 
    .slicknav_nav li, 
    .slicknav_nav a, 
    .slicknav_item,
    .slicknav_row {
      margin: 0 !important;
      padding: 0 !important;
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
      background: #1a1c21 !important; /* Mantener fondo oscuro para evitar bug de blanco sobre blanco */
    }

    /* Quitar línea verde de activo */
    .nav-item.active > .nav-link::after,
    .slicknav_nav .active > a::after {
      display: none !important;
    }

    .slicknav_nav a, .slicknav_nav .slicknav_row {
      padding: 4px 15px !important; /* Regreso al modo súper apretado */
      display: flex !important;
      justify-content: center !important; /* Centrado como antes */
      align-items: center !important;
      color: #ffffff !important;
      text-transform: uppercase !important;
      font-size: 14px !important;
      font-weight: 500 !important;
      min-height: 25px !important;
    }

    .slicknav_nav a:hover {
      color: #61dca3 !important;
      background: rgba(255,255,255,0.05) !important;
    }

    /* 📂 SUBMENUS (LOS BEBES): Estilo para diferenciarlos pero mantener el orden */
    .slicknav_nav ul a {
      padding: 4px 15px !important;
      font-size: 13px !important;
      color: rgba(255,255,255,0.7) !important;
      text-transform: none !important;
      background: #111317 !important; /* Un poquito más oscuro para que se note */
      border-left: 2px solid #333 !important; /* Guía visual discreta */
    }

    .slicknav_nav ul a:hover {
      background: transparent !important;
      color: #61dca3 !important;
      padding-left: 50px !important;
    }

    /* Elegant Arrows */
    .slicknav_arrow {
      position: absolute !important;
      right: 30px !important;
      font-size: 10px !important;
      color: rgba(255,255,255,0.2) !important;
      transition: all 0.3s ease;
    }

    .slicknav_open .slicknav_arrow {
      transform: rotate(90deg);
      color: #61dca3 !important;
    }

    .hero-area {
      margin-top: 106px !important;
    }
  }


  /* Style for navigation on larger screens */
  .navbar-light .navbar-nav .nav-link {
    color: black;
  }


  .navbar-light .navbar-nav .nav-link:hover {
    color: #61dca3;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .job-search-form {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 991px) {
  .form-row {
    flex-direction: column;
  }
  .form-group {
    margin-right: 0 !important;
    margin-bottom: 3px;
    border-radius: 8px;
  }
  .submit-btn {
    border-radius: 8px;
    overflow: hidden;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-right: 1px;
  background: #fff;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  flex: 1;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #777;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  border: none;
  outline: none;
  font-size: 16px;
  padding: 5px 0;
  color: #333;
  font-weight: 400;
}

.form-group select {
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

.submit-btn {
  padding: 0;
  background: #61dca3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn button {
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 25px;
  cursor: pointer;
}

.card-custom {
  display: block;
  padding: 0px;
  background: transparent;
  text-align: center;
  border-radius: 0px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
   border: 1px solid #61dca3;
       padding: 0px 0px 10px 0px;
   
}


.card-custom:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: translateY(-3px);
}
.ft9{
font-weight: 900;
}

.card-custom .icon {
  font-size: 20px;
  color: #333;
  width: 100%;
  font-weight: 900;
  height: auto;
  min-height: 40px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 10px;
}
.title-with-line {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}

.title-with-line::before,
.title-with-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px; /* Ajusta este ancho según tus tarjetas */
  height: 2px;
  background-color: #61dca3;
}

.title-with-line::before {
  left: 0;
  transform: translateY(-50%);
}

.title-with-line::after {
  right: 0;
  transform: translateY(-50%);
}

.title-with-line span {
  position: relative;
  z-index: 1;
  background: #f8f9fa; /* Fondo del contenedor para "cortar" la línea */
  padding: 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.social-icons {
  display: flex;
  gap: 10px;
  float: inline-end;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #61dca3;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-circle i {
  color: #fff;
  font-size: 18px;
}

.social-circle:hover {
  transform: scale(1.1);
}

.menu li a {
  font-size: 12px;
  color: #888888;
}


.hero-area {
  position: relative;
  overflow: visible !important;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

@media (max-width: 991px) {
  .hero-area {
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .hero-area {
    min-height: 400px;
    padding: 80px 15px;
  }
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  z-index: 5;
}

.slide-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .slide-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: rgba(255, 255, 255, 0.7);
  animation: progress 4s linear forwards;
}

@keyframes progress {
  from { width: 0%; }
  to { width: 100%; }
}

.slider-dots {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
}

@media (max-width: 991px) {
  .slider-dots {
    right: 15px;
    gap: 8px;
  }
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.slider-dots .dot.active {
  opacity: 1;
}

.contents {
  position: relative;
  z-index: 3;
}

/* Estilo para el dropdown: fondo negro */
.navbar-nav .dropdown-menu {
  background-color: #333 !important; /* Fondo negro */
  border: none;
  border-radius: 0;
  padding: 0;
  position: absolute;
  margin-top: 15px; /* espacio para la pestañita */
}

/* Pestañita (triángulo hacia arriba) */
.navbar-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px; /* ajusta esta posición si quieres mover la pestañita */
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #333;
}

/* Estilo para los enlaces del dropdown */
.navbar-nav .dropdown-menu .dropdown-item {
  color: #ffffff; /* Letras blancas */
  padding: 10px 20px;
  transition: all 0.3s ease;
}

/* Hover sobre los enlaces: fondo verde claro, texto negro */
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #61dca3;
  color: #000000;
}

/* Mostrar el dropdown al pasar el cursor */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}


/* Enlace activo */
.navbar-nav .nav-link.active {
  border-bottom: 2px solid #61dca3;
  border-radius: 0px;
}

.sub-menu-container .nav-link {
  padding: 8px 15px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.sub-menu-container .nav-link:hover {
  color: #007b5e; /* Verde bonito o lo que combine */
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.program-card {
  border: 2px solid #61dca3; /* verde suave */
  padding: 20px;
  border-radius: 4px;
  background-color: white;
}

.program-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.bold-title {
  font-weight: bold;
}

.program-card p {
  font-size: 1rem;
  color: #333;
}

.btn-green {
  background-color: #61dca3;
  color: white;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  display: inline-block;
}

.btn-green:hover {
  background-color: #61dca3;
  text-decoration: none;
}
.btn-hambu{
  margin: 14px 0;
    background-color: #231f20;
    padding: 8px 9px 7px;
}

  .alertify-notifier.ajs-right .ajs-message.ajs-visible {
    right: 290px;
    color: white;
}
/*nuevos*/

.card-body{
  padding: 5px;
  background: #ffffff;
}

.job-title-card{
  color: #2e2e30;
    font-size: 16px;
    margin: 0;
    FONT-WEIGHT: 600;
}

.job-meta-card{
  color: #888888;
  font-size: 14px;
  margin: 0;
}

.form-control {
    
    padding: 7px 10px !important;
    border-radius: 4px !important;
}


.cardgeneral{
  display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #f6f0f0;
    background: white;
    margin-bottom: 15px;
}

.carddesc {
    color: #888;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Gilroy Regular', sans-serif;
}

.desheader{
      font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6fcf97;
    margin: 10px 0px;
}



  .ajs-dimmer {
    backdrop-filter: blur(3px);
    background: rgba(0, 0, 0, 0.45) !important;
  }

  .ajs-dialog {
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
    max-width: 480px !important;
    font-family: 'Inter', 'Segoe UI', sans-serif;
  }

  .ajs-header {
    background: #61DCA3 !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 14px 20px !important;
    border: none !important;
    font-size: 16px;
  }

  .ajs-content {
    color: #1E1E1E;
    font-size: 15px;
    padding: 20px 22px !important;
    line-height: 1.45;
    text-align: center;
  }

  .ajs-footer {
    padding: 15px 20px !important;
    border-top: 1px solid #f1f1f1;
  }

  .ajs-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .ajs-button {
    border-radius: 10px !important;
    padding: 10px 20px !important;
    font-weight: 600;
    border: none !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }


  /* ✅ YES = Verde SBH */
  .ajs-ok {
    background-color: red !important;
    color: #fff !important;
    box-shadow: 0 6px 14px rgba(97, 220, 163, 0.3);
  }
  .ajs-ok:hover {
    background-color: #ff00008c !important;
  }

  /* ❌ NO = Rojo */
  .ajs-cancel {
    background-color: #61DCA3 !important;
    color: #fff !important;
    box-shadow: 0 6px 14px rgba(231, 76, 60, 0.25);
  }
  .ajs-cancel:hover {
    background-color: #61dca3ba !important;
  }

  .ajs-message.ajs-success {
    background-color: #61DCA3 !important;
    color: #fff !important;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(97, 220, 163, 0.25);
  }
  .ajs-message.ajs-error {
    background-color: #E74C3C !important;
    color: #fff !important;
    border-radius: 10px;
  }

  .navbar-brand {
    position: relative;
    padding: 12px 2px !important  ;
    max-width: 160px !important ;
    width: auto;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        
        margin-top: -15px;
    }
}