
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.logo-row img {
  max-height: 400px;
  height: auto;
  width: auto;
}
/* Sección de contacto */
.contact-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #0088cc;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-icons a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.contact-icons a:hover {
  transform: scale(1.1);
  color: #0088cc;
}

.contact-icons i {
  font-size: 30px;
}

.button-red {
  background-color: #00AEEF !important;
  border-color: #00AEEF !important;
  color: #fff !important;
}

.button-red:hover {
  background-color: #008fc3 !important; /* un azul un poco más oscuro para el hover */
  border-color: #008fc3 !important;
  color: #fff !important;
}
.nav li a {
  color: #1e3a8a; /* azul base para los enlaces normales */
}

.nav li a:hover,
.nav li a.active,
.nav li.current a {
  color: #00AEEF !important; /* azul claro personalizado */
}
.feature-box.active {
  background-color: #00AEEF !important;
  color: #fff !important;
}

.feature-box.active .icon i {
  color: #fff !important;
}

.feature-box.active .title {
  color: #fff !important;
}

.feature-box.active .desc p {
  color: #fff !important;
}
.feature-box:hover {
  background-color: #00AEEF;
  color: #fff;
}

.feature-box:hover .icon i,
.feature-box:hover .title,
.feature-box:hover .desc p {
  color: #fff;
}
/* Botón blanco con borde azul y texto azul */
.button-white {
  background-color: #fff !important;
  border: 2px solid #00AEEF !important;
  color: #00AEEF !important;
  transition: all 0.3s ease-in-out;
}

/* Hover: fondo azul y texto blanco */
.button-white:hover {
  background-color: #00AEEF !important;
  color: #fff !important;
  border-color: #00AEEF !important;
}
.boton-ficha {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #00AEEF;
  background-color: #fff;
  color: #00AEEF;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.boton-ficha:hover {
  background-color: #00AEEF;
  color: #fff;
  border-color: #00AEEF;
}

.certificate-section{
      background-color: #00AEEF;
      padding: 20px;
}

.certificate-section h2{
    color: white;
}

.scrollup {
  background-color: white;
  border: 3px solid #00AEEF;
  color: #00AEEF;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

/* Hover azul */
.scrollup:hover {
  background-color: #00AEEF;
  color: white;
  border-color: #00AEEF;
}

@media (min-width: 992px) {
  .custom-col-5 {
    width: 20%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* Igualar altura de las feature-box */
.row.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

/* Asegurarse de que todas las cajas llenen la altura disponible */
.feature-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 25px;
  box-sizing: border-box;
}
/* Igualar altura de todas las tarjetas de producto */
.row.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

/* Asegurar que las tarjetas llenen el alto disponible */
.price-table {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.primary-menu ul.nav > li > a:after{
  content: unset !important;
}