
/* NAVBAR */
.navbar-dnatech {
    background: linear-gradient(45deg, #0A2463 60%, #3E92CC 40%, #0A2463 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.navbar-dnatech .navbar-brand {
    color: #FFFFFF;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.navbar-dnatech .nav-link {
    color: #FFFFFF !important;
    margin-right: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

/* .navbar-dnatech .nav-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background-color: #00FF9D;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
} */

/* .navbar-dnatech .nav-link:hover::after {
    width: 100%;
} */



.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2300FF9D' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .navbar-dnatech .navbar-collapse {
        /* background-color: #0A2463; mantiene consistencia */
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }
}

/* RESPONSIVE */
  .section-highlight {
    background: linear-gradient(to bottom right, #ffffff, #f1f4f9);
    border-radius: 20px;
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
  }

  .section-highlight:hover {
    transform: scale(1.01);
    box-shadow: 0 0 50px rgba(0, 123, 255, 0.1);
  }

 .section-highlight h2 {
    font-size: 2rem;
    color: #0d6efd;
  }
/* SERVICIOS */

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #servicios h2 {
        font-size: 2rem;
    }

    .card-service {
        padding: 20px;
    }
}

/* SERVICIOS  */
.section-vanguardista {
background-image: url('https://web.dnatech.net.ar/includes/assets/img/back.jpg'); 
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
/* height: 100vh; */
display: flex;
align-items: center;
justify-content: center;
}

.titulo-vanguardista {
       background: linear-gradient(90deg, rgb(231, 65, 53), rgb(221, 186, 91));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
  text-shadow: 0 0 10px rgba(106, 0, 244, 0.4);
}

.servicio-card {
  background-color: #1A1A1A;
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid #2c2c2c;
  box-shadow: 0 0 0 transparent;
}

.servicio-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4), 0 0 10px rgba(106, 0, 244, 0.3);
}

.icono-servicio {
  font-size: 60px;
  color: #00d8f4;
  text-shadow: 0 0 10px rgba(106, 0, 244, 0.3);
}

.card-title {
  color: #ffffff;
  font-size: 1.3rem;
  margin-top: 10px;
}

.card-text {
  color: #ccc;
  font-size: 0.95rem;
}

.btn-demo {
  background-color: #00F5FF;
  color: #000000;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.4);
}

.btn-demo:hover {
  background-color: #00c9cc;
  transform: scale(1.05);
  color: #000;
}

/* PRESENTACION */
.hero-section {
  position: relative;
  color: white;
  overflow: hidden;
  padding: 120px 0;
}

.hero-section::before,
.hero-section .overlay {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* oscurecimiento */
  z-index: 1;
}

.hero-section .content {
  z-index: 2;
  position: relative;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc70, #ff8177);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: #f5f5f5;
}

.hero-section .btn {
  margin-top: 30px;
  background-color: #ff8177;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-section .btn:hover {
  background-color: #ffcc70;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}



.dropdown-menu {
  background-color: #0A2463;
 
}

.dropdown-menu .dropdown-item {
  color: #FFFFFF;
  transition: background 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #3E92CC;
  color: #FFFFFF;
}
