/* Estilos modernos para sección About */
#about {
  --primary: #deb212; /* Azul aeronáutico */
  --secondary: #deb212; /* Naranja de acento */
  --dark: #1e1e24; /* Texto principal */
  --light: #f8f9fa; /* Fondo claro */
  --gray: #6c757d; /* Texto secundario */

  padding: 6rem 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(10, 36, 99, 0.03) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  animation: float 15s infinite alternate ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5%, 5%);
  }
}

#modalmoreabout {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
}

#modalmoreabout::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

#texto1 {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

#texto1 b {
  color: var(--primary);
  font-weight: 700;
}

.about-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.who-we-are {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.about-content h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.about-content ul li {
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--dark);
}

.about-content ul li i {
  position: absolute;
  left: 0;
  top: 0.2em;
  color: var(--secondary);
  font-size: 1.2rem;
}

.about-images {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-images .img-fluid {
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

.about-images .img-fluid:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Layout de imágenes moderno */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  height: 100%;
}

.image-grid img:nth-child(1) {
  grid-column: span 2;
  height: 240px;
  object-fit: cover;
}

.image-grid img:nth-child(2),
.image-grid img:nth-child(3) {
  height: 180px;
  object-fit: cover;
}
/* Estilos de la sección servicios */
/* Estilos modernos para sección de Servicios - Versión Black Hawk */
#services {
  --primary: #deb212; /* Azul aeronáutico */
  --secondary: #deb212; /* Naranja de acento */
  --dark: #1e1e24; /* Texto principal */
  --light: #f8f9fa; /* Fondo claro */
  --gray: #6c757d; /* Texto secundario */

  padding: 7rem 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(10, 36, 99, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      to bottom,
      rgba(248, 249, 250, 1) 0%,
      rgba(248, 249, 250, 0.95) 100%
    );
  z-index: 0;
  animation: bg-pulse 20s infinite alternate;
}

@keyframes bg-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.services-title {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}

.services-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: #deb212;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1rem;
}

.services-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.services-title p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 107, 53, 0.2);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(10, 36, 99, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: white;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.service-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.service-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-image:hover {
  transform: scale(1.03);
}

.service-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.service-cta {
  margin-top: 2rem;
  text-align: center;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/*estilo para el boton whatsapp*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 212, 24, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/*estilo para mision vision*/
/* Estilos generales de la sección */
#features {
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3f9 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}

#features h3,
#features h4,
#features h5 {
  color: #1a1a1a;
  font-weight: 600;
}

#features p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Imagen principal */
.features-image img {
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.features-image img:hover {
  transform: scale(1.03);
}

/* Icon Box */
.icon-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.icon-box:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.icon-box i {
  font-size: 2.2rem;
  margin-right: 15px;
  opacity: 0.9;
  transition: transform 0.3s;
}

.icon-box:hover i {
  transform: scale(1.1);
}

/* Títulos */
#features h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#features h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .features-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .icon-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-box i {
    margin-bottom: 10px;
  }
}
/*estilo para por que elegir a nosotros*/
#porque-elegirnos {
  background: #fdfdfd;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #202020;
}

.card-box {
  background: #fff;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #eee;
}

.card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-box h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.card-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.icon i {
  transition: transform 0.3s ease;
}

.card-box:hover .icon i {
  transform: scale(1.2) rotate(5deg);
}
/* footer*/
.footer {
  border-top: 2px solid #eaeaea;
  background-color: #f9f9f9;
}

.footer .icon {
  min-width: 32px;
}

.social-links a {
  transition: all 0.3s ease-in-out;
}

.social-links a:hover {
  color: #007bff; /* Azul elegante */
  transform: scale(1.2);
}
/*selecotr de idiomas*/
.btn-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1050;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-float:hover {
  background: #0056b3;
}
.modal-content {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}