@import url("/general.css");
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #0A051D;
      scroll-behavior: smooth;
      max-width: 100% !important;
    }
    main{
      max-width: 99%;
    }
        /* ====== HERO ====== */
    .hero {
      height: 100vh;
      background: url('/heros.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }


    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: #FFFFFF;
      max-width: 700px;
      padding: 0 20px;
      animation: fadeSlideIn 1.2s ease forwards;
      opacity: 0;
    }

    .hero-content h2 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .hero-content h2 span { color: #883CFF; }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .btn-cta {
      background: #4800D5;
      color: #F9F9F9;
      padding: 12px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s, transform 0.3s;
    }

    .btn-cta:hover {
      background: #ffda33;
      transform: scale(1.05);
    }

    /* ===================== */
/*      CARDS SECTION    */
/* ===================== */
.cards-section {
  padding: 100px 20px;
  background: #F9F9F90F;
  text-align: center;
}

.cards-section h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #323232;
  font-weight: 600;
  position: relative;
}

.cards-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffd700;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  padding: 2px;
  animation: fadeSlideUp 1s ease forwards;
  transform: translateY(30px);
  opacity: 0;
}

.card .border-animated {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: conic-gradient(from 0deg,
      #ffd700,
      #ff9800,
      #ff0066,
      #6600ff,
      #00ccff,
      #00ff99,
      #ffd700);
  animation: rotateBorder 4s linear infinite;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px #00000026;
}

.card h3 {
  color: #222;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Botón */
.btn-card {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #ffd700;
  border-radius: 25px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-card:hover {
  background: #ffd700;
  color: #111;
  transform: scale(1.05);
}

/* Animaciones */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cards-section {
    padding: 80px 15px;
  }
  
  .cards-section h2 {
    font-size: 1.8rem;
  }
  
  .card-content {
    padding: 30px 20px;
  }
}
    
    
    
    
    
    /* ===================== */
/*      FLIP CARDS       */
/* ===================== */
.flip-section {
  padding: 100px 20px;
  background: #FFFFFF00;
  text-align: center;
}

.flip-section h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #3FFF00;
  font-weight: 600;
  position: relative;
}

.flip-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffd700;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Container */
.flip-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Flip Card */
.flip-card {
  width: 100%;
  height: 280px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* Caras */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  box-shadow: 0 10px 25px #00000000;
  transition: all 0.3s;
}

.flip-front {
  background: #020E1F;
}

.flip-back {
  background: #000000;
  color: #39FF00 !important;
  transform: rotateY(180deg);
}

/* Ícono circular */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0027FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s, background 0.4s;
}

.icon-circle i {
  font-size: 36px;
  color: #0295FF;
}

.flip-card:hover .icon-circle {
  transform: scale(1.1);
  background: #00DBFF;
}

.flip-front h3 {
  color: #00BC49;
  font-size: 1.3rem;
  font-weight: 600;
}

.flip-back p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0FFF00;
}

/* Responsive */
@media (max-width: 768px) {
  .flip-section {
    padding: 80px 15px;
  }
  
  .flip-section h2 {
    font-size: 1.8rem;
  }
  
  .flip-card {
    height: 260px;
  }
  
  .icon-circle {
    width: 80px;
    height: 80px;
  }
  
  .icon-circle i {
    font-size: 30px;
  }
}
    
    
    
/* ===================== */
/*     CONTADOR CIRCULAR */
/* ===================== */
.counter-section {
  padding: 100px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.counter-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #8D00FF;
}

.counter-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(#4500FF 0deg, #333333 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  box-shadow: 0 0 20px rgba(81, 0, 255, 0.3);
}

.circle span {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .circle {
    width: 120px;
    height: 120px;
  }
  .circle span {
    font-size: 2rem;
  }
}    











.home__index-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #2563eb;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.home__index-btn:hover {
    background: #1d4ed8;
}
.home__index-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.home__index-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left.active {
    animation: fadeLeft 0.7s ease forwards;
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-right.active {
    animation: fadeRight 0.7s ease forwards;
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.scale-up.active {
    animation: scaleUp 0.6s ease forwards;
}
@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.home__index-hero {
    padding: 90px 30px;
    text-align: center;
}

.home__index-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.home__index-hero p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
    color: #555;
}

.home__index-carousel {
    max-width: 1100px;
    margin: 70px auto;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(101, 16, 101, 0.85);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    color: #FFFFFF;
    border: 2px solid#00FF0366;
}

.home__index-carousel-track {
    display: flex;
    transition: transform 0.8s ease;
}

.home__index-carousel-item {
    min-width: 100%;
    padding: 45px;
    box-sizing: border-box;
}

.home__index-carousel-item h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.home__index-carousel-controls {
    position: absolute;
    top: 50%; width: 100%;
    display: flex; justify-content: space-between;
    transform: translateY(-50%);
}

.home__index-carousel-btn {
    background: rgba(55, 9, 54, 0.85);
    border: none;
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.home__index-carousel-btn:hover {
    background: #2563eb;
    color: white;
}

.home__index-marquee-container {
    overflow: hidden;
    background: #EEF2F600;
    padding: 18px 0;
    margin-top: 80px;
    white-space: nowrap;
    box-shadow: inset 0 -2px 3px rgba(0,0,0,0.04);
}

.home__index-marquee-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.home__index-marquee-item {
    display: inline-block;
    font-size: 22px;
    margin: 0 45px;
    font-family: 'Pacifico', cursive;
    /*font-weight: 700;*/
    color: #FFFFFF;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.home__index-collaboration {
    max-width: 95%;
    width: 1100px;
    margin: 90px auto;
    background: linear-gradient(135deg,#0056A1,#1d4ed8);
    padding: 70px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.home__index-collaboration-btn {
    background: white;
    color: #1d4ed8;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 25px;
    transition: 0.3s;
}
.home__index-collaboration-btn:hover {
    background: #e2e8f0;
    transform: translateY(-3px);
}






.indicators__title__home{
  background: #0A040D;
  padding: 8px;
  width: 80%;
  color: #FFFFFF;
  border-left: 20px solid#00FF45;
  border-right: 20px solid#00FF45;
  border-top: 2px solid#00FF45;
  border-bottom: 2px solid#00FF45;
  margin: auto;
}
.indicators__title__home h3{
  text-align: center;
}
.flip-card{
  border: 2px solid#00FF45;
  border-radius: 20px;
}
.counter-section{
  border-top: 2px solid#00FF45;
  border-bottom: 2px solid#00FF45;
}
.circle{
  border: 2px solid#00FF45;
}
@media (min-width: 800px) {
  .home__index-carousel{
    max-width: 50%;
    border: 2px solid#4959FF;
  }
  .home__index-collaboration{
    max-width: 45%;
  }
  .indicators__title__home{
    width: 60%;
  }
}
.chatbot-ai-mkuserx{
  border: 1px solid#00FF03;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #00FF15;
  margin-left: auto;
  margin-bottom: 1rem;
  background: #000000;
  position: fixed;
  z-index: 999;
  bottom: 3px;
  right: 10px;
  animation: flotarbtn__index 5s linear infinite;
}
.chatbot-ai-mkuserx h3{
  overflow: hidden;
  margin-top: 20%;
  margin-bottom: 0px;
}
.chatbot-ai-mkuserx a{
  text-decoration: none;
  color: #00FF4B;
}
@keyframes flotarbtn__index{
  0%{
    bottom: 3px;
  }
  50%{
    bottom: 30px;
  }
  100%{
    bottom: 3px;
  }
}
