body {
  font-family: Arial, sans-serif;
}
#main-navbar {
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  z-index: 1030;
  box-shadow: none;
  background-color: transparent;
}
#main-navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  animation: slideDown 0.3s ease forwards;
}
body.has-sticky-navbar {
  padding-top: 120px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.top-bar {
  background-color: #333;
  padding: 0.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .left-side {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: white;
}
.top-bar .left-side i {
  margin-right: 0.3rem;
}
.top-bar .left-side .separator {
  border-left: 1px solid #888;
  height: 16px;
  margin: 0 1rem;
}
.top-bar .right-side {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  height: 40px;
}
.top-bar .right-side a {
  text-decoration: none;
  position: relative;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 80px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-sizing: border-box;
  color: #f8f8f8;
}
.top-bar .right-side a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 35px;
  background-color: white;
  margin: 0;
}
.top-bar .right-side a.contacto::before {
  background-color: #00aeef;
}
.top-bar .right-side a.sugiere::before {
  background-color: #8e44ad;
}
.top-bar .right-side a.fileweb::before {
  background-color: #b9db1f;
}
.top-bar .right-side a.contacto:hover {
  background-color: #00aeef;
}
.top-bar .right-side a.sugiere:hover {
  background-color: #8e44ad;
}
.top-bar .right-side a.fileweb:hover {
  background-color: #b9db1f;
}
.navbar {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.logo-wrapper img {
  height: 60px;
  width: auto;
}
.navbar-nav {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  gap: 1.5rem;
}
.navbar-nav .nav-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #00aeef;
}
.offcanvas .navbar-nav .nav-link {
  color: #fafafa;
  text-decoration: none;
  position: relative;
  padding-left: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 25px;
  box-sizing: border-box;
  margin-bottom: 0rem;
}
.offcanvas
  .navbar-nav
  .nav-link:not(.contacto):not(.sugiere):not(.fileweb):hover {
  color: #00aeef;
}
.offcanvas .navbar-nav .nav-link.contacto:hover {
  background-color: #00aeef;
}
.offcanvas .navbar-nav .nav-link.sugiere:hover {
  background-color: #8e44ad;
}
.offcanvas .navbar-nav .nav-link.fileweb:hover {
  background-color: #e1c542;
}
#video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 102, 153, 0.3);
  z-index: 2;
}
.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 2rem;
  max-width: 500px;
  margin-left: auto;
}
.video-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.video-link:hover {
  transform: scale(1.05);
}
.video-overlay-img {
  max-width: 100%;
  height: auto;
  display: block;
}
.conoce-file-section {
  background-color: #3c3c3c;
  color: #fafafa;
  padding: 3rem 1rem;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  color: #fafafa;
  text-align: justify;
}
.btn-ver-mas {
  background-color: #00aeef;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.btn-ver-mas:hover {
  background-color: #0095cc;
  color: #ffffff;
}
.imagen-full {
  margin: 0;
  padding: 0;
}
.img-full {
  width: 100%;
  display: block;
  height: auto;
}
.certificaciones-section {
  background-color: #ffffff;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  padding: 3rem 1rem;
}
.certificaciones-section .section-title {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #333333;
}
.certificaciones-section .section-intro {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #333333;
  text-align: justify;
}
.certificacion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.certificacion-img {
  max-width: 150px;
  height: auto;
  display: block;
}
.certificacion-title {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #333333;
  margin-top: 0.5rem;
}
.servicios-section {
  background-color: #eeeeee;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  padding: 3rem 1rem;
}
.servicios-section .section-title {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #333333;
}
.servicio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
  color: #333333;
}
.servicio-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 250px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.servicio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.servicio-img-wrapper:hover .servicio-img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.servicio-title {
  position: absolute;
  left: 1rem;
  bottom: 30px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.servicio-descripcion {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  text-align: left;
  text-align: justify;
}
.beneficios-section {
  background-color: #f9f9f9;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  padding: 3rem 1rem;
}
.beneficios-section .section-title {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #333333;
}
.beneficio-card {
  padding: 2rem 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.beneficio-icono {
  width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
}
.beneficio-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 0.5rem;
}
.beneficio-descripcion {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  text-align: center;
}
.soluciones-section {
  background-color: #333333;
  color: #ffffff;
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.soluciones-section .section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #ffffff;
}
.solucion-img-wrapper {
  width: 100%;
  max-width: 300px;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  border: 2px solid #555;
}
.solucion-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.solucion-img-wrapper:hover .solucion-img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.solucion-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 0.5rem;
  text-align: center;
}
.solucion-img-wrapper {
  position: relative;
  cursor: pointer;
}
.solucion-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  z-index: 1;
}
.solucion-img {
  position: relative;
  z-index: 2;
}
.solucion-img-wrapper:hover::after {
  background-color: rgba(0, 0, 0, 0.25);
}
.cta-section {
  background-color: #00aeef;
  color: #ffffff;
  padding: 3rem 1rem;
}
.cta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #00aeef;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-button:hover {
  background-color: #333333;
  color: #ffffff;
}

.footer-section {
  background-color: #222222;
  color: #f9f9f9;
  font-family: "Montserrat", sans-serif;
  padding: 1rem 1rem;
}
.footer-logo {
  max-width: 150px;
  height: auto;
}
.footer-title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 1rem;
}
.footer-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #f9f9f9;
}
.footer-links li {
  margin-bottom: 0rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #00aeef;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.social-icon {
  color: #00aeef;
  font-size: 1.4rem;
  transition: color 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  color: #ffffff;
}
.footer-bottom {
  background-color: #000000;
  padding: 1rem 0;
}
.footer-bottom-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #999999;
  text-align: center;
  margin: 0;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #00aeef; /* ejemplo: cyan */
  color: white;
}
