body {
  /*padding-top: 80px;*/
  margin: 0;
  font-family: Arial, sans-serif;
  background: #bfbfbf;
}


html {
  scroll-behavior: smooth;
}


section {
  scroll-margin-top: 100px;
}


/* NAVBAR */
.custom-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;

  background: transparent !important;   /* 🔥 FORZA transparencia */
  box-shadow: none !important;
  border: none !important;

  z-index: 9999;
  transition: all 0.3s ease;
}

/* NAV RESPONSIVE */
@media (max-width: 992px) {

  .navbar-collapse {
    background: rgba(10,37,64,0.95); /* fondo al desplegar */
    padding: 20px;
    border-radius: 10px;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-btn {
    display: block;
    width: 100%;

    margin: 5px 0;
    padding: 10px;

    border-radius: 10px;
  }

}
/* cuando haces scroll */

.custom-navbar.scrolled {
  background: rgba(10, 37, 64, 0.95) !important; /* azul con transparencia */
  backdrop-filter: blur(5px); /* 🔥 efecto moderno */
}


.navbar-nav .nav-link {
  color: white !important;
}


.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1); /* icono blanco */
}


.navbar-collapse {
  transition: all 0.3s ease;
}


.nav-btn {
  background: rgba(212, 175, 55, 0.145) !important; /* dorado transparente */
  border: 1px solid rgba(212, 175, 55, 0.113) !important;

  color: rgb(235, 227, 227) !important;
  border-radius: 25px;

  padding: 6px 15px;
  margin-left: 10px;

  backdrop-filter: blur(3px);

  transition: all 0.3s ease;
  text-shadow: 0 2px 15px rgba(0,0,0,0.7);
}

/* HOVER */
.nav-btn:hover {
  background: linear-gradient(135deg, #d4af37, #f1d27a) !important;
  color: #0a2540 !important;

  transform: translateY(-2px);
}


/* LOGO */
.navbar-brand img {
  height: 45px;
  background: white;
  padding: 6px;
  border-radius: 10px;
}

/* VIDEO */

/* HERO VIDEO */

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0; /* 🔥 importante */
}

/* video fondo */

.video-bg {
  position: absolute;
  top: 60%;   /* 🔥 antes estaba en 50% */
  left: 50%;
  width: 100%;
  height: 100%;
  object-position: center 20%;
  object-fit: cover;
  transform: translate(-50%, -60%);
  opacity: 0;
  transition: opacity 2s ease-in-out;

}


.video-bg.active {
  opacity: 1;
}



/* contenido encima */

.hero-content {
  position: relative;

  display: inline-flex;          /* 🔥 clave real */
  flex-direction: column;
  align-items: center;

  width: fit-content;            /* 🔥 evita ancho completo */
  max-width: 50%;

  margin: 0 auto;                /* centrar */
  padding: 25px 40px;

  background: rgba(201, 139, 5, 0.134);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(1px);

  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.049);

  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
   /*color: white;*/
  text-align: center;
  text-shadow: 0 2px 15px rgba(0,0,0,0.7);
  width: 100%;
  
  opacity: 0;
  transform: translate(-50%, -40%); /* un poco más arriba */
  filter: blur(0px);

  transition: all 1.2s ease;
}


.hero-content.show {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
}


.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}


.hero-content h1 .pro {
  color: #030b5d !important;
}

/* SEM */
.hero-content h1 .sem {
  color: #d4af37 !important;
}


.hero-content p {
  color: rgba(255,255,255,0.9);
}




.hero-content p {
  font-size: 22px;
  margin-top: 10px;
}


/* texto */
.video-note {
  position: absolute;
  bottom: 20px;
  right: 20px;

  font-size: 12px;
  color: #ffffff;

  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: 5px;

  z-index: 10;
}




/* SLIDER (BOOTSTRAP) */

.custom-carousel {
  border-radius: 20px;
  overflow: hidden;
  background: rgb(246, 243, 243);
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  /*background: black;*/ /* opcional: relleno elegante */
}


/* sombreado suave 
.carousel-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
}
*/

/* BOTONES slider */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 50%;
  width: 8%; /* más cómodo para click */
  z-index: 9999;
}


.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
}


.carousel-control-prev {
  left: -40px;
}

.carousel-control-next {
  right: -40px;
}

/* INTRO EMPRESA */
.intro {
  margin-top: 60px;
  margin-bottom: 40px;
}

.intro-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  line-height: 1.7;
  font-size: 16px;
}

/* título elegante */
.intro-title {
  text-align: center;
  color: #0a2540;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
}

/* línea decorativa */
.intro-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 10px auto 0;
}

/* lista */
.intro-box ul {
  margin-top: 15px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.intro-box li {
  margin-bottom: 8px;
}

/* efecto premium */
.intro-box:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

/* SECCIÓN CERTIFICACIONES */
.cert-section {
  padding: 100px 0;
  position: relative;

  background: linear-gradient(
    to bottom,
    #0a2540,
    #123b5c,
    #1c5a7a
  );

  overflow: hidden;
}

/* glow suave atrás */
.cert-section::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;

  width: 500px;
  height: 500px;

  transform: translateX(-50%);

  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
  filter: blur(100px);
}

/* subtitulo */
.cert-subtitle {
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
}

/* CARD */
.cert-card {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 15px;
  padding: 20px;

  backdrop-filter: blur(6px);

  transition: 0.3s;
}

/* LOGO */
.cert-card img {
  width: 100%;
  height: 90px;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

/* HOVER */
.cert-card:hover {
  transform: translateY(-10px);
  background: rgb(255, 255, 255);
}

.cert-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================= */
/* PROYECTOS */
/* ============================= */

.projects-section {
  padding: 60px 0;
  background: radial-gradient(
    circle at 50% 30%,
    #2d7fa3,
    #123b5c 50%,
    #0a2540 100%
  );
}

.projects-section h2 {
  color: white !important;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.projects-box {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 20px;
}

/* ================= */
/* LISTA IZQUIERDA */
/* ================= */

.project-list {
  list-style: none;
  padding: 0;
}

.project-list li {
  padding: 10px;
  margin-bottom: 8px;
  cursor: pointer;

  background: #f4f7fb;
  border-radius: 8px;

  transition: 0.3s;
}

.project-list li:hover {
  background: #d4af37;
  color: white;
}

.project-list li.active {
  background: #0a2540;
  color: white;
}

/* ================= */
/* DISPLAY */
/* ================= */

.project-display {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 centra todo horizontalmente */

}

/* ================= */
/* IMAGEN */
/* ================= */

.project-gallery {
  margin-bottom: 10px;
  background: rgba(255,255,255,0.08); /* estilo glass */
  color: white;
}

.project-img {
  width: 100%;
  max-height: 420px;

  object-fit: contain; /* 🔥 evita estiramiento */
  object-position: center;

  border-radius: 10px;
  cursor: pointer;

  background: rgba(255,255,255,0.08); /* estilo glass */
  color: white;

 /* pointer-events: none;*/ /* 🔥 deja pasar clic a botones */
}

/* BOTONES (slider bootstrap) */
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
  width: 8%;
}

/* ================= */
/* TEXTO */
/* ================= */

.project-info {
 
  margin-top: 20px;
  background: rgba(255,255,255,0.08); /* estilo glass */
  color: white;

  padding: 20px;

  border-radius: 15px;

  backdrop-filter: blur(6px);

  text-align: center; /* ✅ centrado */
  
  
  width: 100%;
  max-width: 900px; /* 🔥 usa más espacio */

  margin-left: auto;
  margin-right: auto;

  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.project-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.project-info p {
  font-size: 14px;
  margin-bottom: 8px;
}

.project-data {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-data li {
  font-size: 14px;
  margin-bottom: 6px;

}


.project-data strong {
  color: #d4af37; /* dorado corporativo */
}


.project-transition {
  animation: blurFade 0.5s ease;
}

@keyframes blurFade {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}



/* ================= */
/* MODAL */
/* ================= */

.img-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);

  justify-content: center;
  align-items: center;

  z-index: 99999;
}

.img-modal img {
  max-width: 90%;
  max-height: 90%;
}


.modal-img {
  max-height: 300px;
  border-radius: 10px;
}

/* lista */
.modal-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.modal-list li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* íconos */
.modal-list li::before {
  content: "✔ ";
  color: #d4af37;
  font-weight: bold;
}

.project-info,
.project-info h4,
.project-info p,
.project-data li {
  color: white;
}

/* ---------------- */
/* PROYECTO GALERIA */
/* ---------------- */

/* GALERÍA GRID */
.project-gallery-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  
  width: 100%;
  max-width: 900px; /* 🔥 clave */

  margin-bottom: 15px;
}

/* IMÁGENES */
.project-gallery-grid img {
  width: 32%;
  height: 320px; /* 🔥 más impacto */


  object-fit: cover;
  border-radius: 18px;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER */
.project-gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
}

/* TEXTO BLANCO */
.project-info,
.project-info h4,
.project-info p,
.project-data li {
  color: white;
}

/* MEJORAR CONTRASTE */
.project-info {
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


.wave-divider {
  position: relative;
  margin-top: -50px; /* superposición */
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-divider path {
  fill:rgba(212, 175, 55, 0.967) /* #0054a7f3;*/  /* mismo color del fondo */
}


/* SERVICIOS */

/* SECCIÓN SERVICIOS */
.services-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* FONDO GLOW */

/*.services-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 30% 40%, #065dc1, transparent 50%),
    radial-gradient(circle at 70% 60%, #033169, transparent 50%);

  opacity: 0.3;
}*/


/* CONTENIDO ARRIBA */
.services-section .container {
  position: relative;
  z-index: 2;
}

section.container {
  margin-top: 70px;
}

/* CARDS */
/* ======================== */
/* SERVICIOS (NUEVO LIMPIO) */
/* ======================== */

.services-row {
  display: grid;
  justify-content: center;
  gap: 25px;
}

/* ✅ DESKTOP GRANDE → 5 EN FILA */
@media (min-width: 1200px) {
  .services-row {
    grid-template-columns: repeat(5, 220px);
  }
}

/* ✅ DESKTOP NORMAL → 3 ARRIBA + 2 ABAJO */
@media (max-width: 1199px) {
  .services-row {
    grid-template-columns: repeat(3, 240px);
  }
}

/* ✅ TABLET → 2 x fila */
@media (max-width: 992px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ MOBILE → 1 x fila */
@media (max-width: 576px) {
  .services-row {
    grid-template-columns: 1fr;
  }
}



/* LENGUAJES */

.language-selector {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-selector img {
  width: 28px;
  height: 18px;

  object-fit: cover;
  border-radius: 3px;

  cursor: pointer;
}

.language-selector img:hover {
  opacity: 0.8;
}

/* OVERLAY (texto encima) */

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column; /* 🔥 clave */
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 10px;

  background: rgba(0, 0, 0, 0.35);
  color: white;
}



/* TEXTO */
.card-overlay h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;

  text-shadow: 0 3px 10px rgba(0,0,0,0.7);

}

/* ICONO */

.card-overlay i {
  font-size: 45px;
  margin-bottom: 12px;
  color: #d4af37;
  transition: transform 0.3s;
}


.service-card:hover i {
  transform: scale(1.2);
}



.service-card .card-body {
  text-align: center;
  padding: 15px 10px;

  background: transparent; /* 🔥 sin fondo */
}

.service-card h5 {
  text-align: center;
  font-weight: bold;

  margin-top: 10px;

  background: none; /* ❌ sacamos eso que tenías */
}

.service-card i {
  color: #d4af37;
  margin-right: 5px;
}


.service-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.3),
    transparent
  );
}




.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}



/* TABLET */
@media (max-width: 992px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .services-row {
    grid-template-columns: 1fr;
  }
}



/* CLIENTES */

#clients .row {
  margin-top: 30px;
}

/* más espacio entre logos */
.client-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;

  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.client-box img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* SECCIÓN */
.clients-section {
  margin: 60px 0;
  overflow: hidden;
}

/* CONTENEDOR */
.clients-slider {
  overflow: hidden;
  position: relative;
}

/* PISTA QUE SE MUEVE */

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;

  transform: translateX(0);
  transition: transform 0.6s ease;

 /* animation: scrollClients 120s linear infinite;*/
}


/* LOGOS */
.clients-track img {
  height: 80px;
  margin: 0 30px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.5s;
}


clients-slider::before,
.clients-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.clients-slider::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.clients-slider::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}


/* BOTONES */
.client-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(212, 175, 55, 0.3);
  border: none;
  color: white;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 10;

  backdrop-filter: blur(4px);
  transition: 0.3s;
}

/* Posiciones */
.client-btn.left {
  left: 10px;
}

.client-btn.right {
  right: 10px;
}


/* HOVER */
.clients-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}


.client-btn:hover {
  background: #d4af37;
  color: #0a2540;
}

.clients-track:hover {
  animation-play-state: paused;
}


/* ANIMACIÓN */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* móvil */
@media (max-width: 768px) {
  .client-box {
    height: 90px;
    padding: 10px;
  }
}



/* CTA */
.cta {
  margin-top: 60px;
  background: #0a2540;
  color: white;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 15px;
}

.cta .btn {
  background: linear-gradient(135deg, #d4af37, #f1d27a);
  border: none;
  color: #0a2540;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 25px;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 20px;
  margin-top: 40px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .carousel-item img {
    height: 250px;
  }

}

/* REDES SOCIALES */
.social {
  background: #f8f9fb;
  padding: 40px 20px;
}

.social h4 {
  color: #0a2540;
  font-weight: bold;
}


.social h4::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 10px auto 0;
}


/* iconos */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* botones circulares */
.social-icons a {
  width: 45px;
  height: 45px;
  background: #0a2540;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

/* hover individual */
.social-icons a:hover {
  transform: translateY(-5px);
}

/* colores por red */
.social-icons a:hover:nth-child(1) {
  background: #1877f2; /* Facebook */
}

.social-icons a:hover:nth-child(2) {
  background: #e4405f; /* Instagram */
}

.social-icons a:hover:nth-child(3) {
  background: #0077b5; /* LinkedIn */
}

/* ================================= */
/* ✅ SERVICIOS LIMPIO TOTAL */
/* ================================= */

/* ========================= */
/* SERVICIOS CLEAN FINAL */
/* ========================= */

/* ========================= */
/* SERVICIOS PROSEM PREMIUM */
/* ========================= */

.services-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* item */
.service-item {
  width: 220px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;

  position: relative;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

  transition: all 0.3s ease;
}

/* ========================= */
/* IMAGEN */
/* ========================= */

.service-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;

  border-bottom: 3px solid #d4af37;
}

/* ========================= */
/* CONTENIDO */
/* ========================= */

.card-overlay {
  padding: 20px 15px;
  text-align: center;
}

/* ICONO */
.card-overlay i {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 6px;
}

/* TEXTO */
.card-overlay h5 {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff; /* ✅ blanco */
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
}

/* ========================= */
/* EFECTO INDUSTRIAL */
/* ========================= */

/* borde técnico */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(10,37,64,0.1);
  border-radius: 10px;
}

/* línea dorada superior */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: #d4af37;
}

/* ========================= */
/* HOVER PREMIUM */
/* ========================= */

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* glow dorado */
.service-card:hover::after {
  background: linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent
  );
}

/* ligera animación icono */
.service-card:hover i {
  transform: scale(1.2);
  transition: 0.3s;
}

/* ========================= */
/* ANIMACIÓN ENTRADA */
/* ========================= */

.service-item {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

/* delay para efecto escalonado */
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}




/* ========================= */
/* MODAL PROSEM STYLE */
/* ========================= */

/* fondo general */
.modal-content {
  background: linear-gradient(135deg, #0a2540, #123b5c);
  color: white;
  border-radius: 15px;
  border: none;
}

/* header */
.modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* título */
.modal-title {
  color: #d4af37; /* dorado */

  font-weight: 700;
  font-size: 22px;

  text-shadow: 
    0 2px 8px rgba(0,0,0,0.6),
    0 0 10px rgba(212, 175, 55, 0.4); /* ✨ glow dorado */
}

/* botón cerrar */
.modal-header .btn-close {
  filter: invert(1);
}

/* cuerpo */
.modal-body {
  color: rgba(255,255,255,0.9);
}

/* lista */
.modal-list li {
  color: rgba(255,255,255,0.9);
}

/* ========================= */
/* PROYECTOS DESTACADOS PRO */
/* ========================= */

.featured-projects {
  margin: 80px auto;
}

/* título */
#featured-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 30px;
  position: relative;
}

/* línea dorada */
#featured-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 10px auto;
}

/* ------------------------------------------------- */

/* LISTA EN 2 COLUMNAS */
.featured-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr 1fr; /* 🔥 2 columnas */
  gap: 15px 30px;
}

/* ITEM */
.featured-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);

  font-size: 14px;
  color: #333;

  transition: 0.3s;
}

/* HOVER */
.featured-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* NUMERO */
.featured-list span {
  min-width: 35px;
  height: 35px;

  background: #0a2540;
  color: white;

  font-weight: bold;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;
}

/* TEXTO */
.featured-list li {
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  .featured-list {
    grid-template-columns: 1fr; /* 🔥 1 columna en celular */
  }
}

.featured-list strong {
  color: #0a2540;
  font-weight: 700;
}


