.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #353273 !important;
  padding: 15px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .navbar-brand {
  color: #fff !important;
}

.header .navbar-nav .nav-link {
  color: #fff !important;
}

.header .navbar-nav .nav-link:hover {
  color: #ddd !important;
}

.header .navbar-nav {
  margin-right: 0;
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff !important;
  margin-left: 20px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 20px;
}

.header .logo img {
  height: 75px;
  width: auto;
  margin-right: 10px;
}

.navbar {
  background-color: #353273 !important;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-left: 10px;
}

.navbar-brand {
  padding: 5px 15px;
}

.navbar-nav {
  margin-right: 0;
}

.navbar-nav .dropdown-menu {
  background-color: #353273;
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar-nav .dropdown-menu li a {
  color: #fff !important;
  padding: 10px 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.navbar-nav .dropdown-menu li a:hover {
  background-color: #4541BF;
  color: #fff !important;
}

.navbar-nav .dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .dropdown-menu li:last-child {
  border-bottom: none;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 767px) {
  .navbar-nav .dropdown-menu {
      position: static;
      float: none;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.2);
      box-shadow: none;
  }

  .navbar-nav .dropdown-menu li a {
      padding: 10px 15px 10px 30px;
  }
}

/*---------------------------------------------------*/

.remote-hero {
    background: linear-gradient(135deg, #353273, #2a245c);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
  }
  
  .remote-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .remote-hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .remote-hero .btn-primary {
    background-color: #fff;
    color: #353273;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .remote-hero .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Estilos para las tarjetas de beneficios */
  .benefit-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-card .icon-box {
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    color: #353273;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .benefit-card p {
    color: #666;
    font-size: 16px;
  }
  
  .step {
    text-align: center;
    padding: 20px;
    position: relative;
  }
  
  .step-number {
    background-color: #353273;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .step h3 {
    color: #353273;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .step p {
    color: #666;
    font-size: 15px;
  }
  
  .problem-list {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .problem-list h3 {
    color: #353273;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
  
  .problem-list ul {
    list-style: none;
    padding-left: 0;
  }
  
  .problem-list ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
  }
  
  .problem-list ul li::before {
    content: "▹";
    color: #353273;
    position: absolute;
    left: 0;
  }
  
  .testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .testimonial-content {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  
  .testimonial-content p {
    font-style: italic;
    color: #666;
    position: relative;
    padding-left: 30px;
  }
  
  .testimonial-content p::before {
    content: '"';
    font-size: 60px;
    color: #353273;
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -20px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
  }
  
  .testimonial-author h4 {
    color: #353273;
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .testimonial-author p {
    color: #888;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .bg-gray {
    background-color: #f9f9f9;
  }
  
  .section-title {
    color: #353273;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .bottom-line {
    border: 0;
    height: 2px;
    background: #353273;
    width: 100px;
    margin: 20px auto;
  }
  
  .icon-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .remote-hero {
      padding: 100px 0 60px;
    }
    
    .remote-hero h1 {
      font-size: 32px;
    }
    
    .remote-hero p {
      font-size: 18px;
    }
    
    .section-padding {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 30px;
    }
    
    .benefit-card, .problem-list, .testimonial {
      margin-bottom: 30px;
    }
  }

  /*---------------------------------------------------*/

  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}