@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('grid.css');
@import url('menu.css');


    /* =============================================
       CSS VARIABLES
    ============================================= */
    :root {
      --color-primary: #4A3AFF;
      --color-primary-dark: #3A2BCC;
      --color-accent: #FF6B00;
      --color-accent-dark: #E05A00;
      --color-dark: #1A1A2E;
      --color-dark-bg: #1C1C2E;
      --color-dark-section: #16213E;
      --color-text: #1A1A2E;
      --color-text-muted: #6B7280;
      --color-text-light: #9CA3AF;
      --color-white: #FFFFFF;
      --color-light-bg: #F9FAFB;
      --color-border: #E5E7EB;
      --color-tag-bg: #F3F4F6;
      --color-tag-text: #374151;


      --font-family: 'Plus Jakarta Sans', sans-serif;

      --radius-sm: 0.375rem;
      --radius-md: 0.5rem;
      --radius-lg: 0.75rem;
      --radius-xl: 1rem;
      --radius-full: 9999px;

      --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
      --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.14);

        --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
          --color-input-bg: #ffffff;
      --color-input-border: #d1d5db;
      --color-input-placeholder: #9ca3af;
    }

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --rojo: #C74F17;
  --naranjo: #E97132;
  --rubik: "Rubik", sans-serif;
  --jakarta: "Plus Jakarta Sans", sans-serif;

}


html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  font-size: 100%;
}



body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  background-color: #fff;
  color: #000;
  /* font-family: "Inter", sans-serif; */
  font-family: var(--jakarta);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* RESET TIPOGRÁFICO */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
blockquote,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* Asegurar listas sin estilo por defecto */
ul,
ol {
  list-style: none;
}



/* Puedes añadir luego tamaños base para headings si lo deseas */
h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 500;


}

h2 {
  font-size: 3rem;
  line-height: 2rem;
  font-weight: 600;
  font-family: var(--jakarta);
}


h3 {
  font-size: 1.5rem;
  line-height: 1.8rem;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h5 {
  font-size: 1rem;
  line-height: 1.25rem;

}

h6 {
  font-size: 0.875rem;
  line-height: 1rem;
}

/* Espaciado para párrafos */
p+p {
  margin-top: 1em;
}


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

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

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* font-family: "Rubik", sans-serif; */

/* font-family: "Inter", sans-serif; */


header .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .menu li {
  position: relative;
}



header .menu li a {
  display: block;
  padding: 1rem;
  text-decoration: none;

}

header .menu>li>a {
  color: #fff;
  color: #808080;
  /* font-size: 1.13rem; */

  font-size: 1rem;
      font-size: 0.875rem;
  font-weight: 600;
  text-align: center;

}

/* header .menu li.menu-item-has-children>a:after {
  content: url('../img/flecha-abajo-blanco.svg');
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
} */
.navbar__logo{
	width:130px !important;
}

header .menu li.menu-item-has-children>a::after {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: .45rem;
  background-image: url('../img/flecha-abajo-blanco.svg');
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  position: relative;
  top: .2rem;
}


/* Submenús */
 /* header .menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #eee;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  z-index: 1000;
}
header .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    list-style: none;
    } */
    header .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
} 
header .menu-item-has-children>.menu-link .dropdown-indicator {
  display: inline-block;
}

header .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 15.625rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  list-style: none;
  z-index: 9;
  /* border-bottom: 3px solid var(--rojo); */
}

header .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);


}

header .menu>li>a {
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* header .menu>li>a:hover,
.hover-child-active {
  background-color: rgba(0, 0, 0, 0.12);
} */

header .menu li.menu-item-has-children>a:hover:after,
.hover-child-active>a:after {
  transform: rotate(180deg);
}

header .menu-item-has-children .sub-menu>li a {
  display: flex;

  padding: 1rem 1.5rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

header .menu-item-has-children .sub-menu li a:hover {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  color: var(--rojo);
  transform: translateX(5px);
}

/* header .menu li:hover>ul {
  display: block;
} */

/* header .menu li ul li a {
  padding: 10px;
  white-space: nowrap;
} */



.container {
  max-width: 1320px;
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.nav-bar {
  background-color: #E97132;
  background-color: var(--naranjo);
  /* height: 3.7rem; */
}

.top-bar {
  background-color: #EBEBEB;
  display: flex;
  padding: .94rem;
}

.top-bar ul {
  display: flex;
  justify-content: end;
  gap: .7rem;
}

.btn {
  display: inline-block;
  display: inline-flex;
  padding: 1.1rem 1.5rem;


  text-decoration: none;
  white-space: nowrap;
  background-color: #292099;
  /* Azul Bootstrap */
  color: #fff;
  border: 1px solid #292099;
  border-radius: 1.9rem;
  cursor: pointer;
  /* transition: background-color 0.2s ease, border-color 0.2s ease; */

  font-weight: 700;

  font-size: 1rem;

  line-height: 1.1rem;

  text-align: center;

  border-radius: 8px;

  padding: 1.125rem 1.5rem;

  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;





}

/* width: 206;
height: 48;
top: 87px;
left: 87.89px;
angle: 0 deg;
opacity: 1;
gap: 7px;
padding-top: 18px;
padding-right: 15px;
padding-bottom: 18px;
padding-left: 15px;
border-radius: 8px; 

font-family: Typeface/Family/Body;
font-weight: 600;
font-style: SemiBold;
font-size: 15px;
leading-trim: NONE;
line-height: Typeface/Line height/Body lg - 18px;
letter-spacing: 0%;
*/

.position-relative {
  position: relative;
}

.btn:hover {
  /* background-color: #0b5ed7;
  border-color: #0a58ca; */
  opacity: 0.92;
}

.btn:active {
  /* background-color: #0a53be;
  border-color: #0a53be; */
   opacity: 0.92;
}

.btn:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-blanco {
  background-color: #fff;
  color: #2D2B40;
  border: 1px solid #fff;
}

.btn-azul {
  background-color: #292099;
  color: #fff;
  border: 1px solid #292099;

}
.btn-naranjo {
  background-color: #EA611C;
  color: #fff;
  border: 1px solid #EA611C;
}

.btn-blanco:hover,
.btn-blanco:active {
  background-color: rgb(184, 184, 184);
  border: 1px solid #fff;
  color: #2D2B40;
}
.btn svg, .division__btn svg {
  margin-left: .5rem;
      width: .8rem;
    /* height: 1rem; */
    flex-shrink: 0;
}
.input-group {
  display: flex;
  width: 100%;

}

input::placeholder {
  color: #6C757D;
  font-size: 0.6875rem;
  opacity: 1;
  /* importante en algunos navegadores */
}



.btn-buscar {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: var(--naranjo);
  color: white;
  border: 1px solid var(--naranjo);
  border-radius: 0 0.375rem 0.375rem 0;
  /* solo esquinas derechas redondeadas */
  cursor: pointer;
  transition: background-color 0.2s;
  padding-right: 3rem;
}

.btn-buscar:hover {
  background-color: #e8611a;
}

.btn-flecha {
  display: flex;

  justify-content: center;
  width: auto;
  width: fit-content;
  align-items: center;
  gap: .4rem;
}


.swiper {
  width: 100%;
  height: 100%;
}


.swiper-pagination-bullet {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  opacity: .9;
}

.swiper-pagination-bullet-active {
  background-color: var(--rojo);
}

.box-form [class*="col-"] {
  margin-bottom: 1rem;
}

.form-100 {
  max-width: 100%;
  flex: 0 0 100%;
  padding: .5rem .8rem;

}

label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  line-height: 120%;
  margin-bottom: .7rem;
}


.box-form input[type="text"],
.box-form input[type="email"],
.box-form input[type="tel"],
.box-form textarea {
  box-shadow: 0px 1px 4px 0px #19213D14;
  border: 1px solid #F1F3F7;
  width: 100%;
  padding: .5rem 1rem;
}

.box-form input::placeholder,
.box-form textarea::placeholder {
  color: #999699;

  font-size: 0.875rem;
  font-weight: 400;
}

.box-form input[type="submit"] {

  padding: .65rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
}


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

p {
  font-size: 1rem;
  font-weight: 400;
 
  line-height: 120%;
}


.box-form-10 input[type="text"],
.box-form-10 input[type="email"],
.box-form-10 input[type="tel"],
.box-form-10 textarea {

  width: 100%;
  padding: 1.15rem 1rem;

  background: #FFFFFF1A;
  border: none;
  color: #fff;

}


input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible,
textarea:focus-visible {
  outline: 1px solid darkorange;
}


footer .logo {
  margin-bottom: 2.5rem;
}

footer .rrss-social {
  display: flex;
  gap: .8rem;
  margin-top: 2rem;
}

footer .rrss-social a {
  background-color: #fff;
  border-radius: 50%;
  padding: .5rem;

  display: flex;
  justify-content: center;
  align-items: center;
}

footer .rrss-social a img {
  width: 1.2rem;
  aspect-ratio: 1 / 1;
}


.btn-menu-mobile {
  float: right;
  display: none;
}

aside {
  background-color: var(--rojo);
  width: 30rem;
  height: 100%;


}

/* #mobileMenu .close {
  position: absolute;
  right: .7rem;
  top: 1rem;
} */

 
.o-hidden {
  overflow: hidden;
}

.hero-home {
 
  background-size: cover;
  background-position: center;
  height: 28.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}
 
.hero-home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background: linear-gradient(89.85deg, rgba(0, 0, 0, 0.49) 38.29%, rgba(0, 0, 0, 0.49) 62.27%);

  z-index: 0;
}

.hero-home__content, .bloque-division {

  z-index: 1;
}
.hero-home__title { margin-bottom: 1rem;}

.hero-home__subtitle {
  color: #F2F2F2
}


.bloque-division {
  display: flex;
  gap: 2rem;
  /* margin-top: 3rem; */
  background-color: #fff;
      padding: 2.2rem 3rem;
      color: #2D2B40;
      max-width: 45rem;
      width: 100%;
        justify-content: space-around;
    align-items: center;
    border-radius: 12px;
    position: absolute;
    bottom: -7rem;
}
.bloque-division:after {
  content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 9.375rem;
    background-color: #00000036;
    z-index: 1;
    
}
.bloque-division h3 {
  font-weight: 600;
  margin-bottom: .5rem;
}
.bloque-division h3 strong {
  font-weight: 600;
}
.bloque-division div:first-child h3 strong {
  color: #292099;
}
.bloque-division div:last-child h3 strong {
  color: #EA611C;
}
.bloque-division p {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #2D2B40;
  font-weight: 400;
  margin-bottom: .7rem;
}

.bloque-division .btn {
  max-width: 12.875rem;
  width: 100%;
  align-items: center;
    justify-content: center;
}

.somos-home {
  background-color: #1D1C29;
  color: #fff;
  padding: 15rem 0 7rem 0;
}
.box-certificaciones {
  background-color: #fff;
  padding: 2.2rem 2rem;
  color: #2D2B40;
  max-width: 17rem;
  max-width: 14rem;
  width: 100%;
   
    border-radius: 20px;
    position: absolute;
    right: 28rem;
    top: 10rem;
    right: -5rem;
    top: 7rem;
        display: flex;
    flex-direction: column;
        gap: 1.5rem;
    
}
.box-certificaciones > div{
  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  position: relative;
  /* margin-bottom: 2rem; */
  
}
.box-certificaciones > div::after {
  content: "";
    position: absolute;
    bottom: -14px;
    
    
    width: 100%;
    height: 1px;
    background-color: #00000036;
    z-index: 1;
    
}
.box-certificaciones span {
  display: flex;
  
  border-radius: 50%;
  background-color: #000;
  flex-shrink: 0;
    height: 20px;
    padding: 3px;
}

.box-certificaciones h4 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
 
}

.badge {
  
border: 1px solid #fff;
border-radius: 100px;
    display: inline-block;
    padding: .4rem .5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;



}
h2 {

font-weight: 600;

font-size: 3rem;

line-height: 3.75rem;
letter-spacing: -2%;
margin-bottom: 1rem;

}
p {
  
font-weight: 400;

font-size: 1.125rem;
line-height: 1.5rem;
margin-bottom: 1rem;



}

.somos-home p {
  max-width: 90%;
  color: #CBCCCD;
}

.somos-home .container {
  max-width: 1080px;
}
.somos-home .badge {
  margin-top: 5rem;
}

.noticias-home {
  background-color: #F9F9FB;
  padding: 7rem 0;
}

.card-noticia {
  background-color: #fff;
 

  overflow: hidden;
  border-radius: 20px;
border-width: 1px;
border-top: 1px solid #F3F4F6;
box-shadow: 0px 1px 2px -1px #0000001A;

box-shadow: 0px 1px 3px 0px #0000001A;
}

.card-meta {
  display: flex;
  gap: .7rem;
  font-size: 0.875rem;
  color: #6C757D;
  margin-bottom: .7rem;
}

.card-noticia figure {
      height:14rem;
    overflow: hidden;
}

.card-noticia .badge {
  background-color: #000;
  color: #fff;
}

.card-date {
  display: flex;
    align-items: center;
    gap: 0.25;
    font-size: 0.813;
    color: #99A1AF;
}










 /* =============================================
       TOP BAR
    ============================================= */
    .topbar {
      background: var(--color-dark);
      padding: 0.5rem 0;
    }

    .topbar__inner {
      max-width: 75rem;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .topbar__breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.7);
    }

    .topbar__breadcrumb span {
      color: rgba(255,255,255,0.4);
    }

    .topbar__breadcrumb a {
      color: rgba(255,255,255,0.7);
      color: #fff;
      transition: color 0.2s;
    }

    .topbar__breadcrumb a:hover {
      color: var(--color-white);
    }

    .topbar__contact {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.85);
       color: var(--color-white);
    }

    .topbar__contact svg {
      width: 0.875rem;
      height: 0.875rem;
    }

    /* =============================================
       NAVBAR
    ============================================= */
    .navbar {
      background: var(--color-white);
      border-bottom: 1px solid var(--color-border);
      /* position: sticky;
      top: 0; */
      z-index: 100;
    }

    .navbar__inner {
      max-width: 75rem;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 4.5rem;
    }

    .navbar__logo {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--color-dark);
    }

    .navbar__logo-icon {
      width: 2rem;
      height: 2rem;
    }

    .navbar__nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .navbar__nav a {
      font-size: 0.9375rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-text);
      color: #808080;
      transition: color 0.2s;
      position: relative;
    }

    .navbar__nav a:hover {
      color: var(--color-primary);
      color: #2D2B40;
    }

    .navbar__nav a.active {
      color: var(--color-primary);
      color: #2D2B40;
    }

    .navbar__nav-item--dropdown {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      cursor: pointer;
    }

    .navbar__nav-item--dropdown svg {
      width: 1rem;
      height: 1rem;
      opacity: 0.6;
    }

    .navbar__search {
      background: none;
      background-color: #F9F9FB;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      color: var(--color-text);
      display: flex;
      align-items: center;
      padding: 0.5rem;
      transition: color 0.2s;
    }

    .navbar__search:hover {
      color: var(--color-primary);
    }

    .navbar__search svg {
      width: 1.25rem;
      height: 1.25rem;
    }

 /* =============================================
       NEWS SECTION
    ============================================= */
    .news {
      background: var(--color-white);
      background-color: #F9F9FB;
      padding: 5rem 2rem;
    }

    .news__inner {
      max-width: 75rem;
      margin: 0 auto;
    }

    .news__header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .news__title {
      font-size: 2.25rem;
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 0.625rem;
      letter-spacing: -0.02em;
    }

    .news__subtitle {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
    }

    .news__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .news__card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }

    .news__card:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-3px);
    }

    .news__card-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }

    .news__card-body {
      padding: 1.25rem;
    }

    .news__card-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .news__card-tag {
      display: inline-block;
      padding: 0.1875rem 0.625rem;
      background: var(--color-tag-bg);
      border-radius: var(--radius-full);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-tag-text);
    }

    .news__card-date {
      display: flex;
      align-items: center;
      gap: 0.3125rem;
      font-size: 0.75rem;
      color: var(--color-text-light);
    }

    .news__card-date svg {
      width: 0.875rem;
      height: 0.875rem;
    }

    .news__card-title {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.4;
      margin-bottom: 1rem;
    }

    .news__card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-text);
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 0.4375rem 0.875rem;
      transition: border-color 0.2s, color 0.2s;
    }

    .news__card-link:hover {
      border-color: var(--color-primary);
      color: var(--color-primary);
    }

    .news__cta {
      text-align: center;
      margin-top: 2.5rem;
    }

    .news__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      background: var(--color-dark);
      color: var(--color-white);
      border-radius: var(--radius-md);
      font-size: 0.9375rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s;
    }

    .news__cta-btn:hover {
      background: #2d2d4e;
      transform: translateY(-1px);
    }

    /* =============================================
       CTA SECTION
    ============================================= */
    .cta-section {
      position: relative;
      min-height: 22rem;
        min-height: 35rem;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .cta-section__bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #1a1a2e 0%, #2d1a0e 100%);
    }

    .cta-section__bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
    }

    .cta-section__overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,26,46,0.72);
    }

    .cta-section__content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 4rem 2rem;
      max-width: 52rem;
    }

    .cta-section__label {
      display: inline-flex;
      align-items: center;
      padding: 0.3125rem 0.875rem;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: var(--radius-full);
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      margin-bottom: 1.25rem;
    }

    .cta-section__title {
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--color-white);
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .cta-section__text {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .cta-section__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      background: var(--color-white);
      color: var(--color-dark);
      border-radius: var(--radius-md);
      font-size: 0.9375rem;
      font-weight: 700;
      transition: opacity 0.2s, transform 0.2s;
    }

    .cta-section__btn:hover {
      opacity: 0.92;
      transform: translateY(-1px);
    }

    /* =============================================
       FOOTER
    ============================================= */
    .footer {
      background: #F9F9FB;
      border-top: 1px solid var(--color-border);
      padding: 3rem 2rem 0;
    }

    .footer__top {
      max-width: 75rem;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--color-border);
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .wrap_footer__address {
      display: flex;
    gap: 1rem;

    }

        

    .footer__logo {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--color-dark);
      max-width: 150px;
    }

    .footer__address {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
      color: #0D0D0D;
      font-weight: 500;
      font-size: 0.9375rem;
      
    }

    .footer__address svg {
      width: 1rem;
      height: 1rem;
      /* color: var(--color-primary); */
      flex-shrink: 0;
    }

    .footer__contact-btn {
      display: inline-flex;
      align-items: center;
      padding: 0.625rem 1.375rem;
      background: var(--color-dark);
      color: var(--color-white);
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      font-weight: 600;
      transition: background 0.2s;
    }

    .footer__contact-btn:hover {
      background: #2d2d4e;
    }

    .footer__nav {
      max-width: 75rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 2rem;
      padding: 2.5rem 0;
    }

    .footer__nav-col-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 1rem;
    }

    .footer__nav-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer__nav-col ul li a {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      transition: color 0.2s;
    }

    .footer__nav-col ul li a:hover {
      color: var(--color-primary);
    }

    .footer__bottom {
      max-width: 75rem;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 0;
      border-top: 1px solid var(--color-border);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer__copyright {
      font-size: 0.8125rem;
      color: var(--color-text-muted);
    }

    .footer__social {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .footer__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: var(--radius-full);
      background: var(--color-tag-bg);
      color: var(--color-text-muted);
      transition: background 0.2s, color 0.2s;
      box-shadow: 0px 1px 3px 0px #0000001A;
      background-color: #fff;
      color: #2D2B40;
    }

    .footer__social-link:hover {
      background: var(--color-primary);
      color: var(--color-white);
    }

    .footer__social-link svg {
      width: 1rem;
      height: 1rem;
    }

    /* =============================================
       PLACEHOLDER IMAGES (gradient fallbacks)
    ============================================= */
    .img-placeholder--hero {
      background: linear-gradient(135deg, #2d2d4e 0%, #4d3d2e 50%, #5d4d3e 100%);
    }

    .img-placeholder--about {
      background: linear-gradient(135deg, #2a2a3e 0%, #3a3a5e 100%);
    }

    .img-placeholder--news-1 {
      background: linear-gradient(135deg, #1a2a3a 0%, #2a4a5a 100%);
    }

    .img-placeholder--news-2 {
      background: linear-gradient(135deg, #1a3a1a 0%, #2a5a3a 100%);
    }

    .img-placeholder--news-3 {
      background: linear-gradient(135deg, #2a2a1a 0%, #4a4a2a 100%);
    }

    .img-placeholder--cta {
      background: linear-gradient(135deg, #1a1a0e 0%, #2a1a0e 100%);
    }

    /* Simulated images using CSS */
    .hero__fake-img {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(255,140,60,0.18) 0%, transparent 60%),
        linear-gradient(135deg, #0f0f1e 0%, #1e1e3e 40%, #2e1e0e 100%);
    }

    .about__fake-img {
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(74,58,255,0.12) 0%, transparent 70%),
        linear-gradient(135deg, #1a1a2e 0%, #2a3a3e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .news__fake-img {
      width: 100%;
      height: 11rem;
      display: block;
    }

    .cta__fake-img {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 60% 60% at 30% 50%, rgba(60,40,20,0.6) 0%, transparent 70%),
        linear-gradient(135deg, #0f0e0a 0%, #1e1a0e 100%);
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 64rem) {
      .hero__title {
        font-size: 2.25rem;
      }

      .about__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .about__certs {
        right: 0.5rem;
        bottom: -1rem;
      }

      .news__grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

    @media (max-width: 48rem) {
      /* .topbar__breadcrumb {
        display: none;
      } */

      .navbar__nav {
        display: none;
      }

      .hero__title {
        font-size: 1.875rem;
      }

      .hero__cards-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .hero__card-divider {
        display: none;
      }

      .hero__cards {
        margin-bottom: -2rem;
      }

      .about {
        padding: 5rem 2rem 4rem;
      }

      .about__title {
        font-size: 2rem;
      }

      .about__certs {
        position: static;
        margin-top: 1.5rem;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .news__grid {
        grid-template-columns: 1fr;
      }

      .cta-section__title {
        font-size: 1.875rem;
      }

      .footer__top {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer__nav {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }



    /* =============================================
       SOSTENIBILIDAD – HERO BANNER
    ============================================= */
    .sost-hero {
      position: relative;
      min-height: 18rem;
      min-height: 32rem;
      display: flex;
      align-items: flex-end;
       align-items: center;
      overflow: hidden;
    }

    .sost-hero__bg {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(135deg, #0e2a1a 0%, #1a3a2a 40%, #0e1a2e 100%); */

      background-size: cover;
    background-position: center center;
    }

    .sost-hero__fake-img {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(30,120,80,0.45) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(20,80,60,0.3) 0%, transparent 60%),
        linear-gradient(180deg, #0a1a10 0%, #1a3a2a 60%, #0e1a0e 100%);
    }

    .sost-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,20,15,0.35) 0%, rgba(10,20,15,0.75) 100%);
    }

    .sost-hero__content {
      position: relative;
      z-index: 2;
      padding: 3rem 2rem 3.5rem;
      max-width: 75rem;
      margin: 0 auto;
      width: 100%;
    }

    .sost-hero__label {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.75rem;
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: var(--radius-full);
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1rem;
    }

    .sost-hero__title {
      font-size: 3.25rem;
      font-weight: 600;
      color: var(--color-white);
      line-height: 1.1;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      max-width: 28rem;
    }

    .sost-hero__text {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 28rem;
    }

    /* =============================================
       SOSTENIBILIDAD – INTRO
    ============================================= */
    .sost-intro {
      background: #F9FAFB;
      padding: 5rem 2rem 4rem;
    }

    .sost-intro__inner {
      max-width: 75rem;
      margin: 0 auto;
    }

    .sost-intro__top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      align-items: baseline;
      margin-bottom: 3.5rem;
    }

    .sost-intro__left {}

    .sost-intro__label {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.75rem;
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-full);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--color-text-muted);
      margin-bottom: 1rem;
    }

    .sost-intro__title {
      font-size: 2.375rem;
      font-weight: 500;
      color: var(--color-text);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .sost-intro__right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
    }

    .sost-intro__text {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      line-height: 1.75;
    }

    .sost-intro__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.875rem;
      background: var(--color-dark);
      color: var(--color-white);
      border-radius: var(--radius-md);
      font-size: 0.9375rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s;
    }

    .sost-intro__btn:hover {
      background: #2d2d4e;
      transform: translateY(-1px);
    }

    /* Image mosaic */
    .sost-intro__mosaic {
      display: grid;
      grid-template-columns: 1.15fr 1fr 1fr;
      grid-template-columns: 1.2fr 1.4fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    /* .sost-intro__mosaic-item:nth-child(1) {
      grid-row: span 2;
    } */

    .sost-intro__mosaic-item:nth-child(2) figure,
     .sost-intro__mosaic-item:nth-child(3) figure {
      height: 330px;
      background-color: yellow;
    } 

    .sost-intro__mosaic-item figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sost-intro__mosaic-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .sost-intro__mosaic-item--tall {
      grid-row: span 1;
    }

    .sost-intro__mosaic-img {
      width: 100%;
      display: block;
      border-radius: var(--radius-lg);
    }

    .sost-intro__mosaic-img--tall {
      height: 18rem;
      object-fit: cover;
    }

    .sost-intro__mosaic-img--short {
      height: 13rem;
      object-fit: cover;
    }

    /* =============================================
       SOSTENIBILIDAD – COMPROMISO
    ============================================= */
    .sost-compromiso {
      background: var(--color-white);
      padding: 5rem 2rem;
    }

    .sost-compromiso__inner {
      max-width: 75rem;
      margin: 0 auto;
    }

    .sost-compromiso__header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .sost-compromiso__title {
      font-size: 2.25rem;
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 0.875rem;
      letter-spacing: -0.02em;
    }

    .sost-compromiso__subtitle {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      max-width: 36rem;
      margin: 0 auto;
      line-height: 1.7;
    }

    .sost-compromiso__cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .sost-compromiso__card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 1.75rem 1.25rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
      transition: box-shadow 0.25s, transform 0.25s;
    }

    .sost-compromiso__card:hover {
      /* box-shadow: var(--shadow-card-hover); */
      transform: translateY(-3px);
    }

    .sost-compromiso__card-icon {
      width: 2.75rem;
      height: 2.75rem;
      /* background: var(--color-dark);
      border-radius: var(--radius-full); */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sost-compromiso__card-icon svg {
      width: 1.375rem;
      height: 1.375rem;
      color: var(--color-white);
    }

    .sost-compromiso__card-text {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.4;
    }

    .sost-compromiso__footer-text {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      text-align: center;
      line-height: 1.75;
      max-width: 44rem;
      margin: 0 auto;
    }

    /* =============================================
       SOSTENIBILIDAD – INICIATIVAS
    ============================================= */
    .sost-iniciativas {
      background: var(--color-dark-bg);
      padding: 5rem 2rem;
       padding: 5rem 0;
      padding-left: 8rem;
    }

    .sost-iniciativas__inner {
      /* max-width: 75rem; */
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: center;
    }

    .sost-iniciativas__left {}

    .sost-iniciativas__title {
      font-size: 2.25rem;
      font-weight: 500;
      color: var(--color-white);
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .sost-iniciativas__intro {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .sost-iniciativas__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      /* gap: 1.5rem 2rem; */
    }

    .sost-iniciativas__item {
      /* border-top: 1px solid rgba(255,255,255,0.12); */
      padding-top: 1.25rem;
      
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
    }

    .sost-iniciativas__item:nth-child(-n+2) {
      border-bottom: 1px solid #D6D6D6;
      margin-bottom: 1rem;
    }

    .sost-iniciativas__item-header {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      margin-bottom: 0.5rem;
      flex-direction: column;
      align-items: flex-start;
    }

    .sost-iniciativas__item-check {
      width: 1.375rem;
      height: 1.375rem;
      border-radius: var(--radius-full);
      background: rgba(255,255,255,0.15);
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sost-iniciativas__item-check svg {
      width: 0.75rem;
      height: 0.75rem;
      color: var(--color-white);
      color: var(--color-dark-bg);
    }

    .sost-iniciativas__item-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-white);
    }

    .sost-iniciativas__item-text {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
    }

    .sost-iniciativas__right {
      border-radius: var(--radius-xl);
      overflow: hidden;
      /* aspect-ratio: 4/5; */
    }

    .sost-iniciativas__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sost-iniciativas__fake-img {
      width: 100%;
      height: 100%;
      background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(200,160,60,0.25) 0%, transparent 65%),
        linear-gradient(180deg, #1a2a1a 0%, #0e1a0e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* =============================================
       RESPONSIVE – SOSTENIBILIDAD
    ============================================= */
    @media (max-width: 64rem) {
      .sost-intro__top {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

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

      .sost-iniciativas__inner {
        grid-template-columns: 1fr;
      }

      .sost-iniciativas__right {
        aspect-ratio: 16/9;
      }
    }

    @media (max-width: 48rem) {
      .sost-hero__title {
        font-size: 2.25rem;
      }

      .sost-intro__mosaic {
        grid-template-columns: 1fr;
      }

      .sost-intro__mosaic-img--tall,
      .sost-intro__mosaic-img--short {
        height: 12rem;
      }

      .sost-compromiso__cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .sost-iniciativas__grid {
        grid-template-columns: 1fr;
      }

      .sost-iniciativas__title {
        font-size: 1.875rem;
      }
    }


    /* =============================================
       QUIENES SOMOS – HERO
    ============================================= */
    .qs-hero {
      position: relative;
      min-height: 20rem;
      min-height: 32.8125rem;
      
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .qs-hero__fake-img {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 60% at 70% 40%, rgba(200,100,30,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 20% 60%, rgba(30,30,60,0.6) 0%, transparent 65%),
        linear-gradient(135deg, #1a1a2e 0%, #2e1a0e 60%, #1a1a1a 100%);
    }

    .qs-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,10,20,0.3) 0%, rgba(10,10,20,0.82) 100%);
    }

    /* Nav strip inside hero */
    .qs-hero__nav-strip {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3;
      border-top: 1px solid rgba(255,255,255,0.1);
      background: rgba(20,20,35,0.6);
      backdrop-filter: blur(6px);
    }

    .qs-hero__nav-strip-inner {
      max-width: 75rem;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      gap: 2.5rem;
      overflow-x: auto;
    }

    .qs-hero__nav-link {
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
      padding: 0.875rem 0;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .qs-hero__nav-link:hover,
    .qs-hero__nav-link.active {
      color: var(--color-white);
      border-bottom-color: var(--color-white);
    }

    .qs-hero__content {
      position: relative;
      z-index: 2;
      padding: 3rem 2rem 5rem;
      max-width: 75rem;
      margin: 0 auto;
      width: 100%;
    }

    .qs-hero__label {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.75rem;
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: var(--radius-full);
      font-size: 0.8125rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1rem;
    }

    .qs-hero__title {
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--color-white);
      line-height: 1.1;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      max-width: 30rem;
    }

    .qs-hero__text {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      max-width: 28rem;
    }

    /* =============================================
       QUIENES SOMOS – MISIÓN Y VISIÓN
    ============================================= */
    .qs-mision {
      background: var(--color-dark-bg);
      padding: 5rem 2rem;
    }

    .qs-mision__inner {
      max-width: 75rem;
      margin: 0 auto;
    }

    .qs-mision__header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .qs-mision__title {
      font-size: 2.25rem;
      font-weight: 500;
      color: var(--color-white);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .qs-mision__subtitle {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.75;
      max-width: 44rem;
      margin: 0 auto;
    }

    .qs-mision__rows {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 2.5rem;
    }

    .qs-mision__row {
      display: grid;
      grid-template-columns: 10rem 1fr;
      gap: 3rem;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      align-items: start;
    }

    .qs-mision__row-label {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-white);
    }

    .qs-mision__row-text {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.75;
    }

    /* =============================================
       QUIENES SOMOS – PROPÓSITO
    ============================================= */
    .qs-proposito {
      background: var(--color-white);
      background-color: #F9F9FB;
      padding: 5rem 2rem;
    }

    .qs-proposito__inner {
      max-width: 75rem;
      margin: 0 auto;
    }

    .qs-proposito__header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .qs-proposito__label {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.75rem;
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-full);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--color-text-muted);
      margin-bottom: 0.875rem;
    }

    .qs-proposito__title {
      font-size: 2.25rem;
      font-weight: 500;
      color: var(--color-text);
      letter-spacing: -0.02em;
    }

    .qs-proposito__body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .qs-proposito__mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 0.875rem;
    }

    .qs-proposito__mosaic-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .qs-proposito__mosaic-item--wide {
      grid-column: span 2;
    }

    .qs-proposito__mosaic-img {
      width: 100%;
      display: block;
      border-radius: var(--radius-lg);
    }

    .qs-proposito__mosaic-img--tall {
      height: 13rem;
      object-fit: cover;
    }

    .qs-proposito__mosaic-img--short {
      height: 9rem;
      object-fit: cover;
    }

    .qs-proposito__right {}

    .qs-proposito__subtitle {
      font-size: 1.75rem;
      font-weight: 500;
      color: var(--color-text);
      line-height: 1.25;
      margin-bottom: 1.125rem;
      letter-spacing: -0.02em;
    }

    .qs-proposito__text {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .qs-proposito__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.875rem;
      background: var(--color-dark);
      color: var(--color-white);
      border-radius: var(--radius-md);
      font-size: 0.9375rem;
      font-weight: 600;
      margin-top: 0.75rem;
      transition: background 0.2s, transform 0.2s;
    }

    .qs-proposito__btn:hover {
      background: #2d2d4e;
      transform: translateY(-1px);
    }

    /* =============================================
       QUIENES SOMOS – VALORES
    ============================================= */
    .qs-valores {
      background: var(--color-light-bg);
      background-color: #fff;
      padding: 5rem 2rem;
    }

    .qs-valores__inner {
      max-width: 75rem;
      margin: 0 auto;
    }

    .qs-valores__header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .qs-valores__title {
      font-size: 2.25rem;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }

    .qs-valores__subtitle {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      line-height: 1.7;
      max-width: 34rem;
      margin: 0 auto;
    }

    .qs-valores__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .qs-valores__card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      /* transition: box-shadow 0.25s, transform 0.25s; */
    }

    .qs-valores__card:hover {
      /* box-shadow: var(--shadow-card-hover);
      transform: translateY(-2px); */
    }

    .qs-valores__card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .qs-valores__card-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--color-dark);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .qs-valores__card-icon svg {
      width: 1.125rem;
      height: 1.125rem;
      color: var(--color-white);
    }

    .qs-valores__card-title {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--color-text);
    }

    .qs-valores__card-text {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    .qs-valores__cta {
      text-align: center;
    }

    .qs-valores__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      background: var(--color-dark);
      color: var(--color-white);
      border-radius: var(--radius-md);
      font-size: 0.9375rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s;
    }

    .qs-valores__cta-btn:hover {
      background: #2d2d4e;
      transform: translateY(-1px);
    }

    /* =============================================
       RESPONSIVE – QUIENES SOMOS
    ============================================= */
    @media (max-width: 64rem) {
      .qs-hero__title {
        font-size: 2.5rem;
      }

      .qs-proposito__body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .qs-mision__row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }
    }

    @media (max-width: 48rem) {
      .qs-hero__title {
        font-size: 2rem;
      }

      .qs-valores__grid {
        grid-template-columns: 1fr;
      }

      .qs-proposito__mosaic-img--tall {
        height: 10rem;
      }

      .qs-proposito__mosaic-img--short {
        height: 7rem;
      }

      .qs-mision__title,
      .qs-proposito__title,
      .qs-valores__title {
        font-size: 1.875rem;
      }
    }


    /* =============================================
       SECTION: NOTICIAS RECIENTES
    ============================================= */
    .news-section {
      padding: 4rem 5rem;
      background: var(--color-white);
    }
    .news-section__header {
      margin-bottom: 2rem;
    }
    .news-section__title {
      font-size: 2rem;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 0.4rem;
    }
    .news-section__subtitle {
      font-size: 0.875rem;
      color: var(--color-text-muted);
    }

    /* FILTER TABS */
    .filter-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .filter-tabs__btn {
      padding: 0.45rem 1.1rem;
      border-radius: var(--radius-full);
      font-size: 0.875rem;
      font-weight: 500;
      font-family: var(--font-family);
      cursor: pointer;
      border: 1.5px solid var(--color-border);
      background: var(--color-white);
      color: var(--color-text-muted);
      transition: all 0.18s ease;
    }
    .filter-tabs__btn--active {
      background: var(--color-dark);
      color: var(--color-white);
      border-color: var(--color-dark);
    }
    .filter-tabs__btn:hover:not(.filter-tabs__btn--active) {
      border-color: #9ca3af;
      color: var(--color-text);
    }

    /* CARDS GRID */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    /* CARD */
    .news-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.22s ease, transform 0.22s ease;
    }
    .news-card:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-2px);
    }
    .news-card__img-wrap {
      width: 100%;
      height: 11rem;
      overflow: hidden;
    }
    .news-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }
    .news-card:hover .news-card__img {
      transform: scale(1.04);
    }
    .news-card__body {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      flex: 1;
    }
    .news-card__meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .news-card__tag {
      background: var(--color-dark);
      color: var(--color-white);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.2rem 0.65rem;
      border-radius: var(--radius-sm);
    }
    .news-card__date {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.78rem;
      color: var(--color-text-muted);
    }
    .news-card__date svg {
      width: 0.85rem;
      height: 0.85rem;
      flex-shrink: 0;
    }
    .news-card__title {
      font-size: 0.975rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.4;
    }
    .news-card__btn {
      display: inline-flex;
      align-items: center;
      margin-top: auto;
      padding: 0.42rem 1rem;
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-md);
      font-size: 0.8rem;
      font-weight: 500;
      font-family: var(--font-family);
      color: var(--color-text);
      background: var(--color-white);
      width: fit-content;
      cursor: pointer;
      transition: background 0.16s, color 0.16s;
    }
    .news-card__btn:hover {
      background: var(--color-dark);
      color: var(--color-white);
      border-color: var(--color-dark);
    }

    /* PAGINATION */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 2.5rem;
    }
    .pagination__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      font-weight: 500;
      font-family: var(--font-family);
      border: 1.5px solid var(--color-border);
      background: var(--color-white);
      color: var(--color-text-muted);
      cursor: pointer;
      transition: all 0.16s;
    }
    .pagination__btn--active {
      background: var(--color-dark);
      color: var(--color-white);
      border-color: var(--color-dark);
    }
    .pagination__btn:hover:not(.pagination__btn--active) {
      border-color: #9ca3af;
      color: var(--color-text);
    }
    .pagination__dots {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      display: flex;
      align-items: center;
      padding: 0 0.2rem;
    }
    .pagination__arrow {
      border: 1.5px solid var(--color-border);
    }

    /* =============================================
       SECTION: NOTAS DE PRENSA
    ============================================= */
    .press-section {
      background: var(--color-dark-bg);
      padding: 4rem 5rem;
      /* display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem; */
    }
    .press-section__left {}
    .press-section__badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.25rem 0.75rem;
      border-radius: var(--radius-full);
      margin-bottom: 1rem;
      width: fit-content;
    }
    .press-section__title {
      font-size: 2.5rem;
      font-weight: 500;
      color: var(--color-white);
      line-height: 1.15;
      margin-bottom: 0.9rem;
    }
    .press-section__desc {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    .press-section__right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .press-list {
      display: flex;
      flex-direction: column;
    }
    .press-item {
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .press-item:first-child {
      padding-top: 0;
    }
    .press-item__title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 0.4rem;
    }
    .press-item__date {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.6rem;
    }
    .press-item__date svg {
      width: 0.85rem;
      height: 0.85rem;
    }
    .press-item__desc {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
      margin-bottom: 0.75rem;
    }
    .press-item__link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-white);
      transition: gap 0.15s;
    }
    .press-item__link:hover {
      gap: 0.55rem;
    }
    .press-item__link svg {
      width: 1rem;
      height: 1rem;
    }

    /* PRESS PAGINATION */
    .press-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 2.5rem;
    }
    .press-pagination__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      font-weight: 500;
      font-family: var(--font-family);
      border: 1.5px solid rgba(255,255,255,0.15);
      background: transparent;
      color: rgba(255,255,255,0.55);
      cursor: pointer;
      transition: all 0.16s;
    }
    .press-pagination__btn--active {
      background: var(--color-white);
      color: var(--color-dark);
      border-color: var(--color-white);
    }
    .press-pagination__btn:hover:not(.press-pagination__btn--active) {
      border-color: rgba(255,255,255,0.4);
      color: var(--color-white);
    }
    .press-pagination__dots {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.4);
      padding: 0 0.2rem;
      display: flex;
      align-items: center;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1100px) {
      .news-section { padding: 3rem 2.5rem; }
      .press-section { padding: 3rem 2.5rem; gap: 2.5rem; }
      .hero__content { padding: 2rem 2.5rem; }
    }
    @media (max-width: 900px) {
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .press-section { grid-template-columns: 1fr; gap: 2rem; }
      .press-section__title { font-size: 1.8rem; }
    }
    @media (max-width: 600px) {
      /* .hero { height: 14rem; }
      .hero__title { font-size: 2rem; }
      .hero__content { padding: 1.5rem; } */
      .news-section { padding: 2rem 1rem; }
      .news-grid { grid-template-columns: 1fr; }
      .press-section { padding: 2rem 1rem; }
      .filter-tabs { gap: 0.35rem; }
      .filter-tabs__btn { padding: 0.35rem 0.8rem; font-size: 0.8rem; }
    }


     /* =============================================
       CONTACT FORM SECTION
    ============================================= */
    .contact-section {
      padding: 5rem 5rem 4rem;
      background: var(--color-white);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .contact-section__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .contact-section__title {
      font-size: 2.5rem;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .contact-section__subtitle {
      font-size: 0.9rem;
      color: var(--color-text-muted);
    }

    /* FORM CARD */
    .contact-card {
      width: 100%;
      max-width: 42rem;
      /* background: var(--color-white);
      border: 1px solid var(--color-border); */
      border-radius: var(--radius-xl);
      padding: 2.5rem 2.25rem;
      /* box-shadow: var(--shadow-card); */
      background-color: #F9F9FB;

    }
    .contact-section .wpcf7 form .wpcf7-response-output {
          margin-top: 0;
    }
    .form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form__group {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .form__label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-text);
    }
    .form__input,
    .form__textarea {
      width: 100%;
      padding: 0.65rem 0.875rem;
      font-size: 0.875rem;
      font-family: var(--font-family);
      color: var(--color-text);
      background: var(--color-input-bg);
      border: 1.5px solid var(--color-input-border);
      border-radius: var(--radius-md);
      outline: none;
      transition: border-color 0.18s;
      line-height: 1.5;
    }
    .form__input::placeholder,
    .form__textarea::placeholder {
      color: var(--color-input-placeholder);
    }
    .form__input:focus,
    .form__textarea:focus {
      border-color: var(--color-dark);
    }
    .form__textarea {
      resize: vertical;
      min-height: 7.5rem;
    }
    .form__footer {
      display: flex;
      justify-content: center;
      margin-top: 0.5rem;
      flex-direction: column;
    align-items: center;
    }
    .form__submit {
      padding: 0.75rem 2.25rem;
      background: var(--color-dark);
      color: var(--color-white);
      font-size: 0.9rem;
      font-weight: 600;
      font-family: var(--font-family);
      border: none;
      border-radius: var(--radius-lg);
      cursor: pointer;
      transition: background 0.18s, transform 0.15s;
          max-width: max-content;
          margin-top: 1rem;
    }
    .form__submit:hover {
      background: #333;
      transform: translateY(-1px);
    }
    .form__submit:active {
      transform: translateY(0);
    }

    /* =============================================
       LOCATION SECTION
    ============================================= */
    .location-section {
      padding: 5rem 5rem 4rem;
      background: var(--color-white);
    }
    .location-section__badge {
      display: inline-flex;
      align-items: center;
      background: transparent;
      border: 1.5px solid var(--color-border);
      color: var(--color-text-muted);
      font-size: 0.78rem;
      font-weight: 500;
      padding: 0.25rem 0.85rem;
      border-radius: var(--radius-full);
      margin-bottom: 0.9rem;
    }
    .location-section__title {
      font-size: 2.5rem;
      font-weight: 500;
      color: var(--color-text);
      line-height: 1.15;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .location-section__desc {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      margin-bottom: 2rem;
    }

    /* MAP */
    .map-wrap {
      width: 100%;
      height: 17rem;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--color-border);
      margin-bottom: 1.5rem;
    }
    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* INFO CARDS */
    .info-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      gap: 2rem
    }
    .info-card {
      background: var(--color-white);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      padding: 1.75rem 1.25rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.6rem;
     
    }
    .info-card__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-muted);
      margin-bottom: 0.25rem;
    }
    .info-card__icon svg {
      width: 1.5rem;
      height: 1.5rem;
    }
    .info-card__title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text);
    }
    .info-card__detail {
      font-size: 0.825rem;
      color: var(--color-text-muted);
      line-height: 1.6;
    }
    .info-card li {
      font-size: 0.825rem;
      color: var(--color-text-muted);
      line-height: 1.6;
		list-style: none;
    }

    .info-card__link {
      font-size: 0.825rem;
      color: var(--color-text-muted);
      display: block;
      line-height: 1.7;
      transition: color 0.15s;
    }
    .info-card__link:hover {
      color: var(--color-dark);
      text-decoration: underline;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 900px) {
      .contact-section,
      .location-section {
        padding: 3.5rem 2.5rem 3rem;
      }
      .info-cards { grid-template-columns: 1fr; }
      .location-section__title { font-size: 2rem; }
    }
    @media (max-width: 600px) {
      .contact-section,
      .location-section {
        padding: 2.5rem 1rem 2rem;
      }
      .contact-section__title { font-size: 1.9rem; }
      .contact-card { padding: 1.5rem 1rem; }
      .form__row { grid-template-columns: 1fr; }
      .location-section__title { font-size: 1.7rem; }
      .map-wrap { height: 12rem; }
    }


       .tl-scroll {
      width: 100%;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: #d1d5db transparent;
    }
    .tl-scroll::-webkit-scrollbar { height: 4px; }
    .tl-scroll::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

    /*
      MEASUREMENTS from the image (1420px wide reference):

      LINE Y = 222px

      PILLS (top = above line):
        height = 58px, border-radius = 14px
        top-pill bottom touches connector top → pill top = 222 - 58 - 52 = 112px

      PILLS (bottom = below line):
        connector top = 224px (line bottom), height = 52px
        pill top = 224 + 52 = 276px

      CONNECTORS: height = 52px, width = 2px
        top-pill connector: top=170, bottom=222
        bot-pill connector: top=224, bottom=276

      PILL X positions (left edge):
        1995: 170px  → pill center X = 239px
        2002: 458px  → pill center X = 527px
        2005: 718px  → pill center X = 787px
        2018: 1000px → pill center X = 1069px
        2020: 1282px → pill center X = 1351px

      TEXT POSITIONS:
        All TOP-zone texts share the same top Y = 96px
        All BOT-zone texts share the same top Y = 288px

        Each text starts at the pill's LEFT edge (not connector center):
          1995 text (BOT): left = 170px
          2002 text (TOP): left = 458px   ← right of 2002 pill left edge
          2005 text (BOT): left = 718px
          2018 text (TOP): left = 1000px
          2020 text (BOT): left = 1282px  (faded)

      HORIZONTAL LINE:
        Dark:  left=0, width=1082px
        Faded: left=1082px, right=0
    */

    .tl {
      position: relative;
      width:100%;
      height: 460px;
    }

    /* Horizontal lines */
    .tl__hline {
      position: absolute;
      top: 222px;
      left: 0;
      width: 100%;
      height: 7px;
      background: #1e1e2e;
      z-index: 1;
    }
    .tl__hline-faded {
      position: absolute;
      top: 222px;
      left: 1082px;
      right: 0;
      height: 2px;
      background: #d1d5db;
      z-index: 1;
    }

    /* Vertical connectors */
    .tl__vline {
      position: absolute;
      width: 2px;
      background: #1e1e2e;
      z-index: 2;
    }
    .tl__vline--faded { background: #d1d5db; }

    /* Pills */
    .tl__pill {
      position: absolute;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #1e1e2e;
      color: #fff;
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      border-radius: 0.75rem;
      padding: 0 1.3rem;
      white-space: nowrap;
      z-index: 3;
      height: 58px;
      min-width: 138px;
    }
    .tl__pill--faded {
      background: #c8ccd6;
      color: #e2e4ea;
    }

    /* Text blocks — ALL share the same top Y per zone */
    .tl__text {
      position: absolute;
      width: 210px;
    }
    .tl__text-title {
      font-size: 0.975rem;
      font-weight: 700;
      color: #1e1e2e;
      margin-bottom: 0.45rem;
      line-height: 1.3;
    }
    .tl__text-body {
      font-size: 0.825rem;
      color: #6b7280;
      line-height: 1.72;
    }
    .tl__text-title--faded { color: #c8ccd6; }
    .tl__text-body--faded  { color: #c8ccd6; }

.bloques-fechas {
  display: flex;
  height: 100%;
  padding-left: 10%;
}

.titulo-tl {
  padding: 6rem 0;
  background-color: #F9F9FB;
}
.content-item-tl {
  margin: 0 auto;
}

.timeline-hand {
  padding: 2rem 0 7rem 0;
}
    .bloque-fecha {
   
   
    height: 100%;
        height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20%;
    position: relative;
    width: 320px;

    }
    .box-tl {
      height: 345px; 
    }
    .box-tl .linea {
      width: 100%; height: 7px; background-color: #2D2B40; position: relative; top: 50%;
    }

    .bloque-fecha .anio {
      background-color:  #2D2B40;
      color: white;
          width: fit-content;
    margin: 0 auto;
     
      padding: 1rem;
      text-align: center;
      position: relative;
          border-radius: 2rem;
    max-width: 8rem;
    width: 100%;
    font-size: 1.4rem;
        padding: .5rem 1rem;
    }

     /* .bloque-fecha .anio::after {
      content: '';
      display: block;
      width: 1px;
      height:127px;
      background-color: black;
      position: absolute;
      left: 0;
      right: 0;

      
      margin: 0 auto;} */

       .bloque-fecha::before {
      content: '';
      display: block;
      width: 1px;
      height:50%;
      background-color:  #2D2B40;
      position: absolute;
      left: 0;
      right: 0;

      
      margin: 0 auto;}

       /* .bloque-fecha-invertida .anio::after {
        bottom: 50px;
       } */

       .bloque-fecha::after {

           content: "";
    position: absolute;
    bottom: 0;
    top: -13px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #2D2B40;
    margin: auto;
    right: 0;
    left: 0;

        }
    .bloque-fecha:nth-of-type(even) {  flex-direction: column-reverse;}

    .bloque-fecha:nth-of-type(even)::after {
      
          border-top: 12px solid #2D2B40;
    border-bottom: none;
    top: 0;
    }



    /* =============================================
       SECTION 2: NUESTRO CAMINO (dark)
    ============================================= */
    .camino-section {
      background: var(--color-dark-bg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 28rem;
      padding: 5rem 0;
    }
    .camino-section__img-wrap {
      position: relative;
      overflow: hidden;
    }
    .camino-section__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .camino-section__content {
      padding: 4rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .camino-section__badge {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.75);
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.25rem 0.85rem;
      border-radius: var(--radius-full);
      margin-bottom: 1.1rem;
      width: fit-content;
    }
    .camino-section__title {
      font-size: 2.25rem;
      font-weight: 600;
      color: var(--color-white);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .camino-section__desc {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .camino-section__stats {
      display: flex;
      gap: 3rem;
    }
    .camino-stat__number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--color-white);
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .camino-stat__label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.4;
      max-width: 9rem;
    }
    /* =============================================
       SECTION 3: MISIÓN / VISIÓN
    ============================================= */
    .mision-section {
      padding: 5rem 5rem 0;
      background: var(--color-white);
    }
    .mision-section__header {
      display: grid;
      grid-template-columns: auto 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-bottom: 2.5rem;
    }
    .mision-section__title {
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--color-text);
      line-height: 1.2;
      letter-spacing: -0.02em;
      min-width: 22rem;
    }
    .mision-item {
    border-left: 1px solid #ccc;
    padding-left: 1rem;
    }
    .mision-item__head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 0.5rem;
    }
    .mision-item__head svg {
      width: 1.1rem;
      height: 1.1rem;
      color: var(--color-text-muted);
      flex-shrink: 0;
    }
    .mision-item__text {
      font-size: 0.825rem;
      color: var(--color-text-muted);
      line-height: 1.65;
      margin-bottom: 0;
    }
    .mision-section__img-wrap {
      width: 100%;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      height: 18rem;
    }
    .mision-section__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    /* =============================================
       SECTION 4: QUOTE
    ============================================= */
    .quote-section {
      padding: 5rem 5rem;
      background: var(--color-white);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .quote-section__blockquote {
      text-align: center;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.55;
      max-width: 38rem;
      margin-bottom: 2.5rem;
      letter-spacing: -0.01em;
    }
    .quote-section__body {
      max-width: 38rem;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }
    .quote-section__para {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      line-height: 1.75;
      text-align: center;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1100px) {
      .timeline-section { padding: 3rem 2.5rem 0; }
      .camino-section { grid-template-columns: 1fr; }
      .camino-section__img-wrap { height: 20rem; }
      .camino-section__content { padding: 3rem 2.5rem; }
      .mision-section { padding: 3.5rem 2.5rem 0; }
      .quote-section { padding: 3.5rem 2.5rem; }
    }
    @media (max-width: 768px) {
      .timeline-section__title { font-size: 1.8rem; }
      .mision-section__header { grid-template-columns: 1fr; gap: 1.5rem; }
      .camino-section__title { font-size: 1.7rem; }
      .camino-section__stats { gap: 2rem; }
    }
    @media (max-width: 600px) {
      .timeline-section { padding: 2rem 1rem 0; }
      .timeline-section__title { font-size: 1.5rem; }
      .camino-section__content { padding: 2rem 1.25rem; }
      .mision-section { padding: 2.5rem 1rem 0; }
      .quote-section { padding: 2.5rem 1rem; }
      .quote-section__blockquote { font-size: 1.05rem; }
    }


     /* =============================================
       SECTION 1 — HERO / GUÍA ÉTICA
    ============================================= */
    .hero_guia {
      background-color: var(--color-white);
      padding: 4rem 2rem 4.5rem;
      text-align: center;
    }

    .hero_guia__tag {
      display: inline-block;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-full);
      padding: 0.25rem 1rem;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--color-tag-text);
      background-color: var(--color-white);
      margin-bottom: 1rem;
    }

    .hero_guia__title {
      font-size: 2.75rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.2;
      margin-bottom: 2.5rem;
    }

    .hero_guia__content {
      display: flex;
      align-items: flex-start;
      gap: 3rem;
      max-width: 58rem;
      margin: 0 auto;
      text-align: left;
    }

    .hero_guia__image-wrap {
      flex: 0 0 auto;
      width: 22rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

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

    .hero_guia__text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hero_guia__text p {
      font-size: 0.9375rem;
      color: var(--color-text);
      line-height: 1.7;
    }

    /* =============================================
       SECTION 2 — FAQ
    ============================================= */
    .faq {
      background-color: var(--color-light-bg);
      padding: 5rem 2rem;
    }

    .faq__inner {
      max-width: 58rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: 3rem;
      align-items: start;
    }

    .faq__left {
      padding-top: 0.5rem;
    }

    .faq__tag {
      display: inline-block;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-full);
      padding: 0.25rem 1rem;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--color-tag-text);
      background-color: var(--color-white);
      margin-bottom: 1.25rem;
    }

    .faq__title {
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-text);
      margin-bottom: 1rem;
    }

    .faq__desc {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    .faq__list {
      display: flex;
      flex-direction: column;
    }

    .faq__item {
      border-bottom: 1px solid var(--color-border);
    }

    .faq__item:first-child {
      border-top: 1px solid var(--color-border);
    }

    .faq__question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.375rem 0;
      cursor: pointer;
      gap: 1rem;
    }

    .faq__question-text {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--color-text);
      line-height: 1.4;
    }

    .faq__icon {
      flex-shrink: 0;
      width: 1.5rem;
      height: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.375rem;
      font-weight: 300;
      color: var(--color-text);
      line-height: 1;
      user-select: none;
    }

    .faq__answer {
      padding-bottom: 1.25rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
      line-height: 1.7;
    }

     /* =============================================
       SECTION 3 — CUMPLIMIENTO NORMATIVO (dark)
    ============================================= */
    .normativo {
      background-color: #1a1a2e;
      padding: 5rem 2rem;
      color: var(--color-white);
    }

    .normativo__inner {
      max-width: 58rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: 3rem;
      align-items: start;
    }

    .normativo__left {
      padding-top: 0.5rem;
    }

    .normativo__title {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.15;
      color: var(--color-white);
      margin-bottom: 1.125rem;
    }

    .normativo__desc {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
    }

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

    .normativo__card {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .normativo__check {
      width: 1.5rem;
      height: 1.5rem;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.25rem;
    }

    .normativo__check svg {
      width: 0.75rem;
      height: 0.75rem;
      stroke: rgba(255, 255, 255, 0.85);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .normativo__card-title {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--color-white);
      line-height: 1.3;
    }

    .normativo__card-text {
      font-size: 0.8375rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.65;
    }

     /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 56rem) {
      .hero_guia__content {
        flex-direction: column;
        gap: 1.75rem;
      }
    

      .hero_guia__image-wrap {
        width: 100%;
      }

      .hero__title {
        font-size: 2rem;
      }

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

      .faq__title {
        font-size: 1.75rem;
      }

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

      .normativo__title {
        font-size: 1.875rem;
      }

      .normativo__grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 36rem) {
      .hero_guia {
        padding: 2.5rem 1.25rem 3rem;
      }

      .hero_guia__title {
        font-size: 1.625rem;
      }

      .faq {
        padding: 3rem 1.25rem;
      }

      .normativo {
        padding: 3rem 1.25rem;
      }

      .normativo__grid {
        grid-template-columns: 1fr;
      }
    }



    /* =============================================
       SECTION 1 — HERO / UNIDADES DE NEGOCIO
    ============================================= */
    .units-hero {
      background-color: var(--color-light-bg);
      padding: 4rem 2rem 4.5rem;
      text-align: center;
    }

    .units-hero__tag {
      display: inline-block;
      border: 1px solid #c8cad0;
      border-radius: var(--radius-full);
      padding: 0.28rem 1.1rem;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--color-tag-text);
      background-color: var(--color-white);
      margin-bottom: 1.25rem;
    }

    .units-hero__title {
      font-size: 3rem;
      font-weight: 800;
      color: var(--color-text);
      line-height: 1.15;
      max-width: 36rem;
      margin: 0 auto 1.25rem;
    }

    .units-hero__desc {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      line-height: 1.7;
      max-width: 32rem;
      margin: 0 auto;
    }

    /* =============================================
       SECTION 2 — DIVISIÓN COMERCIAL
    ============================================= */
    .division {
      padding: 5rem 2rem;
      background-color: var(--color-white);
    }

    .division__inner {
      max-width: 58rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    /* Reverse layout for industrial */
    .division--reverse .division__inner {
      direction: rtl;
       direction: ltr;

    }

    .division--reverse .division__content {
      direction: ltr;
    }

    .division--reverse .division__image-wrap {
      direction: ltr;
    }

    .division__content {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .division__title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--color-text);
      line-height: 1.2;
    }

    .division__title span {
      color: var(--color-primary);
      color: #292099 ;
    }

    .division--industrial .division__title span {
      color: var(--color-accent);
    }

    .division__desc {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      line-height: 1.7;
    }

    .division__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .division__list-item {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.9375rem;
      color: var(--color-text);
      font-weight: 500;
    }

    .division__list-icon {
      flex-shrink: 0;
      width: 1.375rem;
      height: 1.375rem;
      border-radius: 50%;
      background-color: var(--color-primary);
      background-color: #292099;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.05rem;
    }

    .division--industrial .division__list-icon {
      background-color: var(--color-accent);
    }

    .division__list-icon svg {
      width: 0.625rem;
      height: 0.625rem;
      stroke: var(--color-white);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .division__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background-color: var(--color-primary);
      background-color: #292099;
      color: var(--color-white);
      font-family: var(--font-family);
      font-size: 0.9375rem;
      font-weight: 600;
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      text-decoration: none;
      align-self: flex-start;
      transition: background-color 0.2s ease;
    }

    .division__btn:hover {
      background-color: var(--color-primary-dark);
    }

    .division--industrial .division__btn {
      background-color: var(--color-accent);
    }

    .division--industrial .division__btn:hover {
      background-color: var(--color-accent-dark);
    }

    .division__btn-arrow {
      font-size: 1rem;
      line-height: 1;
    }

    .division__image-wrap {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 3;
    }

    .division__image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* =============================================
       SECTION 3 — BENEFICIOS CLAVE
    ============================================= */
    .benefits {
      background-color: var(--color-light-bg);
      padding: 4.5rem 2rem;
    }

    .benefits__inner {
      max-width: 58rem;
      margin: 0 auto;
    }

    .benefits__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--color-border);
      margin-bottom: 3rem;
    }

    .benefits__title {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--color-text);
      line-height: 1.2;
      flex-shrink: 0;
    }

    .benefits__desc {
      font-size: 0.9375rem;
      color: var(--color-text-muted);
      line-height: 1.65;
      max-width: 20rem;
      padding-top: 0.25rem;
    }

    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .benefits__card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .benefits__card-icon {
      width: 1.75rem;
      height: 1.75rem;
      border: 1.5px solid var(--color-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefits__card-icon svg {
      width: 0.75rem;
      height: 0.75rem;
      stroke: var(--color-text-muted);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .benefits__card-title {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.3;
    }

    .benefits__card-text {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 56rem) {
      .units-hero__title {
        font-size: 2.25rem;
      }

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

       .division--commercial .division__inner > :first-child {
    order: 2;
  }

  .division--commercial .division__inner > :last-child {
    order: 1;
  }

      .division--reverse .division__inner {
        direction: ltr;
      }

      /* show image above content on mobile for reverse layout */
      .division--reverse .division__image-wrap {
        order: -1;
      }

      .benefits__header {
        flex-direction: column;
        gap: 0.75rem;
      }

      .benefits__grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 36rem) {
      .units-hero {
        padding: 2.5rem 1.25rem 3rem;
      }

      .units-hero__title {
        font-size: 1.75rem;
      }

      .division {
        padding: 3rem 1.25rem;
      }

      .benefits {
        padding: 3rem 1.25rem;
      }

      .benefits__title {
        font-size: 1.625rem;
      }

      .benefits__grid {
        grid-template-columns: 1fr;
      }
    }


     /* =============================================
       HERO TRABAJA SECTION (white background)
    ============================================= */
    .hero_trabaja {
      background-color: var(--color-white);
      padding: 5rem 2rem 5rem;
    }

    .hero_trabaja__container {
      max-width: 70rem;
      margin: 0 auto;
      background-color: #F8F8FA;
      border-radius: var(--radius-xl);
      padding: 3rem 3rem 3rem 3.5rem;
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .hero_trabaja__content {
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .hero_trabaja__title {
      font-size: 2.75rem;
      font-weight: 600;
      line-height: 1.1;
      color: var(--color-text);
      letter-spacing: -0.02em;
    }

    .hero_trabaja__description {
      font-size: 0.9375rem;
      font-weight: 400;
      color: var(--color-text-muted);
      line-height: 1.6;
      max-width: 22rem;
    }

    .hero_trabaja__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: var(--color-dark);
      color: var(--color-white);
      font-family: var(--font-family);
      font-size: 0.9375rem;
      font-weight: 600;
      padding: 0.8125rem 1.5rem;
      border-radius: var(--radius-md);
      text-decoration: none;
      border: none;
      cursor: pointer;
      width: fit-content;
      transition: background-color 0.2s ease;
    }

    .hero_trabaja__cta:hover {
      background-color: #2a2a3e;
    }

    .hero_trabaja__cta-arrow {
      font-size: 1rem;
      line-height: 1;
    }

    .hero_trabaja__image-wrapper {
      flex: 1 1 0;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 1.45 / 1;
      /* max-width: 26rem; */
      max-width: 32rem;
    }

    .hero_trabaja__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Placeholder image using gradient */
    .hero_trabaja__image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 17rem;
    
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 0.875rem;
    }


    /* =============================================
       CULTURE SECTION (dark background)
    ============================================= */
    .culture {
      background-color: #10101c;
      padding: 4rem 2rem;
    }

    .culture__container {
      max-width: 70rem;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 3.5rem;
    }

    .culture__image-wrapper {
      flex: 0 0 auto;
      width: 100%;
      max-width: 30rem;
      border-radius: var(--radius-xl);
      overflow: hidden;
      /* aspect-ratio: 0.88 / 1; */
    }

    .culture__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Placeholder for culture image */
    .culture__image-placeholder {
      width: 100%;
      height: 100%;
      min-height: 24rem;
      background: linear-gradient(160deg, #c87941 0%, #a0601f 55%, #7a4510 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.875rem;
    }

    .culture__content {
      flex: 1 1 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .culture__badge {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: var(--radius-full);
      padding: 0.3125rem 0.875rem;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--color-white);
      width: fit-content;
    }

    .culture__title {
      font-size: 2.375rem;
      font-weight: 600;
      line-height: 1.15;
      color: var(--color-white);
      letter-spacing: -0.02em;
    }

    .culture__description {
      font-size: 0.9375rem;
      font-weight: 400;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }

    .culture__features {
      display: flex;
      flex-direction: column;
      gap: 1.125rem;
      list-style: none;
      margin-top: 0.5rem;
    }

    .culture__feature-item {
      display: flex;
      align-items: center;
      gap: 0.875rem;
    }

    .culture__feature-icon {
      flex-shrink: 0;
      /* width: 1.375rem;
      height: 1.375rem; */
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.85);
      background-color: #2D2B40;
      border-radius: var(--radius-full);
      padding: .4rem;
    }

    .culture__feature-icon svg {
      width: 1rem;
      height: 1rem;
    }

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

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 56rem) {
      /* .hero_trabaja__container {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
      } */

      .hero_trabaja__title {
        font-size: 2.125rem;
      }

      /* .hero_trabaja__image-wrapper {
        max-width: 100%;
        width: 100%;
      } */

      .culture__container {
        flex-direction: column;
        gap: 2.5rem;
      }

      .culture__image-wrapper {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 16 / 10;
      }

      .culture__title {
        font-size: 1.875rem;
      }
    }

    @media (max-width: 36rem) {
      .hero_trabaja {
        padding: 1.5rem 1rem 2rem;
      }

      .hero_trabaja__container {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
      }

      .hero_trabaja__title {
        font-size: 1.75rem;
      }

      .culture {
        padding: 2.5rem 1rem;
      }

      .culture__title {
        font-size: 1.625rem;
      }
    }

        /* =============================================
       LAYOUT
    ============================================= */
    .container-single {
      max-width: 60rem;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* =============================================
       BACK LINK
    ============================================= */
    .back-link {
      padding: 1.25rem 0 0.5rem;
          margin-top: 3rem;
    }

    .back-link__inner {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--color-text-muted);
      transition: color 0.2s;
    }

    .back-link__inner:hover {
      color: var(--color-text);
    }

    .back-link__arrow {
      font-size: 1rem;
      line-height: 1;
    }
.back-link__arrow svg {
    transform: rotate(180deg) scale(.9);
}
      
  

    /* =============================================
       BREADCRUMB
    ============================================= */
    .breadcrumb {
      padding: 0.375rem 0 1.5rem;
    }

    .breadcrumb__list {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      flex-wrap: wrap;
    }

    .breadcrumb__item {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.8125rem;
      color: var(--color-text-muted);
    }

    .breadcrumb__item a {
      color: var(--color-text-muted);
      transition: color 0.2s;
    }

    .breadcrumb__item a:hover {
      color: var(--color-text);
    }

    .breadcrumb__separator {
      color: var(--color-text-light);
      font-size: 0.75rem;
    }

    .breadcrumb__item--current {
      color: var(--color-text);
      font-weight: 500;
    }

    /* =============================================
       ARTICLE HEADER
    ============================================= */
    .article-header {
      padding-bottom: 1.25rem;
    }

    .article-header__category {
      display: inline-flex;
      align-items: center;
      padding: 0.3125rem 0.75rem;
      background-color: var(--color-dark);
      color: var(--color-white);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: var(--radius-sm);
      margin-bottom: 1rem;
    }

    .article-header__title {
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.18;
      color: var(--color-text);
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .article-header__summary {
      font-size: 1rem;
      font-weight: 400;
      color: var(--color-text-muted);
      line-height: 1.65;
      
    }

    /* =============================================
       ARTICLE META
    ============================================= */
    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 0;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      margin-bottom: 1.75rem;
    }

    .article-meta__date {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
      font-weight: 500;
    }

    .article-meta__date-icon {
      width: 1rem;
      height: 1rem;
      opacity: 0.6;
    }

    .article-meta__share {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
      font-weight: 500;
      cursor: pointer;
      transition: color 0.2s;
    }

    .article-meta__share:hover {
      color: var(--color-text);
    }

    .article-meta__share-icon {
      width: 1rem;
      height: 1rem;
    }
    .article-meta__share-circle {
      border-radius: 50%;
      border: 1px solid var(--color-border);
      padding: 0.5rem;

    }

    /* =============================================
       ARTICLE FIGURE
    ============================================= */
    .article__figure {
      margin-bottom: 2rem;
    }

    .article__figure img {
      width: 100%;
      height: 22rem;
      object-fit: cover;
      border-radius: var(--radius-lg);
    }

    .article__caption {
      font-size: 0.8125rem;
      color: var(--color-text-light);
      margin-top: 0.625rem;
      line-height: 1.5;
    }

    /* =============================================
       ARTICLE BODY
    ============================================= */
    .article__body {
      padding-bottom: 2rem;
    }

    .article__body p {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--color-text);
      margin-bottom: 1.25rem;
    }

    .article__body h2 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text);
      margin: 1.75rem 0 0.875rem;
      letter-spacing: -0.01em;
    }

    .article__body h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text);
      margin: 1.5rem 0 0.625rem;
    }

    /* =============================================
       BLOCKQUOTE
    ============================================= */
    .article__blockquote, blockquote {
      background-color: var(--color-light-bg);
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.75rem;
      margin: 1.75rem 0;
      position: relative;
    }

    .article__blockquote::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 2.5rem;
      height: 2.5rem;
      background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 20C10 14.477 14.477 10 20 10' stroke='%23E5E7EB' stroke-width='2'/%3E%3Cpath d='M20 10C25.523 10 30 14.477 30 20' stroke='%23E5E7EB' stroke-width='2'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.5;
    }

    .article__blockquote blockquote, blockquote {
      font-size: 0.9375rem;
      font-style: italic;
      font-weight: 600;
      line-height: 1.7;
      color: var(--color-text);
      margin-bottom: 1.25rem;
    }

    .article__quote-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .article__quote-avatar {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: var(--radius-full);
      background-color: var(--color-dark);
      color: var(--color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .article__quote-info {
      display: flex;
      flex-direction: column;
    }

    .article__quote-name {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.3;
    }

    .article__quote-role {
      font-size: 0.8125rem;
      color: var(--color-text-muted);
      line-height: 1.3;
    }

    /* =============================================
       KEY POINTS LIST
    ============================================= */
    .article__key-points, .article__body ul, .article__body ol {
      margin: 0.5rem 0 1.5rem;
      padding-left: 0;
    }

    .article__body ol {
          list-style: decimal;
      padding-left: 1rem;
    }

    .article__key-points li,  .article__body ul li, .article__body ol li {
      position: relative;
      padding-left: 1.375rem;
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--color-text);
      margin-bottom: 0.5rem;
    }

    .article__key-points li::before, .article__body ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.625rem;
      width: 0.375rem;
      height: 0.375rem;
      border-radius: var(--radius-full);
      background-color: var(--color-text);
    }

    /* =============================================
       TAGS
    ============================================= */
    .article__tags {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      padding: 1.5rem 0 0;
      border-top: 1px solid var(--color-border);
    }

    .article__tags-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-text-muted);
      margin-right: 0.25rem;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 0.3125rem 0.875rem;
      background-color: var(--color-tag-bg);
      color: var(--color-tag-text);
      font-size: 0.8125rem;
      font-weight: 500;
      border-radius: var(--radius-full);
      transition: background-color 0.2s;
      cursor: pointer;
    }

    .tag:hover {
      background-color: var(--color-border);
    }

    /* =============================================
       RELATED NEWS SECTION
    ============================================= */
    .related-news {
      background-color: var(--color-light-bg);
      padding: 3rem 0 3.5rem;
      margin-top: 3rem;
    }

    .related-news__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 1.75rem;
    }

    .related-news__label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 0.375rem;
    }

    .related-news__title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--color-text);
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .related-news__view-all {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-text);
      white-space: nowrap;
      padding-bottom: 0.25rem;
      transition: gap 0.2s;
    }

    .related-news__view-all:hover {
      gap: 0.625rem;
    }

.footer__phone-email {
    display: none;
  }

  .footer__address br {
    display: none;
  }

  .swiper {
    padding-bottom: 2.5rem; /* espacio para los dots */
  }

 .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 2px;
      bottom: 0rem !important;
}

/* dots normales */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
      width: 1rem;
    height: 1rem;
  background: #D1D5DC;
  border-radius: 999px;
  opacity: 1;
  transition: all 0.3s ease;
      margin: 0 2px!important;
}

/* dot activo tipo cápsula */
.swiper-pagination-bullet-active {
  width: 24px;
      width: 2.2rem;
  background: #2D2B40; /* oscuro como tu imagen */
}

.sost-intro__slider_mobile, 
.sost-compromiso__cards_mobile,
.sost-iniciativas__mobile {
  display: none;
}
.swiper-sost-compromiso .swiper-slide {
  
    width: 55%;
}

.swiper-sost-iniciativas .swiper-slide {
  
    width: 70%;
}

.swiper-sost-iniciativas .swiper-pagination-bullet {
  background-color: #4A5565;
}

.swiper-sost-iniciativas .swiper-pagination-bullet-active {
 background-color: #B1B1B1;
}

.qs-proposito__slider {
  display: none;
}

.swiper-proposito .swiper-slide img {
  width: 100%;
}

.qs-valores__slider {
  display: none;
}

.timeline-hand {
  display: block;
}

    .button {
      padding: 12px 18px;
      border: none;
      border-radius: 12px;
      background: black;
      color: white;
      cursor: pointer;
    }

    .popper {
      position: absolute;
      width: 220px;
      background: white;
      border-radius: 16px;
      padding: 16px;
      box-shadow:
        0 10px 40px rgba(0,0,0,.12);

      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: .25s;
    }

    .popper.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .menu-item-pop {
      padding: 10px;
      border-radius: 10px;
      cursor: pointer;
      display: block;
    }

    .menu-item-pop:hover {
      background: #f1f1f1;
    }
    .arrow {
  position: absolute;

  width: 12px;
  height: 12px;

 background: white;

  transform: rotate(45deg);
}

.related-news .btn-blanco  {
  
      border: 1px solid #1A1B26;
    font-weight: 700;
    color: #1A1B26;
    width: 100%;
    background-color: transparent;
  
    justify-content: center;
    margin-top: 3rem;
    transition: all 0.25s ease;
}

/* Hover */
.related-news .btn-blanco:hover {
    background-color: #1A1B26;
    color: #fff;
}

/* Active */
.related-news .btn-blanco:active {
    transform: scale(0.98);
    opacity: 0.9;
}

 .benefits__slider {
          display: none;
        }

.hero_trabaja__image_mobile {
          display: none;
        }

        /*  linea integridad */

    .linea-integridad {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      gap: 4rem;
      max-width: 75rem;
       max-width: 68rem;
      margin: 0 auto;
      padding: 6rem 4rem;
    }

    /* ─── Left column ────────────────────────────────────────── */

   

    .linea-integridad  .linea__title {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.15;
      color: var(--color-dark);
      margin: 0 0 1.5rem 0;
      letter-spacing: -0.02em;
    }

    .linea-integridad  .linea__desc {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.6;
      color: var(--color-text-muted);
      margin: 0 0 1.25rem 0;
      max-width: 22rem;
    }

     .linea-integridad  .linea__list {
      list-style: disc;
      padding-left: 1.125rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .linea-integridad .linea__list li {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.55;
      color: var(--color-text-muted);
    }

    /* ─── Right column / Form ────────────────────────────────── */

    .linea-integridad .linea__form {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .linea-integridad .form__field {
      display: grid;
      grid-template-columns: 6.5rem 1fr;
      align-items: start;
      gap: 0 1.5rem;
      padding-bottom: 2rem;
          padding-bottom: 1rem;
    border-bottom: 1px solid #808080;
    margin-bottom: 2rem;
    }

    .linea-integridad .form__field:last-of-type {
      padding-bottom: 2rem;
    }

    .linea-integridad .form__label {
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-dark);
      padding-top: 0.125rem;
      line-height: 1.5;
    }

    .linea-integridad .form__input-wrap {
      display: flex;
      flex-direction: column;
    }

    .linea-integridad .form__input,
    .linea-integridad .form__textarea {
      background: var(--color-input-bg);
      border: none;
     
      border-radius: 0;
      outline: none;
      font-family: var(--font-family);
      font-size: 0.9375rem;
      font-weight: 400;
      color: var(--color-dark);
      padding: 0.25rem 0 0.5rem 0;
      width: 100%;
      
    }

    .linea-integridad .form__input::placeholder,
    .linea-integridad .form__textarea::placeholder {
      color: var(--color-input-placeholder);
      font-weight: 400;
      font-size: 1rem;
    }

    .linea-integridad .form__input:focus,
    .linea-integridad .form__textarea:focus {
      border-bottom-color: var(--color-dark);
    }

    .linea-integridad .form__textarea {
      resize: none;
      min-height: 4.5rem;
      line-height: 1.55;
    }

    /* ─── Submit button ──────────────────────────────────────── */

    .linea-integridad .form__actions {
      grid-column: 1 / -1;
      display: flex;
      justify-content: flex-start;
      
    }

    .linea-integridad .form__submit {
      background-color: var(--color-dark);
      color: var(--color-white);
      border: none;
      border-radius: 0.375rem;
      font-family: var(--font-family);
      font-size: 0.9375rem;
      font-weight: 600;
      padding: 0.875rem 2rem;
      cursor: pointer;
      letter-spacing: 0.01em;
      transition: background-color 0.18s ease, transform 0.12s ease;
      min-width: 13rem;
      text-align: center;
    }

    .linea-integridad .form__submit:hover {
      background-color: #2c2c3e;
    }

    .linea-integridad .form__submit:active {
      transform: scale(0.98);
    }

    /* ─── Responsive ─────────────────────────────────────────── */

    @media (max-width: 768px) {
      .linea-integridad {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 2rem;
      }

      .linea-integridad .linea__title {
        font-size: 2.25rem;
      }

      .linea-integridad .linea__desc {
        max-width: 100%;
      }

      .linea-integridad .form__field {
        grid-template-columns: 1fr;
        gap: 0.375rem 0;
      }

      .linea-integridad .form__actions {
        padding-left: 0;
        display: block;
      }

      .linea-integridad .form__submit {
        width: 100%;
        margin-bottom: 1rem;
      }
    }

    @media (max-width: 567px) {
      .linea-integridad .linea-integridad {
        padding: 2rem 1.25rem;
      }

      .linea-integridad .linea__title {
        font-size: 1.875rem;
      }
    }
.timeline-desktop .swiper-timeline  .bloque-fecha {
     margin: 0 auto;
    height: 345px; 

}
.timeline-desktop {
  padding-bottom: 6rem;
}

.timeline-desktop .swiper-timeline .swiper-wrapper .swiper-slide:nth-of-type(even) .bloque-fecha {
    flex-direction: column-reverse;
}
.timeline-desktop  .swiper-slide {
  width: 21.5%!important;
 
}
.swiper-timeline .linea {
    width: 100%;
    height: 7px;
    background-color: #2D2B40;
    position: absolute;
    bottom: 50%; }

  .timeline-desktop .swiper-timeline .swiper-wrapper .swiper-slide:nth-of-type(even)  .bloque-fecha::after {
    border-top: 16px solid #2D2B40;
    border-bottom: none;
    top: 2px;
}

.timeline-desktop .swiper-timeline {
    padding: 0;
}

.timeline-desktop  .bloque-fecha::after {
  
        border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #2D2B40;
        top: -16px;
    
}

.timeline-mobile, .timeline-desktop {
      background-color: #F9F9FB;
}

.timeline-mobile {
  display: none;
}



.col-desliza {
  display: flex;
    justify-content: flex-end;
    align-items: end;
}
.col-desliza p {
  color: #090909;
  display: flex;
      align-items: normal;
   
    gap: .4rem;
        font-size: .875rem;
        font-weight: 600;

}

@media (max-width: 768px) {
  .timeline-desktop, .col-desliza p {
    display: none;
  } 
  .timeline-mobile {
  display: block;
}
}


.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content>div {
  padding: .8rem.5rem;

}

.accordion-content p {
  color: #808080;
      font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}


.accordion-item {

  border-bottom: 1px solid #D9D9D9;
  padding: .8rem 0;
  margin-bottom: 1.2rem;

}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title {
  font-weight: 500;
  font-size: 1.15rem;
    line-height: 1.5rem;
    text-align: left;
    padding-right: 1rem;

}

.accordion-icon {
  
  font-size: 1.4rem;
  font-weight: 300;
}

.qs-proposito__mosaic {
      grid-template-columns: 1fr 1.2fr;
          gap: 1.2rem;
}

.qs-proposito__mosaic .qs-proposito__mosaic-item:nth-child(2),
.qs-proposito__mosaic .qs-proposito__mosaic-item:nth-child(3) {
  
  height: 16rem;
  overflow: hidden;
}
.qs-proposito__mosaic .qs-proposito__mosaic-item:nth-child(2) img,
.qs-proposito__mosaic .qs-proposito__mosaic-item:nth-child(3) img,
.qs-proposito__mosaic-item--wide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.qs-proposito__mosaic-item--wide {
  height: 18rem;
      overflow: hidden;
}
.qs-proposito__slider .swiper-slide img {
  border-radius: 1rem;
}

.qs-proposito__slider .swiper-slide img

 {
    border-radius: 1.5rem;
    height: 25rem;
    object-fit: cover;
}

.qs-valores__card-icon img {
  width: 1.45rem;
}

.qs-hero__fake-img {
  background-size: cover;
  
}
.press-section__desc {
      max-width: 28rem;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-family);
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.16s;
}

.page-numbers.current {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}
.page-numbers:hover:not(.current) {
    border-color: #9ca3af;
    color: var(--color-text);
}

.swiper-press span.swiper-pagination-bullet {
    padding: .9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: .9rem;
    background-color: transparent;
    color: #ccc;
    border:1px solid #868686;
}

.swiper-press span.swiper-pagination-bullet-active {
  width: 1rem;
  background-color: #FFFFFFCC;
  
  color: #1A1B26;
  border: 1px solid #1A1B26;

}

.swiper-press {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .content-item-tl {
/*   max-width: 10rem; */
   display: flex;
   gap: 1rem;
   padding-left: 1rem;
  }

  
}
.content-item-tl__text {
    max-width: 55%;
}
.content-item-tl__img {
  max-width: 45%;
}

.mision-section__img {
    
    object-position: center center;
    border-radius: 1rem;
}


  .search-box {
  position: relative;
  /* width: 50px;
  height: 50px; */
  top: -21px;
    right: -16px;
}

.search-box input {
  position: absolute;
  right: 0;
  width: 0;
  height: 40px;
  border: none;
  outline: none;
  padding: 0;
  border-radius: 50px;
  background: #f3f3f3;
  font-size: 16px;

  opacity: 0;
  transition:
    width 0.4s ease,
    opacity 0.3s ease,
    padding 0.4s ease;
}

.search-box.active input {
  width: 250px;
  opacity: 1;
  padding: 0 60px 0 20px;
}

.search-btn {
  position: absolute;
  right: 0;
  top: 0;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;
  cursor: pointer;

  background: #111;
  color: white;
  font-size: 18px;

  z-index: 2;

  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #333;
}

.mobile-menu__search form {
  width: 100%;
  display: flex;
  align-items: center;
}


    .search-page {
    padding: 80px 0;
}

 .search-page .container {
    max-width: 74rem;
}

.search-results-body {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.search-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
    gap: 3rem;
}

.search-item img {
    width: 100%;
    border-radius: 1rem;
      object-fit: cover;
          object-position: center;
    height: 100%;
}

.search-item h2 {
    margin-top: 1rem;
        font-size: 2rem;
        margin: 0;

            font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.18;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    
}

.search-item  .thumb {
    width: 250px;
    flex-shrink: 0;
    background: #ccc;
    height: 165px;
    overflow: hidden;
    border-radius: 1rem;
}
.search-item  p {
    font-size: 0.9375rem;
    line-height: 1.75;
  
    margin-bottom: 1.25rem;
    }

    .search-pagination {
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .search-item a {
        flex-direction: column;
    }

    .search-item .thumb {
        width: 100%;
        height: 200px;
    }
}

 .error-404 {
    padding: 120px 0;
    min-height: 70vh;

    display: flex;
    align-items: center;
}

.error-404__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-404__code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.error-404__title {
    font-size: 4rem;
    margin: 1rem 0;
    line-height: 120%;
}

.error-404__text {
    font-size: 1.2;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.error-404__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    background: #111;
    color: white;
    text-decoration: none;

    border-radius: 10px;

    transition: .3s ease;
}

.error-404__btn:hover {
    opacity: .85;
}

.topbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.box-certificaciones span{
	display:none !important;
}

.mobile-menu + * {
/*  margin-top: 108px;*/
  margin-top: 6.75rem;
  
}


/* media queries */
@media (max-width: 1600px) {

  /* html {
    font-size: 80%;

  } */

 

  

}

@media (max-width: 1440px) {
  /* html {
    font-size: 80%;

  }
   .container {
    max-width: 1180px;
  } */
  


}

@media (max-width: 1200px) {
  html {
    font-size: 80%;

  }

  




}

@media (max-width: 992px) {
  .nav-bar .menu {
    display: none;
  }

  .nav-bar>.container {
    display: flex;
    justify-content: end;
  }

  .btn-menu-mobile {
    display: block;
  }

  .navbar__nav, .navbar__search { display: none;}

  html {
    font-size: 70%;

  }

  .box-certificaciones {
    right: 0;
  }

  


}

@media (max-width: 768px) {
  html {
    font-size: 60%;

  }
  .somos-home figure img {
    width: 80%;
  }
  .topbar__contact, .footer__nav {
    display: none;
  }

   .box-certificaciones {
    right: 0;
  }
  .topbar__breadcrumb span {
    
    width: .6rem; }
    .topbar__inner {
      justify-content: center;
    }

    .mobile-menu {
      max-width: 34rem;
    }

    .bloque-division { 
      background-color: transparent;
      bottom: -22rem; 
      flex-direction: column;  
       max-width: none;             
       padding: 0 2rem;
    }

    .bloque-division div {
      background-color: var(--color-white);
      width: 100%;
      padding: 2rem;
        border-radius: 1rem;
    }
    .bloque-division .btn {
    max-width: none;
    width: 100%;
   
    justify-content: center; }
    .bloque-division:after { content: none;}

    .somos-home { padding: 22rem 0 7rem 0; }

    .box-certificaciones { top: 30%; }

    .footer__bottom {
      flex-direction: column-reverse;
              align-items: center;
    }

    .footer__phone-email {
    display: block;
    } 

    .wrap_footer__address {
    
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    }

    .footer__address {
      align-items: baseline;
      text-align: center; 
    }

    .footer__phone-email {
        display: flex;
        align-items: baseline;
        gap: .3rem;
    }
     .footer__phone-email a {
      text-decoration: underline;
      color: #333333; 
      font-weight: 500;
     }

     .footer__top {
      align-items: center;
     }

     .footer__address br

      {
          display: block;
      }
      .sost-intro__mosaic {
        display: none;
      }

      .sost-intro__slider_mobile {
        display: block;
      }

      .sost-hero, .qs-hero {
        min-height: 22rem;
            align-items: flex-end;
      }

      .swiper-sost-intro .swiper-slide img {
        border-radius: 2.5rem;
      }

      .sost-compromiso {
        padding: 5rem 0;
      }

      .sost-compromiso__cards {
        display: none;
      }
      .sost-compromiso__cards_mobile {
        display: block;
        margin-bottom: 3rem;
      }
      .sost-compromiso__footer-text {
        padding: 0 2rem;
      }

      .sost-iniciativas__item {
        background-color: #FFFFFF0D;
        /* border: none!important; */
                padding: 2rem 2rem;
        border-radius: 1rem;
        margin: 0;
        border-bottom:  1px solid #FFFFFF1A!important;
                border: 1px solid #FFFFFF1A;

                box-shadow: 0px 4px 6px -4px #0000001A;

          box-shadow: 0px 10px 15px -3px #0000001A;


      }
      
      .sost-iniciativas {
        padding: 3rem 0;
      }
      .sost-iniciativas__left {
        display: none;
      }
      
       .sost-iniciativas__mobile {
        display: block;
        padding: 0 3rem;
                overflow: hidden;
      }

      .sost-iniciativas__right {
        border-radius: 0;
      }
     .swiper-sost-iniciativas .swiper-pagination {
      justify-content: flex-start; 
    }

    .qs-mision__row-label, .qs-mision__row-text {
        text-align: center;
    }

    .qs-proposito__slider {
      display: block;
    }
    .qs-proposito__mosaic {
      display: none;
    }
    .qs-proposito__right
    {
      text-align: center;
      margin-top: 3rem;
    }

    .qs-valores__card-header {
      flex-direction: column;

    }
    .qs-valores__card-text {
      text-align: center;
    }
    .qs-valores__grid {
      display: none;
    }
    
    .qs-valores__slider {
      display: block;
      margin-bottom: 3rem;
    }

    .press-section__desc {
      margin-bottom: 2rem;

    }
    .press-section {
      padding: 3rem 1rem;
    }

    .timeline-hand {
      display: none;
    }

    .timeline-mobile  {
          background-color: #F9F9FB;
                  padding-left: 3rem;
                          padding-bottom: 4rem;
    }

    .timeline-mobile .bloque-fecha::before, .timeline-mobile .bloque-fecha::after {
      content: none;
    }

    .timeline-mobile .bloque-fecha {
      background-color: #fff;
      padding: 2rem;
      text-align: left;
      width: auto;
      border-radius: 1.5rem;

    }

    .timeline-mobile .bloque-fecha .anio {
          margin: inherit;
          margin-bottom: 1rem;
    }
    .timeline-mobile .content-item-tl {
      margin: inherit;
      display: flex;
      gap: 1rem;
    }

    .swiper-timeline .swiper-slide

      {
          width: 55%;
      }

      .titulo-tl {
            padding-bottom: 3rem;
      }

      .titulo-tl .col-lg-8 {
          text-align: center;
      }

      .camino-section__content {
        text-align: center;
      }
      .camino-section__img-wrap {
        padding: 2rem;
                height: auto;
      }

      .camino-stat

        {
            margin: 0 auto;
        }

        .camino-section__badge {
              margin: 1rem auto;
        }
        .camino-section__img {
                border-radius: 1.5rem;
        }
        .mision-section__title {
          text-align: center;
        }
        .mision-item {
          background: #F9FAFB;
          border: none;
          padding: 1.5rem;
        }

        .article-meta__share-text, .related-news__view-all {
          display: none;
        }
        .benefits__grid {
          display: none;
        }

        .benefits__slider {
          display: block;
        }

        .benefits__card {
              align-items: center;
        }

        .benefits__header {
                    text-align: center;
        align-items: center;
        }

        .culture__container {
          flex-direction: column-reverse; 
        }

        .hero_trabaja__image_mobile {
          display: block;
                          border-radius: var(--radius-lg);
        overflow: hidden;
        margin: 2rem 0 0 0;
        }

        .hero_trabaja {
        padding: 2rem 1rem 2rem;
    }
    .hero_trabaja__image-wrapper {
      display: none;
    }

  /*  .navbar__logo img {
      
      height: 3.5rem;
    }*/
         




    

  
}

@media (max-width: 576px) {
   html {
/*    font-size: 55%;*/
    font-size: 68%;
    font-size: 80%;

  }
      .topbar__breadcrumb span {
        width: .45rem;
        position: relative;
        top: -1px;
    }

    .timeline-mobile .content-item-tl {
      flex-direction: column;
    }

    .timeline-mobile .content-item-tl__text,
    .timeline-mobile .content-item-tl__img
     {
        max-width: 100%;
    }

 

}