:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0071B9;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #82AE48;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color2: #EF7A12;
  --surface-color: #F1F1F1;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.light-background {
  --background-color: #F1F1F1;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0071B9;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #5BC5ED;
  --contrast-color: #ffffff;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: var(--accent-color2);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  color: var(--heading-color);
}

h5 span {
  --color-h5-span: #2EB0AC;
  color: var(--color-h5-span);
  font-style: italic;
}

h4 span {
  color: var(--accent-color);
}

strong.core-vendor {
  color: var(--accent-color);
}

p {
  text-align: justify;
}

ul {
  list-style: none;
}

ul li {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

ul li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 700;
}

video,
img {
  border-radius: .5rem;
}

table {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: .5rem;

  ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

table thead {
  color: var(--heading-color);
}

.table-striped {
  --bs-table-striped-bg: #dbf1be;
}


.btn-warning {
  background-color: #034A96 !important;
  border: #034A96;
  color: #fff;

}

.btn-warning:hover {
  background-color: #6FC6EA !important;
  border: #6FC6EA;
  color: #034A96;

}

.btn-verde {
  background-color: #92D050 !important;
  border: #92D050;
  color: #fff;

}

.btn-verde:hover {
  background-color: #78B832 !important;
  border: #78B832;
  color: #fff;

}


.text-justify {
  text-align: justify;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #034A96;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--contrast-color);
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #034A96;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #034A96;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  background: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 1);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #034A96;
}

#header .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #000;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #000;
}

.get-started-btn:hover {
  background: #000;
  color: #034A96;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 700;
  color: #034A96;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a.active,
.navbar a.active:hover {
  color: var(--accent-color);
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}


/* #header.header-scrolled .navbar a {
  color: #034A96;
} */

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #034A96;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #034A96;
  color: #fff
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0172B7;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: fit-content;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #FB8E02;
  background-color: #034A96;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #034A96;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/education/showcase-1.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  padding: 120px 20px 80px 20px;
  position: relative;
}

.hero .hero-container.banner0 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/bg-banner_cloud-core.webp") center/cover no-repeat;
}

.hero .hero-container.banner1 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/bg-banner_portal-de-proveedores.webp") center/cover no-repeat;
}


.hero .hero-container.banner2 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/bg-banner_administracion-de-proveedores.webp") top/cover no-repeat;
}


.hero .hero-container.banner3 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/bg-banner_sistema-de-gestion-de-proveedores.webp") bottom/cover no-repeat;
}

.hero .hero-container.banner4 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/bg-banner_plataforma-de-proveedores.webp") center/cover no-repeat;
}

.hero .hero-container.banner4 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/bg-banner_pregutnas-frecuentes.webp") center/cover no-repeat;
}




.hero .hero-container .hero-content {
  max-width: 90%;
  margin: 0 auto;
}

.hero .hero-container .hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content h2 {
    font-size: 2rem;
  }
}

.hero .hero-container .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content p {
    font-size: 1.1rem;
  }
}

.hero .hero-container .hero-content .cta-buttons {
  /* margin-bottom: 30px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero .hero-container .hero-content .cta-buttons .btn,
#footer .btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {

  .hero .hero-container .hero-content .cta-buttons .btn,
  #footer .btn {
    display: block;
    margin: 10px auto;
    /* max-width: 200px; */
  }
}

.hero .hero-container .hero-content .cta-buttons .btn-apply {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .hero-content .cta-buttons .btn-tour,
#footer .btn-tour {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  border: 2px solid var(--contrast-color);
}

.hero .hero-container .hero-content .cta-buttons .btn-tour:hover,
#footer .btn-tour:hover {

  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero .event-banner .btn-register {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero .event-banner {
    text-align: center;
  }

  .hero .event-banner .event-date {
    margin: 0 auto 15px;
    max-width: 100px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Open Sans", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #034A96;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.ventajas {
  background-color: #6FC6EA;
}

.ventajas .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 0px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  margin-bottom: 20px;
  width: 100%
}

.ventajas .textbox {
  padding: 30px 15px;
}


.ventajas h2 {
  color: var(--heading-color);
  font-size: 38px;
  /* text-transform: uppercase; */
  font-weight: bold
}

.ventajas .bg-ventajas-text {
  background-color: var(--surface-color);
  border-radius: .5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 2rem;
}

.ventajas .ventajas-box {
  border-radius: .5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--contrast-color);
  height: 100%;
  gap: 4px;

  span {
    font-size: 1.1rem;
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #034A96;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
  margin-top: 25px !important
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 30px;
}

.features .icon-box i {
  font-size: 22px;
  float: left;
  color: #00CCCC;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 0px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  margin-bottom: 20px;
}

.services .textbox {
  padding: 30px 15px;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #034A96;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #034A96;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #034A96;
  border-color: #034A96;
  color: #151515;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #034A96;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #034A96;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #034A96;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #034A96;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #034A96;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 700;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #034A96;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #034A96;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}


.team .member .member-info a {
  color: #000;
}

.team .member .member-info a:hover {
  color: #034A96;
}


.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #034A96;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 700;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 700;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #034A96;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #034A96;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 25px 0;
  background: #0072B7;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h1 {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li {
  font-size: 14px;
  color: #000
}

.breadcrumbs ol li a {
  color: #fff;
  font-weight: bold;
  font-size: 14px
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

.ctaProducto {
  background: var(--surface-color);
  background-position: center;
  background-size: cover;
  padding: 40px;
  border-radius: 1rem;
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #00468F;
  padding: 0 0 30px 0;
  color: #000;
  font-size: 14px;
}

#footer a {
  color: #0072B7;
}

#footer a:hover {
  color: #00468F;
}

#footer .footer-top {
  background: #CBE3FE;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info img {
  max-width: 90%;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #034A96;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  color: #000;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #034A96;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #034A96;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #034A96;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.flotante {
  display: block;
  display: scroll;
  position: fixed;
  bottom: 140px;
  right: 5px;
  z-index: 99;
  padding: 5px 5px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

.flotante .imgFlotante {
  max-width: 60px;
}

ul.vendor li {
  margin-bottom: 10px;
}

.accordion-button {
  background-color: #F3F9FF;
}


.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #31D2F2;
}

.btn-fuerte {
  background-color: #00B050 !important;
  border: #00B050;
  color: #fff;
}

.top-form {
  padding: .5rem;
  border-radius: .5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  margin-bottom: .5rem;
  text-align: center;
}

button {
  border: transparent;
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process .process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: .5rem;
  background-color: var(--contrast-color);
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
}

.process .process-step .step-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.process .process-step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.process .process-step .step-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.process .process-step h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.process .process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

.process .process-step ul {
  text-align: start;
}


@media (max-width: 575px) {
  .process .process-step {
    padding: 24px 16px;
  }

  .process .process-step .step-number {
    font-size: 44px;
  }

  .process .process-step .step-icon {
    width: 64px;
    height: 64px;
  }

  .process .process-step .step-icon i {
    font-size: 24px;
  }

  .process .process-step h3 {
    font-size: 20px;
  }
}

.technical-content .tech-group {
  margin-bottom: 2rem;
}

.technical-content .tech-group h3 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
  text-align: center;
}

.technical-content .tech-group .spec-table {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.technical-content .tech-group .spec-table .spec-row {
  display: flex;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.technical-content .tech-group .spec-table .spec-row:last-child {
  border-bottom: none;
}

.technical-content .tech-group .spec-table .spec-row .spec-name,
.technical-content .tech-group .spec-table .spec-row .spec-name2 {
  flex: 1;
  font-weight: 600;
  color: var(--heading-color);
}

.technical-content .tech-group .spec-table .spec-row .spec-name2 {
  text-align: end;
}

.technical-content .tech-group .spec-table .spec-row .spec-value {
  flex: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: right;
}


.msj-llenar-form {
  font-size: .9rem;
  text-align: center;
  margin-bottom: .8rem;
}

.cloud-vendor-box {
  border-radius: .8rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.cloud-vendor-box.cloud-color-1 {
  background-color: #9FC63B;

}

.cloud-vendor-box.cloud-color-2 {
  background-color: #72C7EA;

}

.cloud-vendor-box.cloud-color-3 {
  background-color: #0474B8;

}

.cloud-vendor-box.cloud-color-4 {
  background-color: #004995;

}




.services .service-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.services .service-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}



.services .service-item .service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .service-item .service-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-item .service-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.services .service-item .service-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (max-width: 991px) {
  .services .services-image {
    min-height: 300px;
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .services .service-item {
    flex-direction: column;
    padding: 24px;
  }
}

.form-card {
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 1rem;
  text-align: center;
}

.explora-mas .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.explora-mas .card-body {
  flex: 1;
}

.explora-mas .row.equal-height .col-lg-4 {
  display: flex;
}

.explora-mas .row.equal-height .card {
  flex: 1;
}

.explora-mas img {
  border-radius: .5rem .5rem 0 0;
}

.btn-faqs {
  padding: 1rem;
  border-radius: .8rem;
  background-color: var(--surface-color);
  border: 1px solid var(--heading-color);
  color: var(--heading-color);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.cta-section {
  --color-h5-span: #2EB0AC;
  margin-top: 80px;
  padding: 64px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, var(--color-h5-span)));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 992px) {
  .cta-section {
    padding: 48px 32px;
    margin-top: 64px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 40px 24px;
    border-radius: 16px;
  }
}

.cta-section .cta-content {
  position: relative;
  z-index: 2;
}

.cta-section .cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.cta-section .cta-label i {
  font-size: 16px;
}

.cta-section h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cta-section h3 {
    font-size: 28px;
  }
}

.cta-section p {
  font-size: 18px;
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cta-section p {
    font-size: 16px;
  }
}

.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.cta-section .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .cta-section .btn-cta-primary {
    width: 100%;
    justify-content: center;
  }
}

.cta-section .btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-section .btn-cta-primary:hover i {
  transform: translateX(4px);
}

.cta-section .btn-cta-primary i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-section .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--contrast-color) 40%, transparent);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 576px) {
  .cta-section .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

.cta-section .btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-color: var(--contrast-color);
}

.cta-section .btn-cta-secondary i {
  font-size: 20px;
}

.cta-section .cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-section .cta-decoration .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
}

.cta-section .cta-decoration .floating-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.cta-section .cta-decoration .floating-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -60px;
}

.cta-section .cta-decoration .floating-shape.shape-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.bg-alianzas {
  background-color: var(--heading-color);
}

/* =========================
   FAQ Wiki Section
========================= */

.faq-wiki-section {
  padding: 80px 0;
}

.faq-wiki-section table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  /* border-collapse: collapse; */
  border: transparent;
  overflow-x: auto;
  display: flex;
}

.faq-wiki-section table th,
.faq-wiki-section table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.faq-wiki-section table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.faq-wiki-section table > tbody > tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}


.faq-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.faq-intro {
  font-size: 1rem;
  color: #6c757d;
  max-width: 720px;
  margin: 0 auto;
}

/* Índice */

.faq-index {
  background-color: var(--heading-color);
  padding: 32px;
  border-radius: 8px;
}

.faq-index h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.faq-index ul {
  list-style: none;
  padding-left: 0;
}

.faq-index li {
  margin-bottom: 12px;
}

.faq-index .index-faqs span {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
}

.faq-index .index-faqs span i {
  color: var(--contrast-color);
}


.faq-index a {
  text-decoration: none;
  font-weight: 500;
  color: var(--contrast-color);
}

.faq-index a:hover {
  text-decoration: underline;
}

/* FAQ Items */

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  background-color: #ffffff;
  scroll-margin-top: 120px;

}

.faq-item h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.faq-item p,
.faq-item li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item ol,
.faq-item ul {
  padding-left: 18px;
}

.faq-item {
  transition: all 0.25s ease;
}

.faq-item.is-active {
  border: 1px solid var(--accent-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  position: relative;
}

/* Barra lateral indicadora */
.faq-item.is-active::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 8px 0 0 8px;
}

/* Botón volver faq*/
.faq-back {
  margin-top: 24px;
  text-align: right;
}

.back-to-index {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.back-to-index:hover {
  color: var(--accent-color);
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}