.elementor-13 .elementor-element.elementor-element-89b8a92{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:stretch;--margin-top:-1px;--margin-bottom:-1px;--margin-left:-1px;--margin-right:-1px;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.elementor-13 .elementor-element.elementor-element-89b8a92.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-13 .elementor-element.elementor-element-9f26f05 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-13 .elementor-element.elementor-element-9f26f05.elementor-element{--align-self:stretch;}.elementor-13 .elementor-element.elementor-element-d1cae31{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.elementor-13 .elementor-element.elementor-element-cf3e14b.elementor-element{--align-self:center;}.elementor-13 .elementor-element.elementor-element-6d73899{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.elementor-13 .elementor-element.elementor-element-de7358b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.elementor-13 .elementor-element.elementor-element-ce25707{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.elementor-13 .elementor-element.elementor-element-84111ee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.elementor-13 .elementor-element.elementor-element-5a6b686{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-13 .elementor-element.elementor-element-89b8a92{--width:100.943%;}}/* Start custom CSS for html, class: .elementor-element-9f26f05 *//* ====== NAVBAR ====== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 0rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo */
.logo {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

/* Botón hamburguesa */
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}



/* Al pasar el mouse o hacer foco */
.navbar-toggler:hover,
.navbar-toggler:focus {
  background-color: transparent !important;
  outline: none !important;
}



.navbar-toggler .bar {
  background-color: white;
  height: 3px;
  width: 24px;
  margin: 3px 0;
  transition: background-color 0.3s ease;
}


/* Menú */
.navbar-collapse {
  display: flex;
  justify-content: flex-end;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 20px;
}

.nav-link:hover {
  color: #26bfd8;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

 
  .navbar-toggler {
    display: flex;
  }

  .navbar-collapse {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    width: 100%;
    display: block;
  }
}


/* ==== HEADER FIJO ====
   altura y paddings más grandes de arranque  */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0d141f;
  z-index: 1000;
  padding: 1.5rem 2rem 0rem 1.5rem;         /* ↑ agrandado */
  transition: padding .3s ease, box-shadow .3s ease;

}

/* Logo grande de base */
.logo {
  max-height: 250px;            /* ↑ más grande */
  width: auto;
  object-fit: contain;
  transition: max-height .3s ease;
}

/* === Al hacer scroll (agregamos .scrolled) === */
.header.scrolled {
  padding: .5rem 2rem;          /* barra más finita */
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}

.header.scrolled .logo {
  max-height: 60px;             /* logo chico */
}

/* …el resto de tu CSS (hamburguesa, media-queries, etc.) no cambia */
/* Animación de entrada/salida */
.header {
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Oculta por completo la barra (la “empuja” hacia arriba) */
.header.hidden {
  transform: translateY(-100%);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cf3e14b *//* Carrusel ocupa toda la pantalla */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

/* Contenedor de slides */
.carousel-inner {
  display: flex;
  width: 100%; /* 3 imágenes */
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* 1. El slide se vuelve contenedor flex  */
.carousel-item{
  flex: 0 0 100%;
  height: 100%;
  position: relative;

  /* NUEVO ↓ */
  display:flex;                 /* activa flexbox           */
  justify-content:center;       /* centra horizontalmente   */
  align-items:center;           /* centra verticalmente     */
  overflow:hidden;              /* evita barras de scroll   */
}

/* 2. Ajustes de la imagen */
.carousel-item img{
  height:100%;        /* se adapta en alto            */
  width:auto;         /* respeta proporción           */
  object-fit:cover; /* muestra la imagen completa   */
  object-position:center;
  display:block;
}

/* 3. (opcional) Si quieres fondo neutro cuando sobren márgenes */
.carousel-item{
  background:#000;    /* cámbialo por el color que prefieras */
}




/* Botones de control */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: transparent !important;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-control:hover {

  background-color: transparent !important;
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

/* Flechas simples con CSS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
}

.carousel-control-prev-icon {
  border-width: 10px 14px 10px 0;
  border-color: transparent white transparent transparent;
}

.carousel-control-next-icon {
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent white;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3163e38 *//* Estilos generales para la sección de empresa */
#empresa {
    background-color: #0d141f; /* Fondo institucional */
    color: white; /* Texto blanco para contraste */
    padding: 90px 20px;
    text-align: center;
}

#empresa h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#empresa > p {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc; /* Un blanco suavizado para el texto largo */
}

/* Contenedor de la visión/misión/empresa */
.vision-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Cada card */
.vision-item {
    background-color: #bbb;
    color: #0d141f;
    border-radius: 12px;
    padding: 30px 20px;
    width: 340px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  
}

.vision-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Imagen dentro de cada card */
.vision-item img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Título de cada card */
.vision-item h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Texto de cada card */
.vision-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0a14905 *//* Estilos generales para la sección quienes somos */
#quienes-somos {
    background-color: #0d141f;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

#quienes-somos h1 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contenedor de los items */
.somos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Cada card de persona */
.somos-item {
    background-color: #bbb;
    color: #0d141f;
    border-radius: 12px;
    padding: 30px 25px;
    width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    letter-spacing: 0.8px;
    border: 2px double white;
}

.somos-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Imagen de perfil */
.somos-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Nombre del ingeniero */
.somos-item h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Descripción */
.somos-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f1377c4 *//* Estilos generales para la sección servicios */
#servicios {
    background-color: #0d141f;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

#servicios h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#servicios > p {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

/* Contenedor de los servicios */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Cada card de servicio */
.service-card {
    position: relative;
    width: 320px;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Imagen de servicio */
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#cyg-img{
    object-fit: fill;
}

/* Overlay que aparece al hacer hover */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 20, 31, 0.9); /* Mismo color institucional pero opaco */
    color: white;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

/* Texto del overlay */
.service-overlay p {
    font-size: 1rem;
    line-height: 1.6;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3675b88 */:root {
  --cg-blue: #0d141f; /* Azul corporativo (background de la web) */
  --bg-section: #0d141f; /* Mantener mismo tono para fundir edges */
  --gap: 4rem; /* Espacio entre logos */
  --duration: 40s; /* Se recalcula con JS */
  --scroll-width: 0px; /* Se recalcula con JS */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg-section);
  color: #fff;
}

/*──── SECTION ────*/
.brands-section {
  padding: 4rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-section);
}
.brands-section h2 {
  font-size: 2.125rem;
  font-weight: 500;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

/*──── CAROUSEL ────*/
.carousel1 {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Fades laterales para efecto de "desaparición" */
.carousel1::before,
.carousel1::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    90deg,
    var(--bg-section) 0%,
    rgba(13, 20, 31, 0) 100%
  );
}
.carousel1::after {
  right: 0;
  transform: rotate(180deg);
}

.carousel-track1 {
  display: flex;
  gap: var(--gap);
  column-gap: var(--gap);
  animation: scroll var(--duration) linear infinite;
  will-change: transform;
  padding-block: 0.5rem;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--scroll-width)));
  }
}
.carousel-track1:hover {
  animation-play-state: paused;
}

/*──── SLIDES ────*/
.slide {
  flex: none;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img{
    height:60px;
    width:auto;
    object-fit:contain;
    opacity(.8);
    transition:opacity .3s,transform .3s,filter .3s;
    margin: 10px;
    
}


.slide img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/*──── RESPONSIVE ────*/
@media (max-width: 768px) {
  :root {
    --gap: 2rem;
  }
  .slide {
    height: 70px;
  }
  .slide img {
    height: 48px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bf4e09e *//* Footer general */
footer {
    background-color: #0d141f; /* Mismo color institucional */
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
}

/* Contenedor interno del footer */
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Logo del footer */
footer img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* Lista de información */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #cccccc; /* Texto más suave que el blanco puro */
}

/* Enlace dentro del footer */
footer ul li a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #cccccc;
}


/* Botón de volver arriba */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: white;
  color: #0d141f;
  font-size: 1.5rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.scroll-to-top:hover {
  background-color: #26bfd8;
  color: white;
}

/* Mostrar cuando se hace scroll */
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}/* End custom CSS */