body {
  background: url('/background.svg') no-repeat center center fixed;
  background-size: cover;
  background-color: #ffffff; /* Fallback */
}

/* Opcional: para agregar un filtro translúcido encima */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%; 
  z-index: -1;
}
.nav-link-custom {
    color: #007392 !important;
    font-weight: 500;
  }
  
  .nav-link-custom:hover {
    color: #005f78 !important;
  }
  .celular-custom{
    color: #36B7EA
  }
 
  .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .hero-title .highlight {
    color: #009bc4;
  }
  
  /* Botón principal */
  .btn-contact {
    background-color: #3dc4e6;
    border: none;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
  }
  
  .btn-contact:hover {
    background-color: #1baecf;
  }
  
  /* Chips */
  .chip {
    background-color: white;
    color: #007392;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  .service-card {
    background: white;
    border-radius: 30px;
    max-width: 850px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  }
  
  .training-section {
    background: url('/training.png') no-repeat center center;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  
  .training-overlay {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    max-width: 500px;
    color: white;
  }
  
  /* Botón azul pill */
  .btn-pill {
    background-color: #3dc4e6;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
  }
  
  .btn-pill:hover {
    background-color: #2cb6d8;
  }
  .choose-card {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
  }
  
  .choose-card:hover {
    transform: translateY(-5px);
  }
  .contact-section {
    background: linear-gradient(to right, #009bc4, #00aedd);
    color: white;
  }
  
  .backdrop-blur {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.15);
  }
  html {
    scroll-behavior: smooth;
  }
  section[id] {
    scroll-margin-top: 100px; /* o el alto real de tu navbar */
  }
  