/* test */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ---- particles.js container ---- */
#particles-js {
  width: 100%;
  height: 100%;
  background: #1f1f1f;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* section1 */
.principal_section {
  display: flex;
  color: white;
  text-align: center;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-end;
}

.tittle_principal {
  padding-top: 70px;
  font-family: "Orbitron", sans-serif;
  animation: fadeInUp 1.5s ease-in-out;
}

.tittle_principal h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

.tittle_principal h2 {
  font-size: 1.8rem;
  margin-top: 20px;
  color: #0dcaf0;
}

/* Sección de íconos */
.services_section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.service_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff0a;
  border-radius: 16px;
  padding: 20px;
  width: 110px;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.1);
}

.service_item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  /* filter: invert(1); */
  /* Para que se vean blancos si los íconos son oscuros */
}

.service_item p {
  font-size: 14px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

/*section 2*/

#hero-carousel2 {
  background: #050505;
  padding: 60px 20px;
  overflow: hidden;
  font-family: 'Hammersmith One', sans-serif;
}

.carousel-title {
  color: #F5F5F5;
  font-size: 45px;
  text-align: center;
  margin-bottom: 40px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform;
}

.carousel-item {
  min-width: 600px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 30px rgba(7, 61, 82, 0.801);
}

.carousel-item img {
  width: 60px;
  margin-bottom: 20px;
}

.carousel-item h3 {
  color: #081B3B;
  margin-bottom: 10px;
}

.carousel-item p {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  opacity: .85;
}

/*Section 3*/

/*proyectos futuros*/
.futuros-proyectos-section {
  padding: 4rem 1rem;
  background: #0e0e0e;
}

.slider-title {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.proyecto-card {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgb(245, 248, 247);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.proyecto-card:hover {
  transform: scale(1.03) rotateX(3deg);
  box-shadow: 0 0 25px #ffffff;
}

.proyecto-img img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.proyecto-card:hover .proyecto-img img {
  transform: scale(1.06);
}

.proyecto-titulo {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.proyecto-descripcion {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: justify;
}

/*section 4*/

.section-cualidades {
  background: #1f1f1f;
  padding: 60px 30px;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(240, 236, 236, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  display: flex;
  align-items: start;
  padding: 20px;
  background: #ffffffd7;
  border-radius: 30px;
  box-shadow: 0 4px 12px #ffffffe5;
  gap: 20px;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .card-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    padding: 15px;
  }
}

.our_cualitestittle {
  font-size: 2rem;
  margin: 0 0 30px 0;
  color: rgb(255, 255, 255);
  text-align: center;
}

.card-icon1,
.card-icon2,
.card-icon3 {
  padding: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 64px;
}

.card-icon1 {
  border: 2.5px solid #28a745;
}

.card-icon2 {
  border: 2.5px solid #007bff;
}

.card-icon3 {
  border: 2.5px solid #faa208;
}

.icon-img {
  height: 100%;
  object-fit: contain;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.card-text {
  font-size: 0.95rem;
  color: #000000;
}

.card-title.green {
  color: #28a745;
}

.card-title.blue {
  color: #007bff;
}

.card-title.orange {
  color: #faa208;
}

/*SECTION FINAL*/

.section-servicio-flujo {
  margin-top: 30px;
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  background-color: #111;
  color: rgba(255, 255, 255, 0.9);
}

.title-servicio {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 0 0 5px #0e6de2;
}

.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.step {
  font-size: 1.2rem;
  padding: 20px 30px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 15px #ffffff;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  width: fit-content;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animación flotante tipo motion */
@keyframes levitar {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Animación */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo section1*/

.tittle_principal {
  font-family: "Orbitron", sans-serif;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}