/*
Theme Name: Innovalim
Theme URI: https://ccdaza.com/
Author: Cristian Daza
Description: Tema personalizado para la empresa Innovalim
Version: 1.0
*/

header {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.page-banner img {
  width: 100%;
  max-height: 400px;
  object-fit: fill;
}

.logo img {
  max-width: 180px;
  max-height: 70px;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  background-color: rgb(38 38 38);
  border-radius: 999px;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Helvetica Neue', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  position: relative;
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

/* Separador entre elementos excepto el último */
.main-nav .menu > li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -1rem;
  color: #aaa;
}
  
.main-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 0.25rem;
  font-size: .9rem;
}

.main-nav a:hover {
  color: #cccccc;
}

.main-nav ul.sub-menu {
  display: none;
  position: absolute;
  top: 2rem;
  background-color: #262626;
  min-width: calc(100% + 2.5rem);
  left: -1rem;
  padding-bottom: .5rem;
  border-radius: 0 0 .5rem .5rem;
}

.main-nav .sub-menu li {
  width: 100%;
  text-align: center;
}


/*banner*/

.banner .flexslider {
  margin-bottom: 0px;
}

.banner ol.flex-control-nav {
  bottom: 1rem;
}

.banner ol.flex-control-nav a.flex-active {
  width: 45px !important;
}

.banner .flex-control-paging li a {
  width: 15px !important;
  height: 15px !important;
}

/* footer */

footer {
  background-color: rgb(26 26 26);
  color: rgb(218 218 218);
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
}