@charset "utf-8";

@font-face {
  font-family: "Roboto";
  src: url(../fns/);
}

/* roboto-flex-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto Flex", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 100 900;
  src: url("../fns/roboto-flex-v27-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  /*main colors*/
  --blue-primary-color: #002877; /*rgb(0, 40, 119)*/
  --org-primary-color: #f44b00;

  /*Hover colors*/
  --blue-hover-color: rgba(0, 49, 119, 0.302);

  /*Background colors*/
  --blue-bg-color: rgba(0, 40, 119, 0.9);
  --dark-bg-color: #131a22;

  /*borders*/
  --thin-blue-line: solid 0.5px rgba(0, 40, 119, 0.7);
  --thin-white-line: solid 0.3px rgba(255, 255, 255, 0.15);
  --thin-black-line: solid 0.3px rgba(0, 0, 0, 0.3);
  --radial-white-blue: radial-gradient(white, rgba(255, 255, 255, 0));

  --bdr-r: 5px;

  /*Text colors*/
  --white-text-color: #ffffff;
  --liteGrey-text-color: #cdcdcd;
  --darkgray-fg-color: #333;
  --lbt-color: #c1eaffe8; /*lbt: lite blue text color used over background #092546*/

  /**/
  --blue-button: #0080c0;

  --lta-icon-size: 24px;
  /* Font-weght*/

  --transition: all 0.3s ease;
}

* {
  font-family: "Roboto Flex", sans-serif;
  text-decoration: none;
  margin: 0;
  padding: 0;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #2a5297; /* fallback visible en márgenes / antes de cargar secciones */
}

/* Contenedor de sprites SVG inline — oculto visualmente */
.svg-defs-container {
  display: none;
}

/* Páginas sin sección hero: compensa el navbar fijo (80 px móvil / 50 px escritorio) */
.main-padded {
  padding-top: 80px;
}

a {
  text-decoration: none;
  text-align: left;
}

svg {
  display: inline-block;
  overflow: hidden;
}

.logot {
  display: none;
}

.t2 {
  font-weight: 700;
  font-stretch: 151%;
  letter-spacing: -0.1px;

  /*   letter-spacing: 1px; */
}

.t4 {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.strong-title {
  font-weight: 700;
}

.pfo {
  font-size: 0.9rem;
  font-weight: 200;
  letter-spacing: 1.2px;
  line-height: 1.4rem;
}

.seg-pfo {
  margin-bottom: 1.5em;
}

.addr {
  font-style: normal;
  font-weight: 100;
}

abbr {
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.3s ease;
}

abbr.fade-out {
  opacity: 0;
}

.rpane{
  border-radius: 10px;
  max-width: 800px;
}

.xlnk[href^="http"]::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.25em;

  background-size: 100%;
  background-image: url(../sc/img/sc_external-link_icon.svg);
}

.a-btn {
  margin: 1rem;
  padding: 0.4rem;
  color: #f5f5f7;
  opacity: 0.8;
  background-color: var(--blue-button);
}

.btn {
  font-size: 1.2rem;
  text-align: center;
  border-radius: var(--bdr-r);
  border: solid var(--blue-button) 5px;
}

.frm {
  width: 100%;
  border: none;
}

.inbx {
  font-size: 1rem;
  border: 0;
  padding: 10px;
  outline: none;
}

.inbx::placeholder {
  color: rgba(0, 0, 0, 0.35);
  font-size: 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
}

li {
  text-align: center;
}

.f-cr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-wr{
  flex-wrap: wrap;
}

.f-dr{
  flex-direction: row;
}

.f-ais {
  align-items: stretch;
}

.f-aic {
  align-items: center;
}

.f-aifs{
  align-items: flex-start;
}

.f-jcc {
  justify-content: center;
}

.f-jcsb {
  justify-content: space-between;
}

.f-end {
  justify-content: flex-end;
}

.f-jcs {
  justify-content: flex-start;
}

.f-dc {
  flex-direction: column;
}

.f-dr {
  flex-direction: row;
}

.f-bottom {
  align-items: baseline;
}

.g-cr {
  display: -ms-grid;
  display: grid;
}

.site-hdr-topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 1rem 1rem 0.5rem 1rem;
  background-color: var(--blue-primary-color);
  background-image: linear-gradient(#000000, rgba(3, 46, 132, 0.349));
  box-shadow: 0 2px 10px rgba(15, 15, 15, 0.495);
  border-bottom: 3px solid var(--org-primary-color);
  overflow: hidden;
  z-index: 1000;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white-text-color);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;

  &:focus {
    outline: 2px solid var(--org-primary-color);
  }
}

.nav-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white-text-color);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-toggle.active .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .icon-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.site-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.2rem 1rem 1rem 1rem;
  border: var(--thin-white-line);
  background-color: var(--blue-primary-color);
  box-shadow: 0 2px 10px rgba(15, 15, 15, 0.495);
  transform: translateY(-100%);
  transition: all 0.5s ease;
  overflow-y: auto;
  z-index: 1001;
}

.site-navbar.active {
  top: 80px;
  transform: translateY(0);
}

.navbar-hli {
  width: 100%;
  padding: 0.8rem 1rem;
  border: var(--thin-white-line);
}

.navbar-vli {
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-bottom: var(--thin-white-line);
}

.navbar-link {
  color: white;
}

.navbar-vli-wpr {
  gap: 1rem;
}

/* === HOME (clients) === */
.hm-sec-sector-wpr{
  background: #f4f6f9;
  padding: 4rem 1.5rem 5rem;
}

.hm-sectors-wpr{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hm-sector-title{
  color: var(--blue-primary-color);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.1rem;
  border-bottom: 2px solid rgba(0, 40, 119, 0.12);
  gap: 0.6rem;
}

.hm-sector-title::before{
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--org-primary-color);
  border-radius: 3px;
  flex-shrink: 0;
}

.hm-sec-cat-cr{
  max-width: 940px;
  gap: 1rem;
}

.hm-cli-cr{
  max-width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 40, 119, 0.07);
  padding: 1.25rem 1.25rem 1rem;
  gap: 0.6rem;
  border-top: 3px solid var(--blue-primary-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hm-cli-titulo{
  color: var(--blue-primary-color);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}
.sec-wrapper {
  width: 100%;
  background-color: #f5f5f7;
}


.ms-hero-cr {
  padding-top: 80px; /* compensa topbar fija (80px móvil) */
  background-color: var(--blue-primary-color);
  background-image: linear-gradient(to bottom, #000d26 0%, var(--blue-primary-color) 100%);
}

.ms-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem 1.5rem;
  gap: 2.5rem;
  flex-direction: column;
}

.ms-hero-text {
  gap: 1.5rem;
}

.ms-hero-title {
  font-size: 1.9rem;
  color: var(--white-text-color);
  line-height: 1.2;
}

.ms-hero-sub {
  color: var(--lbt-color);
  max-width: 560px;
}

.ms-hero-ctas {
  flex-wrap: wrap;
  gap: 1rem;
}

.ms-hero-cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: var(--org-primary-color);
  color: var(--white-text-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.ms-hero-cta:hover {
  background-color: #c73d00;
}

.ms-hero-cta-sec {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: transparent;
  color: var(--white-text-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.ms-hero-cta-sec:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.ms-hero-trust {
  font-size: 0.75rem;
  color: rgba(193, 234, 255, 0.5);
  letter-spacing: 0.5px;
}

.ms-hero-mockup {
  width: 100%;
}

.ms-hero-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.5));
}

/* ── Sección Contactos homepage ── */
.ms-cto-top {
  background: linear-gradient(140deg, #000d26 0%, #001a50 55%, #002877 100%);
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Orb decorativo naranja */
.ms-cto-top::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 75, 0, 0.18) 0%, transparent 68%);
  top: -160px;
  right: -120px;
  pointer-events: none;
}

/* Orb decorativo azul claro */
.ms-cto-top::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193, 234, 255, 0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.ms-cto-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Columna izquierda */
.ms-cto-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ms-cto-label {
  color: var(--org-primary-color);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ms-cto-title {
  color: var(--white-text-color);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.ms-cto-title em {
  font-style: normal;
  color: var(--org-primary-color);
}

.ms-cto-lead {
  color: rgba(193, 234, 255, 0.75);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 2rem;
}

/* Canal de contacto — card */
.ms-cto-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-style: normal;
}

.ms-cto-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(193, 234, 255, 0.1);
  border-left: 3px solid var(--org-primary-color);
  border-radius: 6px;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  color: var(--white-text-color);
  transition: background 0.2s, transform 0.2s;
}

.ms-cto-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(5px);
}

.ms-cto-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(244, 75, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ms-cto-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ms-cto-item-label {
  color: rgba(193, 234, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ms-cto-item-value {
  color: var(--white-text-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.ms-cto-hours {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(193, 234, 255, 0.55);
  font-size: 0.8rem;
  margin-top: 0.4rem;
  padding-left: 0.5rem;
}

/* Columna derecha — CTA card */
.ms-cto-cta-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(193, 234, 255, 0.12);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
}

.ms-cto-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 75, 0, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.ms-cto-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(244, 75, 0, 0.15);
  border: 1px solid rgba(244, 75, 0, 0.3);
  color: var(--org-primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

.ms-cto-cta-title {
  color: var(--white-text-color);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.15;
}

.ms-cto-cta-lead {
  color: rgba(193, 234, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ms-cto-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  background-color: var(--org-primary-color);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s, gap 0.2s;
}

.ms-cto-cta-btn::after {
  content: '→';
  transition: transform 0.2s;
}

.ms-cto-cta-btn:hover {
  background-color: #c73d00;
  gap: 0.8rem;
}

.ms-cto-cta-btn:hover::after {
  transform: translateX(4px);
}

.ms-cto-cta-divider {
  border: none;
  border-top: 1px solid rgba(193, 234, 255, 0.1);
  margin: 0;
}

.ms-cto-cta-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ms-cto-cta-socials-label {
  color: rgba(193, 234, 255, 0.45);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ms-cto-cta-socials-links {
  display: flex;
  gap: 0.75rem;
}

.ms-cto-cta-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(193, 234, 255, 0.12);
  color: var(--lbt-color);
  transition: background 0.2s, border-color 0.2s;
}

.ms-cto-cta-social:hover {
  background: rgba(244, 75, 0, 0.15);
  border-color: var(--org-primary-color);
}

@media (min-width: 769px) {
  .ms-cto-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .ms-cto-info {
    flex: 1;
  }

  .ms-cto-cta-card {
    flex: 0 0 340px;
  }

  .ms-cto-title {
    font-size: 3rem;
  }
}

@media (min-width: 1025px) {
  .ms-cto-title {
    font-size: 3.25rem;
  }
}

#ms-top-info {
  display: block;
  text-align: left;
}

#ddl-frm {
  background-color: white;
  height: 1.86rem;
}

#ddl-frm input[type="search"] {
  display: inline-block;
  width: 100%;
}

form:has(input[type="search"]:focus) {
  /* border: solid 3px var(--blue-primary-color); */
  box-shadow: 0 0 6px var(--org-primary-color);
  outline: none;
}

#ddl-search {
  height: 1rem;
}

#ddl-search-btn {
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--blue-button);
  background-image: url("../sc-img/sc_search_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#ms-link-button-icon {
  width: 100%;
  padding-top: 10px;
  clear: both;
  z-index: 1;
}

#ms-link-button-a {
  position: relative;
  z-index: 1;
  clear: both;
}

.link-card-cr {
  display: block;
  background-color: var(--blue-button);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 300px;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.link-card-cr:hover {
  transform: translateY(-5px);
  background-color: #0090d8;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

@keyframes ms-arrow-float {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(5px, -5px); }
}

.link-card-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.link-card-cr:hover .link-card-arrow {
  animation: ms-arrow-float 0.8s ease-in-out infinite;
}
.frm-card-cr {
  border-radius: 5px;
  border: rgba(0, 0, 119, 0.041) solid 5px;
  background-color: #0080c0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  width: 800px;
  height: auto;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;

  transition-property: background-color;
  transition-duration: 2s;
  transition-delay: 2;
}

.link-card-title {
  width: 100%;
  color: var(--white-text-color);
}

.link-card-desc {
  color: var(--white-text-color);
}

.link-card-desc-icon {
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.ms-sec-cr {
  margin: 1rem;
  padding: 1rem;
  background-color: #ffffff;
}

.ms-sec-title {
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  color: #002877;

  /*   border: #46D268 solid 2px; */
}


.ms-sec-list-cr {
  padding: 0.2rem;
  /*   border: solid 3px greenyellow; */
}

.ms-sec-list {
  text-align: left;
}

.ms-sec-more {
  display: flex;
  align-items:center;
  justify-content: right;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--blue-primary-color);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s, gap 0.25s;
}

.ms-sec-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}

.ms-sec-more::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.ms-sec-more:hover {
  background-color: var(--org-primary-color);
  gap: 0.85rem;
}

.ms-sec-more:hover::before {
  transform: translateX(100%);
}

.ms-sec-more:hover::after {
  transform: translateX(4px);
}

.ms-sec-more:active {
  background-color: #c73d00;
  transform: scale(0.98);
}

ul .ms-sec-hm-lta {
  justify-items: left;
}

.ms-sec-hm-lta li {
  text-align: left;
  margin-left: 2em;
  line-height: 1.5em;
  list-style-position: outside;
  list-style-image: url(../sc/img/arrow_right_bullet.svg);
}


.ftr-wpr {
  width: 100%;

  color: #dddddd;
  background-color: #092546;
}

.isologo {
  width: 48px;
  height: 48px;
}

.logo {
  width: 90px;
  height: 56px;
}

.ftr-logo-cr {
  width: 100%;
  padding: 2em 1.5em 0.5em 1.5em;
  border-bottom: var(--thin-white-line);
}

.ftr-cat-wpr {
  flex-wrap: wrap;
  gap: 0.9em;
  padding-top: 1.5em;
}

.ftr-cat-cr {
  width: 230px;
}

.ftr-cat-title-cr {
  margin-bottom: 1em;
  text-decoration: none;
  color: var(--liteGrey-text-color);
}

.ftr-cat-title {
  color: var(--lbt-color);
}

.ftr-cat-desc {
  color: var(--lbt-color);
  margin-bottom: 1rem;
}

.ftr-cat-lta li {
  margin-bottom: 0.6rem;
}

.ftr-cat-lta li a {
  color: var(--lbt-color);
  font-size: 0.9rem;
}

.ftr-cat-li-cr {
  gap: 0.4rem;
}

.frt-pfo-em {
  color: var(--lbt-color);
  text-decoration: underline;
}

.ftr-crb-cr {
  width: 100%;
  padding: 30px 30px;
  color: var(--liteGrey-text-color);
  background-color: var(--dark-bg-color);
}

.stg-list {
  letter-spacing: 1px;
}

.stg-list li {
  padding-top: 6px;
}

.vhdn {
  display: none;
}

.ms-vh {
  display: none;
}

.ms-sc-svg-sec {
  width: 96px;
  height: 96px;
}

#ms-sc-svg-titer {
  fill: var(--blue-primary-color);
}

#ms-sc-svg-ges {
  fill: rgb(73, 118, 208);
}

#ms-sc-svg-net {
  fill: var(--blue-primary-color);
}

.svg-20x20 {
  width: 20px;
  height: 20px;
}

.org-fill {
  /* fill: var(--org-primary-color); */
  fill: #f44b00;
}
.ec-svg-icons {
  width: 24px;
  height: 24px;
  fill: white;
}

.ftr-sb-wpr {
  width: 70%;

  margin-top: 1.5em;
  border-top: var(--thin-white-line);
}

.ftr-sb-title {
  width: 100%;
  padding: 1rem 1rem 0 1rem;
  background-color: #092546;
}

.ftr-sb-icons-cr {
  width: 100%;
  padding: 1rem;
  gap: 0.63%;

  background: #092546;
}

.ftr-sb-icons {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  outline: transparent;
  background-color: var(--dark-bg-color);
  border: var(--thin-white-line);

  transition-duration: 0.5s;
  transition-timing-function: ease-in;
}

.ftr-sb-icons:link {
  color: white;
}

.ftr-sb-icons:visited {
  color: unset;
}

.ftr-sb-icons:focus {
  text-decoration: none;
}

.ftr-sb-icons:hover {
  background-color: var(--org-primary-color);
}

.ftr-sb-icons:active {
  background-color: var(--org-primary-color);
}

.ftr-fb-cr {
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1000;
}

.ftr-fb-cr a {
  opacity: 0.85;
}

.ftr-fb-cr a:hover {
  opacity: 1;
}

.ftr-fb-cr.visible {
  opacity: 1;
  transform: translateY(0%);
  pointer-events: auto;
}

.ftr-fb-cr a svg:hover {
  transform: scale(1.1);
  opacity: 1;
  /*   fill: orangered; */
  scale: 0.75;
}

.ftr-chat-icon {
  width: 2.5em;
  height: 2.5em;
  margin-right: 0.4em;
  margin-bottom: 0.6em;

  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;

  background-image: linear-gradient(
    var(--blue-primary-color),
    var(--blue-button)
  );
}

.ftr-chat-iic {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: #46d268 solid 2px;
  transform: rotate(-80deg);
}

.ftr-btn-top {
  width: 2.5em;
  height: 2.5em;
  margin-right: 0.4em;
  margin-bottom: 0.5em;

  border: var(--thin-white-line);
  background-color: var(--blue-primary-color);
}

@media (hover: hover) {
  .ftr-btn-cr:hover {
    background-color: rgba(255, 255, 255, 0.854);

    svg {
      fill: var(--blue-primary-color);
    }
  }
}

.ftr-top:focus-visible {
  outline: none;
}

.bxsh {
  box-shadow: 2px 3px 5px 3px #0028777d;
}

.bdr {
  border-radius: var(--bdr-r);
}

/*Animaciones, transition hovered*/
.ath {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  transition-delay: 100ms;
}

.Sgin-pfo {
  font-weight: bold;
  letter-spacing: 1px;
}

/* .a-bg{
  text-align: left;
  margin-left: 2em;
  line-height: 1.5em;
  list-style-position: outside;
  list-style-image: url(../sc/img/arrow_right_bullet.svg);
} */

.nav-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: var(--transition);
}

@media (preferes-reduced-motion: reduce) {
  .ath {
    transition: none;
  }
}

/*0 - 480*/
@media (min-width: 481px) {
  .ilogo {
    display: none;
  }

  .logot {
    display: flex;
  }
}

@media (min-width: 769px) {
  .navbar-hl-cr {
    margin-left: auto;
    margin-right: 1rem;
  }

  .navbar-hli {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
  }

  .ms-hero-title {
    font-size: 2.2rem;
  }
}

@media (min-width: 1025px) {
  .site-hdr-topbar {
    height: 50px;
   padding: 1rem;
  }

  .ms-hero-cr {
    padding-top: 50px; /* compensa topbar fija (50px desktop) */
  }

  .ms-cto-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .ms-hero-content {
    flex-direction: row;
    align-items: center;
  }

  .ms-hero-text {
    flex: 1 1 0;
  }

  .ms-hero-mockup {
    flex: 1 1 0;
    justify-content: flex-end;
  }

  .ms-hero-title {
    font-size: 2.4rem;
  }

  .navbar-hl-cr {
    margin-left: auto;
    margin-right: 0;
  }

  .navbar-hli {
    width: auto;
    padding: 0;
    margin-right: 1rem;
    border: 0;
    border-bottom: 2px solid transparent;

    &:hover {
      cursor: pointer;
      border-bottom: 2px solid var(--org-primary-color);
    }
  }

  .ilogo {
    display: flex;
    width: 24px;
    height: 24px;
    margin-right: 2rem;
  }
  .logot {
    display: none;
  }

  .ec-svg-icons {
    display: none;
  }

  .nav-toggle-cr {
    display: none;
  }

  .navbar-vli-ul {
    flex-direction: row;
  }

  .navbar-vli {
    gap: 0;
    padding: 0;
    margin-right: 1rem;
    border-bottom: 2px solid transparent;

    &:hover {
      border-bottom: 2px solid var(--org-primary-color);
    }
  }

  .navbar-hl-ul .navbar-hli:last-child,
  .navbar-hl-ul .navbar-hli:last-child:hover {
    border-bottom: 2px solid transparent;
    cursor: default;
  }
}

/* === TI Tercerizado page === */
.tit-hero {
  padding-top: 80px;
  background-color: var(--blue-primary-color);
  background-image: linear-gradient(to bottom, #000d26, var(--blue-primary-color));
}

.tit-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
  gap: 1.25rem;
}

.tit-hero-title {
  font-size: 2rem;
  color: var(--white-text-color);
  line-height: 1.2;
}

.tit-hero-lead {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1.1px;
  color: var(--lbt-color);
}

.tit-hero-body {
  color: rgba(193, 234, 255, 0.7);
}

.tit-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.tit-card {
  background-color: var(--dark-bg-color);
  display: flex;
  flex-direction: column;
}

.tit-card-img {
  width: 100%;
  height: 180px;
  min-height: 180px;
  flex-shrink: 0;
  overflow: hidden;
}

.tit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tit-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.tit-card-title {
  color: var(--white-text-color);
  font-size: 1rem;
  font-weight: 600;
}

.tit-card-desc {
  color: rgba(193, 234, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tit-pfo-acdo{
  font-size: 1.2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 600px) {
  .tit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .tit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tit-hero-title {
    font-size: 2.4rem;
  }
}

/* === SISTEMAS PAGE === */
.sis-rows {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sis-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: flex-start;
}

.sis-row:first-child {
  border-top: none;
  padding-top: 0;
}

.sis-row-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sis-row-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sis-row-title {
  color: var(--white-text-color);
  font-size: 1.15rem;
  font-weight: 700;
}

.sis-row-tag {
  color: var(--org-primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sis-row p {
  color: rgba(193, 234, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sis-row em {
  color: var(--lbt-color);
  font-style: italic;
}

@media (min-width: 769px) {
  .sis-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .sis-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .sis-row-img {
    width: 42%;
    flex-shrink: 0;
    height: 240px;
    object-fit: cover;
  }

  .sis-row-text {
    flex: 1;
  }
}

/* === REDES PAGE === */
.redes-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.redes-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.redes-sidebar-block {
  border-left: 3px solid var(--org-primary-color);
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.04);
}

.redes-sidebar-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.redes-sidebar-block a {
  color: var(--lbt-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.redes-sidebar-block a:hover {
  color: #fff;
}

.redes-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.redes-art {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 0;
}

.redes-art:first-child {
  border-top: none;
  padding-top: 0;
}

.redes-art-title {
  color: var(--white-text-color);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.redes-art p {
  color: rgba(193, 234, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

.redes-art strong {
  color: var(--lbt-color);
  font-weight: 600;
}

.redes-imgs {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.redes-img {
  width: 100%;
  max-width: 240px;
  height: 150px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1025px) {
  .redes-layout {
    flex-direction: row;
    padding-top: 3rem;
  }

  .redes-sidebar {
    width: 210px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
    align-self: flex-start;
  }
}

/* === SERVICIOS GRID (homepage) === */

.svc-section {
  background: #f4f6f9;
  padding: 4.5rem 1.5rem 5rem;
}

.svc-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.svc-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-eyebrow {
  color: var(--org-primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.svc-section-title {
  color: var(--blue-primary-color);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}

.svc-section-lead {
  color: #5a6a82;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Grid */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Card */
.svc-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 40, 119, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 40, 119, 0.13);
}

/* Barra superior de color */
.svc-card-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary-color), #2a5297);
}

.svc-card-bar--orange {
  background: linear-gradient(90deg, var(--org-primary-color), #ff7b45);
}

/* Zona icono + título */
.svc-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0.75rem;
}

.svc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 40, 119, 0.08);
}

.svc-card-icon--orange {
  background: rgba(244, 75, 0, 0.1);
}

.svc-card-title a {
  color: var(--blue-primary-color);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Cuerpo */
.svc-card-body {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.svc-card-desc {
  color: #4a5a70;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Feature pills */
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-tag {
  background: rgba(0, 40, 119, 0.06);
  color: var(--blue-primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 40, 119, 0.12);
  white-space: nowrap;
}

.svc-tag--orange {
  background: rgba(244, 75, 0, 0.07);
  color: #c73d00;
  border-color: rgba(244, 75, 0, 0.18);
}

/* Pie de card */
.svc-card-footer {
  padding: 0 1.5rem 1.5rem;
  margin-top: auto;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, gap 0.2s, border-color 0.15s;
}

.svc-card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.svc-card-link:hover {
  color: var(--org-primary-color);
  border-color: var(--org-primary-color);
  gap: 0.65rem;
}

.svc-card-link:hover::after {
  transform: translateX(3px);
}

@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-section-title {
    font-size: 2.4rem;
  }
}

/* === PDF GATE (sistemas) === */

.pdf-gate {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 40, 119, 0.04);
  border: 1px solid rgba(0, 40, 119, 0.12);
  border-left: 3px solid var(--blue-primary-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdf-gate-lead {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue-primary-color);
  font-size: 0.875rem;
  font-weight: 700;
}

.pdf-gate-lead svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.pdf-gate-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pdf-gate-input {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(0, 40, 119, 0.2);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.875rem;
  color: #1a2a44;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pdf-gate-input:focus {
  outline: none;
  border-color: var(--blue-primary-color);
  box-shadow: 0 0 0 3px rgba(0, 40, 119, 0.1);
}

.pdf-gate-input.is-valid {
  border-color: #2ca06e;
}

.pdf-gate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 14rem;
  white-space: nowrap;
  padding: 0.6rem 1.25rem;
  background: var(--blue-primary-color);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, opacity 0.2s, transform 0.15s;
}

.pdf-gate-btn:not(:disabled):hover {
  background: #001f6b;
  transform: translateY(-1px);
}

.pdf-gate-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.pdf-gate-hint {
  color: #6a7a90;
  font-size: 0.78rem;
  margin: 0;
  min-height: 1.25em;
  transition: color 0.2s;
}

.pdf-gate-hint.is-ready {
  color: #2ca06e;
  font-weight: 600;
}

/* === CONTACTOS PAGE === */

.ctc-section {
  background-color: var(--dark-bg-color);
  padding: 2.5rem 1.5rem 4rem;
}

.ctc-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(193, 234, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #0d1827;
}

.ctc-layout .cml-info {
  border-radius: 0;
  padding: 2rem 1.75rem 2.5rem;
  gap: 1rem;
}

.ctc-layout .cml-form-wrap {
  padding: 2rem 1.75rem 2.5rem;
}

.ctc-layout .cml-form {
  gap: 0.65rem;
}

.ctc-layout .cml-form-title {
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

@media (min-width: 769px) {
  .ctc-layout {
    flex-direction: row;
  }

  .ctc-layout .cml-info {
    width: 300px;
    flex-shrink: 0;
  }

  .ctc-layout .cml-form-wrap {
    flex: 1;
  }

  .ctc-layout .cml-checks {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .ctc-layout .cml-err-check {
    margin-left: 0;
  }
}

/* === CLIENTES (tit) === */

.cli-section {
  background: #f4f6f9;
  padding: 4rem 1.5rem 5rem;
}

.cli-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Encabezado general */
.cli-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cli-title {
  color: var(--blue-primary-color);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.cli-lead {
  color: #5a6a82;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Bloque por sector */
.cli-sector {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cli-sector-title {
  color: var(--blue-primary-color);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 40, 119, 0.12);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cli-sector-title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--org-primary-color);
  border-radius: 3px;
  flex-shrink: 0;
}

/* Fila de cards: columna en móvil, fila en ≥600px */
.cli-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Card */
.cli-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 40, 119, 0.07);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 3px solid var(--blue-primary-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cli-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 40, 119, 0.13);
}

.cli-card-name {
  color: var(--blue-primary-color);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

.cli-card-desc {
  color: #4a5a70;
  font-size: 0.82rem;
  line-height: 1.55;
  flex: 1;
}

.cli-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2ca06e;
  margin-top: 0.25rem;
}

.cli-card-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ca06e;
  flex-shrink: 0;
}

.cli-card-status--done {
  color: #7a8a9a;
}

.cli-card-status--done::before {
  background: #7a8a9a;
}

@media (min-width: 600px) {
  .cli-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cli-card {
    flex: 1 1 200px;
    max-width: calc(50% - 0.5rem);
  }
}

@media (min-width: 900px) {
  .cli-card {
    flex: 1 1 0;
    max-width: none;
  }

  .cli-title {
    font-size: 2rem;
  }
}

/* === OTROS SERVICIOS (tit) === */

.ots-section {
  background: #fff;
  padding: 5rem 1.5rem;
}

.ots-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.ots-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ots-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--org-primary-color);
  margin-bottom: 0.5rem;
}

.ots-title {
  font-size: 2rem;
  color: var(--blue-primary-color);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.ots-lead {
  color: #5a6a7a;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.ots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Card */
.ots-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0 0 0 / 0.10);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ots-card:hover {
  box-shadow: 0 10px 40px rgba(0 0 0 / 0.16);
  transform: translateY(-4px);
}

/* Image */
.ots-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.ots-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.ots-card:hover .ots-card-img {
  transform: scale(1.04);
}

.ots-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0 0 0 / 0.15) 0%, rgba(0 0 0 / 0.55) 100%);
}

.ots-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  background: var(--org-primary-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.ots-card-badge--blue {
  background: var(--blue-primary-color);
}

/* Body */
.ots-card-body {
  background: var(--dark-bg-color);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.ots-card-title {
  font-size: 1.2rem;
  color: var(--white-text-color);
  line-height: 1.35;
  margin: 0;
}

.ots-card-desc {
  color: #aab4c0;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* Feature list */
.ots-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ots-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--lbt-color);
  font-size: 0.88rem;
  line-height: 1.5;
}

.ots-list-item::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--org-primary-color);
  margin-top: 0.45em;
}

/* CTA link */
.ots-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--org-primary-color);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}

.ots-card-link:hover {
  gap: 0.65rem;
}

.ots-card-link--blue {
  color: var(--lbt-color);
}

@media (min-width: 700px) {
  .ots-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ots-card-img-wrap {
    height: 280px;
  }

  .ots-title {
    font-size: 2.4rem;
  }
}

@media (min-width: 960px) {
  .ots-grid--3col {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ots-grid--3col .ots-card-img-wrap {
    height: 200px;
  }

  .ots-grid--3col .ots-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .ots-grid--3col .ots-card-title {
    font-size: 1.05rem;
  }
}

/* === CONTACTO (tit) === */

.tit-cto-section {
  background: var(--dark-bg-color);
  padding: 4rem 1.5rem 5rem;
}

.spt-cto-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.tit-cto-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.tit-cto-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tit-cto-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--org-primary-color);
  margin-bottom: 0.5rem;
}

.tit-cto-title {
  font-size: 2rem;
  color: var(--white-text-color);
  margin: 0 0 0.75rem;
}

.tit-cto-lead {
  color: #aab4c0;
  font-size: 1rem;
  line-height: 1.6;
}

.tit-cto-lead strong {
  color: var(--lbt-color);
}

.tit-cto-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tit-cto-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}

.spt-cto{
  gap: 0.5rem;
  font-style: normal;
}

.tit-cto-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255 255 255 / 0.05);
  border: 1px solid rgba(255 255 255 / 0.08);
  border-left: 3px solid var(--org-primary-color);
  border-radius: 6px;
  color: var(--lbt-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.tit-cto-item:hover {
  background: rgba(255 255 255 / 0.09);
  transform: translateX(4px);
}

.tit-cto-item svg {
  flex-shrink: 0;
  color: var(--org-primary-color);
}

/* form overrides for dark bg context */
.tit-cto-form-wrap {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255 255 255 / 0.04);
  border: 1px solid rgba(255 255 255 / 0.1);
  border-radius: 10px;
  padding: 1.75rem;
}

.tit-cto-form-wrap .cml-form-title {
  color: var(--white-text-color);
}

.tit-cto-form-wrap .cml-form-sub {
  color: #aab4c0;
}

.tit-cto-form-wrap .cml-label {
  color: #c8d4df;
}

.tit-cto-form-wrap .cml-input {
  background: rgba(255 255 255 / 0.06);
  border-color: rgba(255 255 255 / 0.15);
  color: var(--white-text-color);
}

.tit-cto-form-wrap .cml-input:focus {
  border-color: var(--org-primary-color);
  background: rgba(255 255 255 / 0.09);
}

.tit-cto-form-wrap .cml-input::placeholder {
  color: #5a6a7a;
}

.tit-cto-form-wrap .cml-check-label {
  color: #c8d4df;
}

.tit-cto-form-wrap .cml-link {
  color: var(--lbt-color);
}

@media (min-width: 700px) {
  .tit-cto-body {
    flex-direction: row;
    align-items: flex-start;
  }

  .tit-cto-contacts {
    flex: 0 0 260px;
  }

  .tit-cto-title {
    font-size: 2.5rem;
  }
}

/* === NOSOTROS PAGE === */
.nos-hero {
  background-color: var(--blue-primary-color);
  background-image: linear-gradient(135deg, #000d26 0%, var(--blue-primary-color) 100%);
  padding-top: 80px;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.nos-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.nos-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nos-hero-title {
  font-size: 2rem;
  color: var(--white-text-color);
  line-height: 1.2;
  font-weight: 700;
}

.nos-hero-lead {
  color: var(--lbt-color);
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.65;
}

.nos-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nos-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--org-primary-color);
}

.nos-stat-num {
  color: var(--white-text-color);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.nos-stat-label {
  color: rgba(193, 234, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.nos-hero-ill {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nos-hero-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 4px 32px rgba(0, 40, 119, 0.5));
}

@media (min-width: 1025px) {
  .nos-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .nos-hero-text {
    flex: 1 1 0;
  }

  .nos-hero-ill {
    flex: 1 1 0;
  }

  .nos-hero-title {
    font-size: 2.6rem;
  }
}


.nos-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  text-align: left;
}

.nos-intro p {
  color: rgba(193, 234, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.nos-mvv {
  background-color: #f5f7fb;
  padding: 3rem 1.5rem;
}

.nos-mvv-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.nos-mvv-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #dce3ef;
  gap: 0.75rem;
}

.nos-mvv-label {
  color: var(--org-primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nos-mvv-title {
  color: var(--blue-primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.nos-mvv-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.nos-mvv-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.65;
}

.nos-val-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.nos-val-term {
  color: var(--blue-primary-color);
  font-weight: 700;
  font-size: 0.95rem;
}

.nos-val-desc {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0.15rem 0 0 0;
}

.nos-team {
  background-color: var(--dark-bg-color);
  padding: 3rem 1.5rem;
}

.nos-team-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nos-team-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}

.nos-team-label {
  color: var(--org-primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nos-team-title {
  color: var(--white-text-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.nos-team-lead {
  color: rgba(193, 234, 255, 0.75);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.6;
}

.nos-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.nos-team-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 3px solid var(--org-primary-color);
}

.nos-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nos-card-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.nos-card-name {
  color: var(--white-text-color);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nos-card-role {
  color: var(--org-primary-color);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.15rem;
}

.nos-card-bio {
  color: rgba(193, 234, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 769px) {

  .nos-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === SITEMAP PAGE === */
.smp-section {
  background-color: var(--dark-bg-color);
  padding: 2.5rem 1.5rem 4rem;
}

.smp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.smp-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(193, 234, 255, 0.1);
  border-top: 3px solid var(--org-primary-color);
  border-radius: 4px;
  padding: 1.25rem 1.5rem 1.5rem;
}

.smp-card-title {
  color: var(--white-text-color);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(193, 234, 255, 0.08);
}

.smp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.smp-list li a {
  color: var(--lbt-color);
  font-size: 0.875rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  transition: color 0.15s;
}

.smp-list li a::before {
  content: '›';
  color: var(--org-primary-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.smp-list li a:hover {
  color: white;
  text-decoration: underline;
}

.smp-list li a.smp-link-ext::after {
  content: '↗';
  font-size: 0.7rem;
  opacity: 0.6;
  margin-left: 0.2rem;
}

@media (min-width: 600px) {
  .smp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .smp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === FAQ PAGE === */
.faq-index {
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.faq-index-link {
  color: var(--lbt-color);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(193, 234, 255, 0.25);
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.faq-index-link:hover {
  background-color: rgba(193, 234, 255, 0.1);
  color: white;
}

.faq-section {
  padding-bottom: 4rem;
}

.faq-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-cat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-cat-title {
  color: var(--white-text-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faq-cat-label {
  color: var(--org-primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-item {
  border-top: 1px solid rgba(193, 234, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(193, 234, 255, 0.08);
}

.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--white-text-color);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(193, 234, 255, 0.3);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.15s;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  background-color: var(--lbt-color);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.faq-chevron::before {
  width: 8px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-chevron::after {
  width: 1.5px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-chevron::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-item[open] .faq-q {
  color: var(--lbt-color);
}

.faq-item[open] .faq-chevron {
  border-color: var(--org-primary-color);
}

.faq-a {
  padding: 0 0 1.25rem;
  color: rgba(193, 234, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-a p + p {
  margin-top: 0.75rem;
}

.faq-a ul,
.faq-a ol {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-a a {
  color: var(--lbt-color);
  text-decoration: underline;
}

.faq-a a:hover {
  color: white;
}

.faq-a strong {
  color: rgba(193, 234, 255, 0.95);
}

/* === POLÍTICA DE PRIVACIDAD === */

.prv-section {
  background: #f5f7fb;
  padding: 4rem 1.5rem 5rem;
}

.prv-inner {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(0 0 0 / 0.07);
}

.prv-inner h2 {
  color: var(--blue-primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--org-primary-color);
}

.prv-inner h3 {
  color: var(--blue-primary-color);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.prv-inner p,
.prv-inner .seg-pfo {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prv-inner a {
  color: var(--blue-primary-color);
  text-decoration: underline;
}

.prv-inner a:hover {
  color: var(--org-primary-color);
}

@media (min-width: 1025px) {
  .prv-section {
    padding-top: 3rem;
  }

  main.main-padded {
    padding-top: 50px;
  }
}

/*
 * NOTA — padding-top en <main> para páginas nuevas
 * ─────────────────────────────────────────────────────────────────────────────
 * El navbar es position:fixed. La mayoría de páginas compensan su altura
 * dentro de la primera sección (hero, banner, etc.) con padding-top propio.
 *
 * Solo se necesita padding-top en <main> cuando la página NO tiene una sección
 * hero que absorba el espacio del navbar. En ese caso agregar al <main>:
 *   class="main-padded"
 *
 * La clase reduce el padding a 50px en pantallas ≥1025px,
 * donde el navbar mide solo 50px de alto.
 *
 * Páginas que actualmente usan este patrón: /legal/privacy/
 * ─────────────────────────────────────────────────────────────────────────────
 */

/* === EN CONSTRUCCIÓN (wip) === */
.wip-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background-color: var(--blue-primary-color);
  background-image: linear-gradient(135deg, #000d26 0%, var(--blue-primary-color) 100%);
  padding-top: 80px;
}

.wip-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.wip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  background-color: rgba(244, 75, 0, 0.15);
  border: 1px solid rgba(244, 75, 0, 0.4);
  border-radius: 20px;
  color: var(--org-primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wip-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--org-primary-color);
  animation: wip-pulse 1.6s ease-in-out infinite;
}

@keyframes wip-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.wip-title {
  color: var(--white-text-color);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
}

.wip-lead {
  color: var(--lbt-color);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
}

.wip-divider {
  width: 48px;
  height: 3px;
  background-color: var(--org-primary-color);
  border-radius: 2px;
}

.wip-links-label {
  color: rgba(193, 234, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.wip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.wip-link {
  color: var(--lbt-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(193, 234, 255, 0.15);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}

.wip-link:hover {
  background-color: rgba(193, 234, 255, 0.1);
  color: white;
  border-color: rgba(193, 234, 255, 0.3);
}

.wip-cta {
  margin-top: 0.5rem;
}

@media (min-width: 769px) {
  .wip-title {
    font-size: 3rem;
  }
}

/* === MODAL: Solicitar evaluación (cml = contact modal) === */

/* Botón hero como <button> */
button.ms-hero-cta {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Overlay / backdrop */
.cml-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;          /* por encima del navbar (z-index: 1001) */
  background-color: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 1rem 1rem; /* top = altura del navbar móvil */
  overflow-y: auto;
  animation: cml-fade-in 0.18s ease;
}

.cml-overlay[hidden] {
  display: none;
}

@keyframes cml-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Caja del modal */
.cml-box {
  position: relative;
  background-color: #0d1827;
  border: 1px solid rgba(193, 234, 255, 0.12);
  border-radius: 10px;
  width: 100%;
  max-width: 860px;
  max-height: calc(100vh - 80px - 1rem); /* viewport menos navbar móvil */
  overflow-y: auto;
  animation: cml-slide-up 0.22s ease;
}

@keyframes cml-slide-up {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Botón cerrar */
.cml-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(193, 234, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(193, 234, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s, color 0.15s;
}

.cml-close:hover {
  background-color: rgba(244, 75, 0, 0.15);
  color: white;
  border-color: var(--org-primary-color);
}

/* Layout interno: columnas */
.cml-inner {
  display: flex;
  flex-direction: column;
}

/* Panel izquierdo: info */
.cml-info {
  background-color: var(--blue-primary-color);
  background-image: linear-gradient(160deg, #000d26 0%, var(--blue-primary-color) 100%);
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cml-info-label {
  color: var(--org-primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cml-info-title {
  color: var(--white-text-color);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.cml-info-lead {
  color: var(--lbt-color);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cml-info-lead strong {
  color: white;
}

.cml-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-style: normal;
}

.cml-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--lbt-color);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s;
}

.cml-contact-item:hover {
  color: white;
}

.cml-contact-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Panel derecho: formulario */
.cml-form-wrap {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cml-form-title {
  color: var(--white-text-color);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.cml-form-sub {
  color: rgba(193, 234, 255, 0.5);
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.cml-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Fila de dos columnas */
.cml-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Campo individual */
.cml-field {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cml-label {
  color: rgba(193, 234, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 600;
}

.cml-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(193, 234, 255, 0.15);
  border-radius: 4px;
  color: var(--white-text-color);
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
  transition: border-color 0.15s, background-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.cml-input::placeholder {
  color: rgba(193, 234, 255, 0.3);
}

.cml-input:focus {
  outline: none;
  border-color: rgba(193, 234, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

.cml-input.is-invalid {
  border-color: #e05252;
  background-color: rgba(224, 82, 82, 0.05);
}

.cml-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c1eaff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.cml-select option {
  background-color: #0d1827;
  color: white;
}

.cml-textarea {
  resize: vertical;
  min-height: 72px;
}

/* Mensajes de error */
.cml-err {
  color: #e05252;
  font-size: 0.72rem;
  min-height: 1em;
}

/* Checkboxes */
.cml-checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.cml-check-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cml-check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  color: rgba(193, 234, 255, 0.8);
  font-size: 0.82rem;
  position: relative;
}

.cml-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cml-checkmark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid rgba(193, 234, 255, 0.3);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background-color 0.15s;
}

.cml-check:checked + .cml-checkmark {
  background-color: var(--blue-primary-color);
  border-color: var(--lbt-color);
}

.cml-check:checked + .cml-checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--lbt-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

.cml-check:focus-visible + .cml-checkmark {
  outline: 2px solid var(--lbt-color);
  outline-offset: 2px;
}

.cml-check.is-invalid + .cml-checkmark {
  border-color: #e05252;
}

.cml-err-check {
  margin-left: 1.6rem;
  margin-top: -0.25rem;
}

.cml-link {
  color: var(--lbt-color);
  text-decoration: underline;
}

/* Botón enviar */
.cml-submit {
  margin-top: 0.5rem;
  padding: 0.7rem 1.5rem;
  background-color: var(--org-primary-color);
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s, opacity 0.15s;
  align-self: flex-start;
}

.cml-submit:hover {
  background-color: #d93e00;
}

.cml-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mensaje éxito */
.cml-success {
  color: #5be0a0;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0.65rem 1rem;
  background-color: rgba(91, 224, 160, 0.1);
  border: 1px solid rgba(91, 224, 160, 0.25);
  border-radius: 4px;
}

.cml-success[hidden] {
  display: none;
}

/* Responsive: dos columnas en desktop */
@media (min-width: 769px) {
  .cml-inner {
    flex-direction: row;
  }

  .cml-info {
    width: 280px;
    flex-shrink: 0;
    border-radius: 10px 0 0 10px;
  }

  .cml-checks {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cml-err-check {
    margin-left: 0;
  }

  .cml-form-wrap {
    flex: 1;
    padding: 1.25rem 1.75rem 1.5rem;
  }

  .ftr-cat-wpr {
    flex-wrap: wrap;
    gap: 0.9em;
    gap: 16px;
    justify-content: flex-start;
    padding: 1.5em;
  }
}

/* Desktop ≥1025px: navbar baja a 50px */
@media (min-width: 1025px) {
  .cml-overlay {
    padding-top: 50px;
  }

  .cml-box {
    max-height: calc(100vh - 50px - 1rem);
  }
}

/* En móvil pequeño, la fila doble pasa a columna */
@media (max-width: 480px) {
  .cml-row {
    grid-template-columns: 1fr;
  }
}
