.funcionalidades {
    background: #f5f7fb;
    padding: 4rem 2rem;
    font-family: sans-serif;
  }

  .contenedor {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 3rem;
  }

  .columna-izquierda {
    flex: 1;
  }

  .columna-derecha {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .columna-derecha img {
    max-width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }

  .subtitulo {
    color: #3371ff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .titulo {
    font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f1f1f;
  }

  .grid-funcionalidades {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .func-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    color: #333;
  }

  .func-btn i {
    font-size: 1.5rem;
    color: #1e88e5;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
  }

  .func-btn:hover i {
    color: #32b5dc;
  }

  .func-btn:hover {
    border-color: #1e88e5;
    color: #1f1f1f;
    font-weight: 600;
  }

  .func-btn.active {
    border-color: #32b5dc;
    box-shadow: 0 0 0 2px rgba(51, 113, 255, 0.2);
    font-weight: 600;
    color: #1f1f1f;
  }

  .btn-saber-mas {
    font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
    display: inline-block;
    background-color: #294090;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1rem;
  }

  .btn-saber-mas:hover {
    background-color: #32b5dc;
    text-decoration: none;
    color: white;
  }

  @media (max-width: 960px) {
    .contenedor {
      flex-direction: column;
    }
    .grid-funcionalidades {
      grid-template-columns: repeat(2, 1fr);
    }
  }



.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto;
  text-align: center;
}

.counter-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-item {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  min-width: 100px;
}

.counter-label {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.9;
  font-weight: 600;
}

@media (max-width: 768px) {
  .counters {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .counter-item {
    max-width: none;
    width: 80%;
  }
}



.para-quien {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.titulo-seccion {
  font-size: 2.5rem;
  font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #294090;
}

.bloques-destino {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cardeaa {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  padding: 2rem;
  max-width: 360px;
  transition: transform 0.3s ease;
}

.cardeaa:hover {
  transform: translateY(-5px);
}

.cardeaa img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin-bottom: 0.15rem;
}

.cardeaa h3 {
  font-size: 1.75rem;
  font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
  margin: 0.5rem 0;
}

.cardeaa p {
  color: #444;
  font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.btneaa-info {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btneaa-info:hover {
  background-color: #32b5dc !important;
  text-decoration: none;
  color: white;
}

.kit-digital {
  font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
  text-align: center;
}

.kit-container {
  max-width: 900px;
  margin: auto;
}

.kit-title {
  font-size: 2.25rem;
  color: #294090;
  margin-bottom: 1rem;
  font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
  font-weight: 800;
}

.kit-text {
  font-size: 1.2rem;
  color: #1f1f1f;
  font-weight: 400;
  line-height: 1.6;
}

.kit-benefits {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  color: #1f1f1f;
  font-weight: 500;
}

.kit-benefits li {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.beneficio {
  transition: ease-in-out 0.3s;
}

.beneficio:hover {
  transform: translateY(-4px);
  transition: transform 0.3s;
}

.kit-cta {
  font-size: 1.75rem;
  line-height: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.kit-button {
  display: inline-block;
  background: linear-gradient(135deg, #e53935, #fb8c00, #fdd835);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  margin-top: 1rem;
  background-size: 200%;
  background-position: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.kit-button:hover {
  background-position: right;
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}


    .blog-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .blog-header h1 {
      font-size: 2.8rem;
      color: #1e1e1e;
    }
    .blog-header small {
      color: #1e88e5;
      font-weight: 600;
    }
    .blog-header p {
      color: #555;
      font-size: 1.1rem;
      margin-top: 10px;
      font-weight: 400;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 50px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    .blog-card {
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 20px;
    }
    .blog-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .blog-card h3 {
      font-size: 1.3rem;
      margin: 15px 0 10px;
      line-height: 1.4;
      color: #1e1e1e;
    }
    .blog-card p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 10px;
      font-weight: 400;
    }
    .blog-meta {
      font-size: 0.85rem;
      color: #666;
      font-weight: 400;
      margin-bottom: 5px;
    }
    .blog-card a {
      color: #1e88e5;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    .blog-card a:hover {
      color: #32b5dc;
    }

    .article-header {
      text-align: left;
      margin-bottom: 0.25rem;
    }
    .article-header h1 {
      font-size: 2.8rem;
      color: #1e1e1e;
      line-height: normal;
    }
    .article-header a {
      color: #1e88e5;
      font-weight: 600;
      transition: ease-in-out 0.3s;
    }
    .article-header a:hover {
      color: #32b5dc;
      text-decoration: underline;
    }
    .article-header p {
      color: #555;
      font-size: 0.9rem;
      margin-top: 10px;
      font-weight: 400;
    }


    .containerblog {
      max-width: 1200px;
      margin: 0px auto;
      background: #fcfcfc;
      padding: 40px 50px;
      box-shadow: 0 0 10px rgba(0,0,0,0.10);
      border-radius: 1rem;
    }

    .article-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #1e1e1e;
      line-height: normal;
    }

    .meta {
      font-size: 0.95rem;
      color: #666;
      margin-top: 10px;
    }

    .featured-img {
      width: 40%;
      text-align: center;
      margin: 25px auto;
      border-radius: 8px;
    }

    .article-content h2 {
      font-size: 1.4rem;
      margin-top: 50px;
      font-weight: 700;
      color: #294090;
      line-height: 0.5;
    }

    .article-content p {
      margin: 20px 0;
      font-weight: 400;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #333;
    }

    .article-content ul {
      list-style: disc;
      padding-left: 20px;
      margin: 20px 0;
      font-size: 1.1rem;
    }
    
    .article-content ol {
      list-style: decimal;
      padding-left: 20px;
      margin: 20px 0;
      font-size: 1.1rem;
    }

    .cta-link {
      display: inline-block;
      margin-top: 40px;
      background: #294090;
      color: white;
      padding: 12px 24px;
      border-radius: 0.6rem;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .cta-link:hover {
      background: #32b5dc;
      color: white;
      text-decoration: none;
    }

    .back-link {
      display: block;
      margin-top: 60px;
      text-align: center;
      color: #1e88e5;
      font-weight: 500;
      text-decoration: none;
    }

    .back-link:hover {
      text-decoration: underline;
    }



    /*breadcrumbs estils*/
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: rgba(33 ,37 ,41, 0.75);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: rgba(33 ,37 ,41, 0.75);
  display: flex;
  flex-wrap: wrap;
  padding: 0px 0px;
  margin-bottom: 2rem;
  font-size: 16px;
  list-style: none;
  background-color: none;
  border-radius: 0px;
}

.breadcrumb-item {
  + .breadcrumb-item {
    padding-left: 6px;

    &::before {
      float: left;
      padding-right: 6px;
      color: #515151;
      content: ">";
    }
  }

  &.active {
    color: #515151;
  }
}

.breadcrumb-item a{
  text-decoration: none;
}
