/* ============================================================
   FONTS (Google Fonts — Poppins)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --fondo: #000;
  --opaco: #0f1319;
  --principal: #104DAE;
  --gray: #ccc9c9;
  --gray-text: #827f7f;
  --text-card: #b1bed1;
  --white: #fff;
  --hover-two: #3984fb;
  --hover: rgb(0, 51, 160);
  --opacity-icon: #f0f3f7;
  --light: 'Poppins', sans-serif;
  --regular: 'Poppins', sans-serif;
  --medium: 'Poppins', sans-serif;
  --semi: 'Poppins', sans-serif;
  --bold: 'Poppins', sans-serif;
  --size: 14px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.sr .load-hidden {
  visibility: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 15px;
  font-family: var(--regular);
}

/* OWL DOTS */
.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: var(--opacity-icon);
  border-radius: 50%;
  border: 1px solid var(--text-card) !important;
  transition: all .3s;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: var(--principal) !important;
}

.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/* ============================================================
   LOGO TEXTO CMT
   ============================================================ */
.logo-texto {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-bold {
  font-size: 1.7rem;
  font-weight: 800;
  color: #104DAE;
  letter-spacing: -1px;
  font-family: var(--bold);
  line-height: 1;
}

.logo-italic {
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  color: #3984fb;
  font-family: var(--semi);
  line-height: 1;
}

.logo-texto:hover {
  text-decoration: none;
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--medium);
  font-weight: 500;
  font-size: .9rem;
  text-align: center;
  color: var(--white);
  background: var(--principal);
  padding: .5rem 1.3rem;
  border-radius: 6px;
  margin-left: 1.2rem;
}

.btn:hover {
  color: var(--white);
  text-decoration: none;
}

.btn.is-call {
  margin-left: 0;
  transition: all .3s;
}

.btn.is-call:hover {
  background: var(--hover-two);
  color: var(--white);
  text-decoration: none;
}

.btn.btn-noticia {
  max-width: 200px;
  margin-left: 0;
}

.btn.btn_acceso {
  color: var(--hover);
  margin: 0;
  background: var(--text-card);
  transition: all .3s;
  font-size: 14px;
}

.btn.btn_acceso:hover {
  background: var(--hover);
  color: var(--white);
  text-decoration: none;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  background: var(--white);
  height: 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 5%);
}

.header.changecolor {
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 5%);
}

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

.header_menu .header_menu_lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  column-gap: 24px;
}

.header_menu .header_menu_lista li .header_menu_link {
  color: #333;
  font-size: var(--size);
  font-family: var(--medium);
  font-weight: 500;
  position: relative;
  transition: all .3s;
  padding: 15px 0;
  text-decoration: none;
}

.header_menu .header_menu_lista li .header_menu_link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--hover);
  transition: all .3s;
}

.header_menu .header_menu_lista li .header_menu_link:hover {
  text-decoration: none;
  color: var(--hover);
}

.header_menu .header_menu_lista li .header_menu_link:hover::after {
  width: 100%;
}

.header_menu_arrow {
  position: relative;
  padding-right: 1rem !important;
}

.header_menu_arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(https://www.netlogic.com.py/assets_front/images/arrow-menu.svg) no-repeat center/contain;
}

.header_menu_arrow:hover::before {
  background: url(https://www.netlogic.com.py/assets_front/images/arrow-menu-blue.svg) no-repeat center/contain;
}

.btn_menu {
  background: transparent;
  border: none;
  padding: 0;
  display: none;
  cursor: pointer;
}

/* ============================================================
   MEGAMENU
   ============================================================ */
.megamenu {
  background: var(--opacity-icon);
  position: fixed;
  top: 70px;
  left: 10%;
  right: 10%;
  width: auto;
  border-radius: 0;
  min-height: 370px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
  display: none;
  overflow: hidden;
  z-index: 999;
}

.header_menu_lista .mega_soluciones {
  padding: 25px 20px;
  position: static;
}

.header_menu_lista li:hover .megamenu {
  display: block;
}

.megamenu_lista {
  list-style: none;
  padding: 1.6rem 0;
  margin: 0;
  background: var(--opacity-icon);
  display: inline-block;
  width: 24.5%;
  min-height: 370px;
  vertical-align: top;
}

.megamenu_lista .item_megamenu_lista {
  padding: 1.2rem 3rem;
  cursor: pointer;
  transition: all .3s;
}

.megamenu_lista .item_megamenu_lista:hover,
.megamenu_lista .item_megamenu_lista.item_megamenu_active {
  background: var(--white);
}

.megamenu_lista .item_megamenu_lista:hover h5,
.megamenu_lista .item_megamenu_lista.item_megamenu_active h5 {
  color: var(--hover);
}

.item_principal_menu {
  font-size: .9rem;
  font-weight: 600;
  margin: 0;
}

.container_mega {
  position: absolute;
  width: 75.5%;
  height: 100%;
  right: 0;
  top: 0;
  display: none;
  background: var(--white);
  z-index: 3;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  row-gap: 8px;
  padding: 1.6rem 2rem;
  overflow: auto;
}

.item_megamenu_lista.item_megamenu_active .container_mega {
  display: flex;
}

.item_megamenu_lista:hover .container_mega {
  display: flex;
}

.item_mega {
  flex: 0 1 33.333333%;
}

.title_item_mega {
  font-size: .9rem;
  margin-bottom: .9rem;
  font-weight: 600;
}

.title_item_mega a {
  color: #007bff;
  text-decoration: none;
}

.item_mega ul {
  list-style: none;
  padding-left: .3rem;
  margin: 0;
}

.item_mega ul li a {
  display: block;
  color: var(--gray-text);
  padding-bottom: .5rem;
  font-size: .8rem;
  transition: all .3s;
  text-decoration: none;
}

.item_mega ul li a:hover {
  color: var(--hover);
  text-decoration: none;
}

/* ============================================================
   MENU MOBILE
   ============================================================ */
.menu_mobile {
  background: var(--opacity-icon);
  position: absolute;
  z-index: 999;
  left: 0;
  top: 70px;
  height: calc(100vh - 70px);
  width: 100%;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  border-radius: 0 0 6px 6px;
  display: none;
  overflow-y: auto;
}

.menu_mobile.open {
  display: block;
}

.header_menu_mobile_lista {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header_menu_mobile_lista li a {
  display: block;
  padding: 1rem 0;
  color: var(--opaco);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid #dbdbdc;
  text-decoration: none;
}

.header_menu_mobile_lista li a:hover {
  text-decoration: none;
  color: var(--hover);
}

.cerrar { display: none; }

.mobile_soluciones .header_menu_mobile_link {
  position: relative;
  padding-right: 20px;
}

.mobile_soluciones .header_menu_mobile_link::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 14px;
  height: 2px;
  background: #333;
}

.mobile_soluciones .header_menu_mobile_link::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  width: 2px;
  height: 14px;
  background: #333;
}

.mobile_soluciones .header_menu_mobile_link.changeplus::before { display: none; }
.mobile_soluciones .header_menu_mobile_link.changeplus { color: var(--hover); }

.menu_mobile_items { display: none; }
.menu_mobile_items.openone { display: block; }
.menu_mobile_items ul { padding-left: 15px; list-style: none; }
.menu_mobile_items_div { display: none; }
.menu_mobile_items_div.opentwo { display: block; }
.menu_mobile_items_div ul { padding-left: 20px; list-style: none; }
.menu_mobile_items_div ul li a { font-size: 1rem; font-weight: 400; }

.item_mobile_icon { position: relative; }
.item_mobile_icon::before { content: ''; position: absolute; top: 50%; transform: translateY(-50%); right: 6px; width: 2px; height: 14px; background: #333; }
.item_mobile_icon::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); right: 0; width: 14px; height: 2px; background: #333; }
.item_mobile_icon.changeplus::before { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.owl-principal .owl-item {
  height: calc(100vh - 70px);
}

.owl-principal .owl-item .item {
  height: 100%;
  position: relative;
}

.owl-principal .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.owl-principal .owl-nav .owl-prev,
.owl-principal .owl-nav .owl-next {
  position: absolute;
}

.owl-principal .owl-nav .owl-prev {
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(177, 190, 209, .5) !important;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-principal .owl-nav .owl-next {
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(177, 190, 209, .5) !important;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-principal .owl-nav .owl-prev:hover,
.owl-principal .owl-nav .owl-next:hover {
  background: rgba(177, 190, 209, .7) !important;
}

.owl-principal .owl-nav .owl-prev span,
.owl-principal .owl-nav .owl-next span {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
  margin-top: -2px;
}

.owl-principal .owl-item img.img-banner {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.container.container-tex-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero .hero_content-title {
  transform: translateY(-55px);
}

.hero .hero_title {
  color: var(--white);
  font-size: 3.5rem;
  font-family: var(--bold);
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  width: 70%;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero .hero_subtitle {
  color: var(--white);
  font-size: 1.2rem;
  font-family: var(--regular);
  line-height: 25px;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  margin-top: .8rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

/* ============================================================
   INFO HERO (3 cards)
   ============================================================ */
.info_hero {
  transform: translateY(-140px);
  position: relative;
  z-index: 1;
}

.info_hero_grid {
  display: grid;
  grid-template-columns: repeat(3, 270px);
  justify-content: center;
  grid-gap: 30px;
}

.info_hero_grid_item {
  padding: 1.5rem;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: all .3s;
}

.info_hero_grid_item:hover {
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.grid_item_card_link:hover {
  text-decoration: none;
}

.grid_item_card .card_img {
  background: var(--opacity-icon);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid_item_info h3 {
  color: var(--hover);
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
  margin-top: .6rem;
  letter-spacing: .5px;
}

.grid_item_info p {
  text-align: center;
  color: var(--opaco);
  font-size: .85rem;
  margin: 0;
}

/* ============================================================
   ALIADOS
   ============================================================ */
.aliados {
  text-align: center;
  padding-top: .5rem;
  transform: translateY(-80px);
}

.container_aliados_title {
  margin-bottom: 1.5rem;
}

.aliados_title {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--hover);
}

.aliados p {
  color: #555;
  font-size: .95rem;
}

.img-carousel-aliados {
  height: 130px;
  width: 130px !important;
  object-fit: contain;
  filter: grayscale(1);
  transition: all .3s;
  margin: 0 auto;
}

.img-carousel-aliados:hover {
  filter: grayscale(0);
}

/* ============================================================
   POR QUÉ ELEGIRNOS
   ============================================================ */
.elegir {
  background: #1f3d8f;
  padding-top: 3rem;
  padding-bottom: 4.5rem;
  position: relative;
}

.elegir::before {
  content: '';
  background: url(https://www.netlogic.com.py/assets_front/images/top-dark.svg) center / 140% no-repeat;
  height: 53px;
  width: 100%;
  position: absolute;
  top: -6%;
  left: 0;
}

.elegir::after {
  content: '';
  background: url(https://www.netlogic.com.py/assets_front/images/bottom-dark.svg) center / 140% no-repeat;
  height: 53px;
  width: 100%;
  position: absolute;
  bottom: -6%;
  left: 0;
}

.eligir_title {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.elegir_grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  grid-gap: 25px;
  justify-content: center;
}

.elegir_grid_item {
  background: var(--white);
  padding: 1.1rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: all .3s;
}

.elegir_grid_item:hover {
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.elegir_info h3 {
  color: var(--opaco);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: .6rem;
  letter-spacing: .5px;
}

.elegir_info p {
  color: var(--opaco);
  font-size: .8rem;
  margin-bottom: 0;
}

.elegir_item_content .elegir_card_img {
  background: var(--opacity-icon);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CLIENTES
   ============================================================ */
.clientes {
  text-align: center;
  padding-top: 6.5rem;
}

.container_clientes_title {
  margin-bottom: 1.5rem;
}

.clientes_title {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--hover);
}

.clientes p {
  color: #555;
  font-size: .95rem;
}

.owl-clientes .item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-carousel-clientes {
  width: 120px !important;
  margin: 0 auto;
  object-fit: cover;
  filter: grayscale(1);
  transition: all .3s;
}

.img-carousel-clientes.img-carousel-width {
  width: 160px !important;
}

.img-carousel-clientes:hover {
  filter: grayscale(0);
}

/* ============================================================
   GALERÍA
   ============================================================ */
.galeria {
  text-align: center;
  padding-top: 4.5rem;
  padding-bottom: 3.25rem;
}

.container_galeria_title {
  margin-bottom: 1.5rem;
}

.galeria_title {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--hover);
}

.galeria p {
  color: #555;
  font-size: .95rem;
}

.swiper-container {
  width: 990px;
  padding-top: 20px;
  padding-bottom: 50px;
  margin: 0 auto;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  overflow: hidden;
  transform: scale(0.88);
  transition: transform .3s;
}

.swiper-slide.swiper-slide-active {
  transform: scale(1);
  z-index: 100;
}

.swiper-slide img,
.img_carousel_galeria {
  display: block;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  transition: all .3s;
}

/* ============================================================
   NOTICIAS
   ============================================================ */
.noticias {
  padding-top: 3.25rem;
  padding-bottom: 5.25rem;
  position: relative;
}

.noticias::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(https://www.netlogic.com.py/assets_front/images/pattern-2.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: .2;
  z-index: -1;
  top: 0;
}

.container_noticias_title {
  margin-bottom: 1.5rem;
}

.noticias_title {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--hover);
  margin-bottom: 2rem;
}

.noticias_grid {
  display: flex;
  align-items: center;
  position: relative;
}

.noticias_container_grid {
  display: grid;
  grid-template-columns: 255px 255px;
  grid-template-rows: 172px 172px;
  grid-gap: 10px;
}

.noticia_principal {
  width: 60%;
  overflow: hidden;
  transition: all .5s;
  margin-right: 10px;
}

.image-noticias {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  transition: all 3s;
}

.image-grid {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 3px;
  transition: all 4s;
}

.noticia_principal:hover .image-grid {
  transform: scale(1.1);
}

.noticias_container a:hover {
  text-decoration: none;
}

.noticias-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.noticias-item:hover .image-noticias {
  transform: scale(1.1);
  transition: all 3s;
}

.noticias_info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  z-index: 1;
  border-radius: 6px;
}

.noticias_info p {
  margin-bottom: .5rem;
  font-weight: bold;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 1px;
}

.noticias_info h2 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  width: 65%;
}

.noticias_info h5 {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-top: 2rem;
  background-color: var(--opacity-icon);
}

.grid_footer {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 30px;
  padding-bottom: .5rem;
}

.footer_subtitle {
  margin-top: .8rem;
  margin-bottom: .5rem;
  font-size: 12px;
}

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

.footer_certificaciones a {
  display: inline-block;
}

.lista_footer,
.lista_footer_enlaces,
.lista_footer_redes {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: .5rem;
}

.lista_footer_redes {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 1rem;
}

.lista_footer_enlaces li a {
  color: var(--opaco);
  position: relative;
  transition: all .3s;
  font-size: 12px;
  text-decoration: none;
}

.lista_footer_enlaces li a:hover {
  text-decoration: none;
  color: var(--principal);
}

.grid_item_footer_titulo {
  color: var(--principal);
  font-weight: 500;
  display: block;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.footer_oficinas h5 {
  color: var(--principal);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.lista_footer li a {
  color: var(--opaco);
  font-size: 12px;
  text-decoration: none;
}

.lista_footer li a:hover {
  text-decoration: none;
}

.icon-footer {
  margin-right: 5px;
}

.item_enlaces {
  margin-right: 3rem;
}

.iso_logo {
  width: 50px;
  object-fit: cover;
}

.container_porta_logo {
  text-align: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  border-top: 1px solid #e4e4e4;
}

.container_porta_logo img {
  width: 70px;
  object-fit: cover;
  filter: invert(40%) sepia(0%) saturate(870%) hue-rotate(141deg) brightness(95%) contrast(75%);
}

/* ============================================================
   PÁGINAS INTERNAS — BANNER + CONTENIDO
   ============================================================ */
.banner_interno {
  padding: 80px 0;
  text-align: center;
}

.banner_interno_content h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.banner_interno_content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
}

.pagina_contenido {
  padding: 4rem 0 5rem;
}

.nosotros_intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.nosotros_intro h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--hover);
  margin-bottom: 1rem;
}

.nosotros_intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* Grid 3 columnas para Nosotros / Sostenibilidad */
.nosotros_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nosotros_item {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(26,58,138,.07);
  transition: transform .3s, box-shadow .3s;
}

.nosotros_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(26,58,138,.13);
}

.nosotros_icon {
  background: var(--opacity-icon);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.nosotros_item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hover);
  margin-bottom: .7rem;
}

.nosotros_item p {
  font-size: .875rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Soluciones grid */
.soluciones_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solucion_card {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(26,58,138,.07);
  transition: transform .3s, box-shadow .3s;
}

.solucion_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(26,58,138,.13);
}

.solucion_icon {
  background: var(--opacity-icon);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.solucion_card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hover);
  margin-bottom: .8rem;
}

.solucion_card p {
  font-size: .875rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.solucion_card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.solucion_card ul li {
  font-size: .85rem;
  color: #555;
  padding: .3rem 0;
  padding-left: 1rem;
  position: relative;
}

.solucion_card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--principal);
}

/* Soluciones página - secciones ocultas por defecto (JS las muestra según hash) */
.sol_seccion { display: none; }

/* Soluciones página - banners + tabs */
.sol_banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}

.sol_banner_overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 90, 0.65);
}

.sol_banner_title {
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
}

.sol_tabs_section {
  padding: 55px 0 60px;
}

.sol_nav_tabs {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 4px;
}

.sol_nav_tabs .nav-link {
  color: var(--hover);
  font-size: .9375rem;
  padding: .5rem .9rem;
  border-radius: 4px 4px 0 0;
  border: 1px solid transparent;
  transition: background .2s;
}

.sol_nav_tabs .nav-link:hover {
  background: var(--opacity-icon);
}

.sol_nav_tabs .nav-link.active {
  color: var(--hover);
  background: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.sol_tab_content {
  padding-top: .5rem;
}

.sol_tab_row {
  align-items: flex-start;
}

.sol_tab_title {
  color: var(--hover);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sol_tab_text {
  color: #444;
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: .8rem;
}

.sol_tab_img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 6px;
}

.sol_marcas {
  margin-top: 1.5rem;
}

.sol_marcas_title {
  color: var(--hover);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sol_marcas_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.sol_marca_item img {
  height: 50px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .3s;
}

.sol_marca_item img:hover {
  filter: grayscale(0%);
}

/* Soluciones - sub-ítems de seguridad */
.sol_subitems {
  background: #f4f6fb;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sol_subitem_card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 6px rgba(16,77,174,.07);
}

.sol_subitem_card h5 {
  color: var(--hover);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.sol_subitem_card p {
  color: #555;
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sol_subitem_marcas_title {
  color: var(--hover);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.sol_subitem_marcas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.sol_subitem_marcas img {
  height: 38px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter .3s;
}

.sol_subitem_marcas img:hover {
  filter: grayscale(0%);
}

/* Soluciones página - categorías */
.sol_categoria {
  margin-bottom: 4rem;
}

.sol_categoria_header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, var(--hover) 0%, var(--principal) 100%);
  border-radius: 12px;
  padding: 1.6rem 2rem;
  margin-bottom: 2rem;
}

.sol_categoria_icon {
  background: rgba(255,255,255,.15);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sol_categoria_header h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 .25rem;
}

.sol_categoria_header p {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  margin: 0;
}

.sol_subcategorias {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sol_subcard {
  background: #fff;
  border: 1px solid #e8eef8;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(26,58,138,.06);
  transition: transform .3s, box-shadow .3s;
}

.sol_subcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,58,138,.13);
}

.sol_subcard h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--hover);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--opacity-icon);
}

.sol_subcard ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sol_subcard ul li {
  font-size: .82rem;
  color: #555;
  padding: .3rem 0 .3rem 1.1rem;
  position: relative;
  line-height: 1.5;
}

.sol_subcard ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--principal);
  font-size: 1rem;
  font-weight: 700;
}

/* Alianzas grid */
.alianzas_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.alianza_item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 90px;
  transition: box-shadow .3s;
}

.alianza_item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.alianza_item img {
  max-height: 55px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter .3s;
}

.alianza_item:hover img {
  filter: grayscale(0);
}

/* News blog grid */
.news_blog_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.news_blog_item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8eef8;
  box-shadow: 0 2px 12px rgba(26,58,138,.07);
  transition: transform .3s, box-shadow .3s;
}

.news_blog_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(26,58,138,.13);
}

.news_blog_img {
  height: 220px;
  overflow: hidden;
}

.news_blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.news_blog_item:hover .news_blog_img img {
  transform: scale(1.05);
}

.news_blog_info {
  padding: 1.5rem;
}

.news_tag_label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--principal);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: .5rem;
}

.news_blog_info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--opaco);
  margin-bottom: .7rem;
  line-height: 1.4;
}

.news_blog_info p {
  font-size: .875rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Contacto */
.contacto_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contacto_form_col h2,
.contacto_info_col h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--hover);
  margin-bottom: .5rem;
}

.contacto_form_col > p {
  font-size: .9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.form_group {
  margin-bottom: 1.2rem;
}

.form_group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--opaco);
  margin-bottom: .4rem;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: .65rem 1rem;
  border: 1px solid #dde4ed;
  border-radius: 6px;
  font-size: .9rem;
  font-family: var(--regular);
  color: var(--opaco);
  background: #fff;
  transition: border-color .3s;
  outline: none;
}

.form_group input:focus,
.form_group textarea:focus {
  border-color: var(--principal);
}

.form_group textarea {
  resize: vertical;
}

.contacto_oficina {
  margin-bottom: 1.8rem;
}

.contacto_oficina h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--principal);
  margin-bottom: .8rem;
}

.contacto_lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacto_lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: #555;
  margin-bottom: .7rem;
}

.contacto_lista li img {
  margin-top: 2px;
  flex-shrink: 0;
}

.contacto_redes h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--principal);
  margin-bottom: .8rem;
}

.contacto_mapa {
  margin-top: 1.5rem;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1200px)
   ============================================================ */
@media screen and (max-width: 1200px) {
  .header_menu .header_menu_lista li .header_menu_link {
    font-size: .8rem;
  }
  .elegir_grid {
    grid-template-columns: 1fr 1fr;
  }
  .swiper-container {
    width: 100%;
  }
  .swiper-slide {
    width: 280px;
    height: 280px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤990px)
   ============================================================ */
@media screen and (max-width: 990px) {
  .header_menu .header_menu_lista {
    display: none;
  }
  .btn_menu {
    display: block;
  }
  .btn_menu.change .cerrar {
    display: block;
  }
  .btn_menu.change .hamburguer {
    display: none;
  }

  .hero .hero_title {
    font-size: 2.1rem;
    line-height: 48px;
  }
  .hero .hero_subtitle {
    font-size: 1rem;
    line-height: 25px;
    width: 100%;
  }
  .owl-principal .owl-nav .owl-prev,
  .owl-principal .owl-nav .owl-next {
    opacity: 0;
    visibility: hidden;
  }

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

  .noticias_grid {
    display: initial;
  }
  .noticias_container_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 160px);
    margin-top: 10px;
    border-radius: 6px;
  }
  .image-grid {
    height: 250px;
  }
  .noticia_principal {
    width: 100%;
  }
  .image-noticias {
    height: 160px;
  }
  .noticias_info {
    padding: 1rem;
  }
  .noticias_info h2 {
    font-size: 1.3rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  .noticias_info h5 {
    font-size: 14px;
  }

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

  .elegir::before,
  .elegir::after {
    display: none;
  }
  .elegir_grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .swiper-slide {
    height: 230px;
  }
  .swiper-slide img {
    height: 230px;
  }
  .grid_footer {
    grid-template-columns: 1fr;
  }
  .nosotros_grid,
  .soluciones_grid {
    grid-template-columns: 1fr;
  }
  .sol_subcategorias {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sol_categoria_header h2 {
    font-size: 1.2rem;
  }
  .alianzas_grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news_blog_grid {
    grid-template-columns: 1fr;
  }
  .contacto_grid {
    grid-template-columns: 1fr;
  }
  .banner_interno_content h1 {
    font-size: 2rem;
  }
}
