.elementor-21 .elementor-element.elementor-element-68bf2a6{--display:flex;--min-height:0px;--justify-content:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-21 .elementor-element.elementor-element-81de841{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-81de841 */@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   TRANSSUMAPAZ S.A.S. — HEADER
   Colores tomados del logo:
     #91BF1F  verde lima ("TSSP" y eslogan)
     #6F9D21  verde oscuro (degradado de la hoja)
     #2C2E7B  azul marino ("Transsumapaz" y la carretera)
   ============================================================ */

.tssp-header{
  --navy:      #2C2E7B;
  --navy-deep: #1E2058;
  --lime:      #91BF1F;
  --lime-dark: #6F9D21;
  --ink:       #1F2430;
  --ink-soft:  #5F6B75;
  --line:      #E2E5EF;
  --mist:      #F5F6FA;
  --on-navy:   #AEB3D6;
  --on-navy-hi:#D7DAEE;
  --wa:        #25D366;

  --shell:     1200px;
  --logo-h:    150px;          /* altura del logo — ajusta solo aquí */
  --ease:      cubic-bezier(.4,0,.2,1);

  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid var(--navy);
  font-family: "Inter", system-ui, sans-serif;
}

.tssp-header *,
.tssp-header *::before,
.tssp-header *::after{ box-sizing: border-box; }

.tssp-shell{
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

/* El checkbox que abre el menú móvil: accesible pero invisible */
.tssp-toggle{
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ------------------------------------------------------------
   BARRA SUPERIOR
   ------------------------------------------------------------ */
.tssp-topbar{ background: var(--navy-deep); }

.tssp-topbar__in{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
}

.tssp-meta{
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0; padding: 0;
  list-style: none;
}

.tssp-meta li{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--on-navy);
  white-space: nowrap;
}

.tssp-meta svg{
  width: 13px; height: 13px;
  flex: none;
  fill: var(--lime);
}

.tssp-meta a{
  color: var(--on-navy-hi);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.tssp-meta a:hover,
.tssp-meta a:focus-visible{
  color: #fff;
  text-decoration: underline;
}

/* ------------------------------------------------------------
   BARRA PRINCIPAL
   ------------------------------------------------------------ */
.tssp-bar{
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
}

.tssp-logo{
  flex: none;
  display: block;
  line-height: 0;
}

.tssp-logo img{
  display: block;
  height: var(--logo-h);
  width: auto;
}

/* ------------------------------------------------------------
   MENÚ
   ------------------------------------------------------------ */
.tssp-nav{ margin-inline: auto; }

.tssp-menu{
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0; padding: 0;
  list-style: none;
}

.tssp-menu a{
  position: relative;
  display: block;
  padding: 10px 13px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.tssp-menu a::after{
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 1px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}

.tssp-menu a:hover,
.tssp-menu a:focus-visible{ color: var(--navy); }

.tssp-menu a:hover::after,
.tssp-menu a:focus-visible::after,
.tssp-menu .tssp-on > a::after{ transform: scaleX(1); }

.tssp-menu .tssp-on > a{ color: var(--navy); }

/* Flecha del desplegable */
.tssp-sub{ position: relative; }
.tssp-sub > a{ padding-right: 27px; }

.tssp-sub > a::before{
  content: "";
  position: absolute;
  right: 13px; top: calc(50% - 3px);
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .6;
  transition: transform .2s var(--ease);
}

.tssp-sub:hover > a::before,
.tssp-sub:focus-within > a::before{
  transform: rotate(225deg) translate(-2px,-2px);
}

/* ------------------------------------------------------------
   DESPLEGABLE (escritorio)
   ------------------------------------------------------------ */
.tssp-drop{
  position: absolute;
  z-index: 20;
  min-width: 300px;
  margin: 0; padding: 6px 0;
  list-style: none;
  background: #fff;
  border-top: 2px solid var(--lime);
  box-shadow: 0 14px 34px rgba(30,32,88,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}

.tssp-sub:hover > .tssp-drop,
.tssp-sub:focus-within > .tssp-drop{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tssp-drop a{
  padding: 11px 20px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  border-left: 3px solid transparent;
  transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}

.tssp-drop a::after{ display: none; }

.tssp-drop a:hover,
.tssp-drop a:focus-visible{
  background: var(--mist);
  border-left-color: var(--lime);
  color: var(--navy);
}

.tssp-drop small{
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--ink-soft);
}

/* Bloque de contacto: solo visible en el panel móvil */
.tssp-nav__foot{ display: none; }

/* ------------------------------------------------------------
   ACCIONES
   ------------------------------------------------------------ */
.tssp-actions{
  flex: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

.tssp-wa{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid #C9CCE4;
  border-radius: 4px;
  color: var(--navy);
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}

.tssp-wa svg{ width: 19px; height: 19px; fill: currentColor; }

.tssp-wa:hover,
.tssp-wa:focus-visible{
  background: var(--wa);
  border-color: var(--wa);
  color: #fff;
}

.tssp-cta{
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--navy-deep);
  background: var(--lime);
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s var(--ease), color .18s var(--ease);
}

.tssp-cta:hover,
.tssp-cta:focus-visible{
  background: var(--lime-dark);
  color: #fff;
}

/* Hamburguesa */
.tssp-burger{
  display: none;
  width: 42px; height: 42px;
  padding: 9px 10px;
  margin: 0;
  border-radius: 4px;
  color: var(--navy);
  cursor: pointer;
}

.tssp-burger span{
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .24s var(--ease), opacity .18s var(--ease);
}

.tssp-burger span + span{ margin-top: 5px; }

.tssp-scrim{ display: none; }

/* Foco visible con teclado */
.tssp-header a:focus-visible,
.tssp-toggle:focus-visible + .tssp-topbar ~ .tssp-bar .tssp-burger{
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1180px){
  .tssp-menu a{ font-size: 16px; padding-inline: 10px; }
  .tssp-menu a::after{ left: 10px; right: 10px; }
  .tssp-sub > a{ padding-right: 24px; }
  .tssp-sub > a::before{ right: 10px; }
}

@media (max-width: 1024px){
  .tssp-topbar{ display: none; }
  .tssp-burger{ display: block; }

  .tssp-bar{
    justify-content: space-between;
    gap: 12px;
    padding-block: 10px;
  }

  .tssp-nav{
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    margin: 0;
    padding: 26px 0 32px;
    background: #fff;
    box-shadow: -8px 0 40px rgba(30,32,88,.22);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    z-index: 110;
  }

  .tssp-toggle:checked ~ .tssp-bar .tssp-nav{ transform: translateX(0); }

  .tssp-menu{
    display: block;
    border-top: 1px solid var(--line);
  }

  .tssp-menu > li{ border-bottom: 1px solid var(--line); }

  .tssp-menu a{
    padding: 15px 24px;
    font-size: 19px;
  }

  .tssp-menu a::after{ display: none; }

  /* Sin JS: el submenú va siempre abierto en móvil */
  .tssp-sub > a::before{ display: none; }
  .tssp-sub > a{ padding-right: 24px; }

  .tssp-drop{
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--mist);
    border-top: 0;
    box-shadow: none;
    padding: 4px 0;
  }

  .tssp-drop a{ padding: 12px 24px 12px 36px; font-size: 14px; }
  .tssp-drop small{ display: none; }

  .tssp-nav__foot{
    display: block;
    margin: 22px 0 0;
    padding: 0 24px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  .tssp-nav__foot a{
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
  }

  .tssp-scrim{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(18,20,58,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
  }

  .tssp-toggle:checked ~ .tssp-scrim{
    opacity: 1;
    visibility: visible;
  }

  .tssp-toggle:checked ~ .tssp-bar .tssp-burger span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }
  .tssp-toggle:checked ~ .tssp-bar .tssp-burger span:nth-child(2){ opacity: 0; }
  .tssp-toggle:checked ~ .tssp-bar .tssp-burger span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 600px){
  .tssp-header{ --logo-h: 44px; }
  .tssp-shell{ padding-inline: 18px; }
  .tssp-cta{ padding: 10px 14px; font-size: 12px; }
}

@media (max-width: 430px){
  .tssp-cta{ display: none; }
}

@media (prefers-reduced-motion: reduce){
  .tssp-header *{ transition-duration: .01ms !important; }
}/* End custom CSS */