/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

/* hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
} */

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}



/* <weight>: Use a value from 100 to 900
<uniquifier>: Use a unique and descriptive class name */






/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* GENERALES */

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

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}


:root {
  --negro: #000000;
  --azul: #003c6c;
  --azul2: #214894;
  --azul3: #81eeff;
  --gris: #90a1ac;
  --gris-claro: #f4f7f9;
  --blanco: #ffffff;
  --amarillo: #ffc107;
  --red: #e74c3c;
  --font-main: 'Open Sans', sans-serif;
  --font-title: 'Montserrat', sans-serif;
  --transition-fast: all 0.3s ease;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --glass: rgba(255, 255, 255, 0.8);
  --border-glass: rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.12);
}

@font-face {
    font-family: 'Arvo';
    font-display: auto;
    src: local('Arvo'), url(https://fonts.gstatic.com/s/arvo/v9/rC7kKhY-eUDY-ucISTIf5PesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
}

h1,
h2,
h3 {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}

body {
  /* font-family: "Lato", sans-serif; */
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }
}

.container-20px {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cont-90 {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.cont-80 {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.cont-60 {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

img {
  max-width: 100%;
}

li {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.titulo-section {
  margin-bottom: 4rem;
}

.fondo-azul {
  background: rgba(19, 50, 80, 0.75);
  height: 100%;
  border-radius: 1rem;
}

.fondo-azul:hover {
  background: rgba(19, 50, 80, 1);
}

/* hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 2px solid #000000;
  margin: 1em 0;
  padding: 0;
} */

.roboto-fonts {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

p {
  /* margin: 3rem auto; */
  font-size: 1.2rem;
}

/**************************************************** FIN GENERALES ********************************************/


/******************************** INICIO MENU DE NAVEGACION - NAV ******************************/


.navbarNAV {
  background-color: var(--blanco);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
}

.containerNAV {
  /* max-width: 1200px; */
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 10px;
}

/* --- SOLUCIÓN PARA EL LOGO --- */
.logoWrapperNAV {
  display: flex;
  align-items: center;
  /* min-width: 180px; */
  min-width: 100px;
  /* Asegura espacio para el logo */
}

.logoNAV {
  /* Forzamos el tamaño para anular el max-width: 100% global si es necesario */
  display: block !important;
  height: 80px !important;
  width: auto !important;
  max-width: none !important;
  /* CRÍTICO: Anula la restricción externa */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logoNAV:hover {
  transform: translateY(-2px);
}

/* --- MENÚ Y NAVEGACIÓN --- */
.menuContainerNAV {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navLinksNAV {
  display: flex;
  list-style: none;
  gap: 15px;
}

.linkNAV {
  text-decoration: none;
  color: var(--azul);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  transition: 0.3s;
}

/* Animación de subrayado */
.linkNAV::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--azul3);
  transition: 0.3s;
}

.linkNAV:hover::after {
  width: 100%;
}

/* --- REDES SOCIALES --- */
.socialLinksNAV {
  display: flex;
  list-style: none;
  gap: 12px;
  border-left: 1px solid #eee;
  padding-left: 15px;
}

.iconNAV {
  font-size: 1.1rem;
  color: var(--azul2);
  transition: 0.3s;
}

.iconNAV:hover {
  color: var(--azul3);
  transform: scale(1.2);
}

/* --- RESPONSIVE MOBILE --- */
.checkNAV {
  display: none;
}

.menuBtnNAV {
  display: none;
  font-size: 1.6rem;
  color: var(--azul);
  cursor: pointer;
}

@media (max-width: 1150px) {
  .menuBtnNAV {
    display: block;
  }

  .logoNAV {
    height: 60px !important;
    /* Logo más pequeño en móviles */
  }

  .menuContainerNAV {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--azul);
    flex-direction: column;
    padding: 40px 0;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }

  .navLinksNAV {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .linkNAV {
    color: var(--blanco);
    font-size: 1.1rem;
  }

  .socialLinksNAV {
    border-left: none;
    margin-top: 20px;
  }

  .iconNAV {
    color: var(--azul3);
    font-size: 1.5rem;
  }

  .checkNAV:checked~.menuContainerNAV {
    left: 0;
  }
}

.repseIcon {
  color: #982222;
  /* Un tono guinda formal */
}

.repseIcon:hover {
  color: #d4af37;
  /* Cambia a dorado al pasar el mouse */
}

/********************************** Fin MENU DE NAVEGACION - NAV *********************************/


/*********************** INICIO NAV NUEVO - SOLUCIONES ******************************/


/* --- ESTRUCTURA DEL NAV (AJUSTES) --- */
.navLinksNAV {
  display: flex;
  align-items: center;
  list-style: none;
}

.dropdownNAV {
  position: static;
  /* Crucial para el Mega-Menú de ancho completo */
  padding-bottom: 25px;
  /* PUENTE INVISIBLE: Evita que el menú se cierre al bajar el mouse */
  margin-bottom: -25px;
  /* Compensa el padding para no mover el diseño */
}

.dropdownToggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.caret-icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* --- MEGA-MENÚ (CONTENEDOR PRINCIPAL) --- */
.submenuNAV.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--blanco);
  box-shadow: var(--shadow-premium);
  border-bottom: 4px solid var(--azul);
  padding: 40px 0;
  z-index: 1000;

  /* ESTADO INICIAL (OCULTO CON TRANSICIÓN) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

/* --- COMPORTAMIENTO HOVER --- */
.dropdownNAV:hover .submenuNAV.megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdownNAV:hover .caret-icon {
  transform: rotate(180deg);
  color: var(--azul);
}

/* --- DISEÑO INTERNO DEL CONTENIDO --- */
.megamenu-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 30px;
}

.megamenu-column {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 20px 10px 0;
  opacity: 0;
  /* Para la animación de cascada */
  transition: var(--transition-smooth);
}

.megamenu-column:last-child {
  border-right: none;
}

/* Animación de Cascada al abrir */
.dropdownNAV:hover .megamenu-column {
  opacity: 1;
  animation: slideInUp 0.5s ease forwards;
}

/* Delays para efecto escalonado */
.megamenu-column:nth-child(1) {
  animation-delay: 0.05s;
}

.megamenu-column:nth-child(2) {
  animation-delay: 0.1s;
}

.megamenu-column:nth-child(3) {
  animation-delay: 0.15s;
}

.megamenu-column:nth-child(4) {
  animation-delay: 0.2s;
}

.megamenu-column:nth-child(5) {
  animation-delay: 0.25s;
}

/* --- TÍTULOS Y ENLACES --- */
.megamenu-title {
  color: var(--azul) !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.megamenu-title i {
  font-size: 1.1rem;
  color: #cbd5e0;
  transition: color 0.3s;
}

.megamenu-column:hover .megamenu-title i {
  color: var(--azul);
}

.megamenu-list {
  list-style: none;
  padding: 0;
}

.megamenu-list li {
  margin-bottom: 10px;
}

.megamenu-list li a {
  color: var(--gris) !important;
  text-decoration: none;
  font-size: 0.85rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

/* Línea de acento animada */
.megamenu-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--azul);
  transition: width 0.3s ease;
}

.megamenu-list li a:hover {
  color: var(--azul) !important;
  padding-left: 5px;
  /* Micro-movimiento */
}

.megamenu-list li a:hover::after {
  width: 100%;
}

/* --- ANIMACIONES KEYFRAMES --- */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVO (MÓVIL / TABLET) --- */
@media (max-width: 992px) {
  .dropdownNAV {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .submenuNAV.megamenu {
    position: static;
    display: none;
    /* En móvil es mejor alternar con clics o hover simple */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 20px;
    border-bottom: none;
    border-left: 3px solid var(--azul);
    background: #fdfdfd;
  }

  .dropdownNAV:hover .submenuNAV.megamenu {
    display: block;
  }

  .megamenu-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .megamenu-column {
    border-right: none;
    opacity: 1;
    animation: none;
  }

  .megamenu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/*************************************** FIN NAV NUEVO *************************************/





/********************** INICIO CARROUSEL ALIANZAS ***********************/

@layer demo {
  .carousel-alianza {
    --items: 14;
    --carousel-duration: 40s;

    @media (width > 600px) {
      --carousel-duration: 30s;
    }

    --carousel-width: min(80vw,
      600px);
    /* note - it will "break" if it gets too wide and there aren't enough items */
    --carousel-item-width: 70px;
    --carousel-item-height: 40px;
    --carousel-item-gap: 10px;

    --clr-cta: rgb(0, 132, 209);

    position: relative;
    width: var(--carousel-width);
    height: var(--carousel-item-height);
    overflow: clip;

    &[mask] {
      /* fade out on sides */
      mask-image: linear-gradient(to right,
          transparent,
          black 10% 90%,
          transparent);
    }

    &[reverse]>article {
      animation-direction: reverse;
    }

    /* hover pauses animation */
    /* &:hover > article {
			animation-play-state: paused;
		} */

  }

  .carousel-alianza>article {
    position: absolute;
    top: 0;
    left: calc(100% + var(--carousel-item-gap));
    width: var(--carousel-item-width);
    height: var(--carousel-item-height);
    display: grid;
    grid-template-rows: 100px auto 1fr auto;
    gap: 0.25rem;
    border: 0px solid light-dark(rgba(0 0 0 / 0.25), rgba(255 255 255 / 0.15));

    padding-block-end: 1rem;
    border-radius: 10px;
    background: light-dark(white, rgba(255 255 255 / 0.05));
    color: light-dark(rgb(49, 65, 88), white);

    /* animation */
    will-change: transform;
    animation-name: marquee;
    animation-duration: var(--carousel-duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: calc(var(--carousel-duration) / var(--items) * 1 * var(--i) * -1);

    &:nth-child(1) {
      --i: 0;
    }

    &:nth-child(2) {
      --i: 1;
    }

    &:nth-child(3) {
      --i: 2;
    }

    &:nth-child(4) {
      --i: 3;
    }

    &:nth-child(5) {
      --i: 4;
    }

    &:nth-child(6) {
      --i: 5;
    }

    &:nth-child(7) {
      --i: 6;
    }

    &:nth-child(8) {
      --i: 7;
    }

    &:nth-child(9) {
      --i: 8;
    }

    &:nth-child(10) {
      --i: 9;
    }

    &:nth-child(11) {
      --i: 10;
    }

    &:nth-child(12) {
      --i: 11;
    }

    &:nth-child(13) {
      --i: 12;
    }

    &:nth-child(14) {
      --i: 13;
    }
  }

  .carousel-alianza img {
    /* width: 100%; */
    height: 30px;
    /* object-fit: cover; */

    /* border-radius: 10px 10px 0 0; */
  }

  .carousel-alianza>article>*:not(img) {
    padding: 0 1rem;
  }



  @keyframes marquee {
    100% {
      transform: translateX(calc((var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) * -1));
    }
  }
}

/* general styling */
@layer base {

  .alianzas {
    /* background-color: light-dark(var(--bg-light), var(--bg-dark)); */
    /* color: light-dark(var(--txt-light), var(--txt-dark)); */
    /* min-height: 100svh; */
    margin: 0;
    padding: 1rem;
    font-size: 1rem;
    /* font-family: "Abel", sans-serif; */
    line-height: 1.5;
    display: grid;
    place-items: center;
    gap: 2rem;
  }
}

/********************** FIN CARROUSEL ALIANZAS ***********************/



/************************** INICIO BANNER *******************/

/* --- Banner HP Financial Services --- */
.seccion-hpfs-banner {
  padding: 10px 0;
  background: var(--negro);
  /* Fondo con gradiente institucional y textura técnica */
  background: linear-gradient(135deg, rgba(0, 60, 108, 0.95) 0%, rgba(33, 72, 148, 0.9) 100%),
    url('../img/Hero-Banner.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Efecto Parallax sutil */
}

.contenedor-hpfs-banner {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper-hpfs-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  /* Efecto Glassmorphism */
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(129, 238, 255, 0.3);
  gap: 20px;
}

.badge-hpfs-banner {
  display: inline-block;
  padding: 6px 16px;
  background: var(--azul3);
  color: var(--azul);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.titulo-hpfs-banner {
  font-size: 1.5rem;
  color: var(--blanco);
  line-height: 1.2;
  margin-bottom: 20px;
}

.descripcion-hpfs-banner {
  font-size: 1rem;
  color: var(--blanco);
  opacity: 0.9;
  /* max-width: 550px; */
}

/* Columna de Monto y Botón */
.accion-hpfs-banner {
  text-align: center;
  min-width: 280px;
}

.tarjeta-precio-banner {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.etiqueta-monto-banner {
  font-size: 0.9rem;
  color: var(--azul3);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.monto-valor-banner {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blanco);
  line-height: 1;
}

.monto-valor-banner small {
  font-size: 1.2rem;
  color: var(--gris);
  font-weight: 400;
}

/* Botón de Llamada a la Acción */
.boton-hpfs-banner {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--azul3);
  color: var(--azul);
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(129, 238, 255, 0.4);
}

.boton-hpfs-banner:hover {
  background: var(--blanco);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
  .wrapper-hpfs-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .titulo-hpfs-banner {
    font-size: 2rem;
  }

  .descripcion-hpfs-banner {
    margin: 0 auto;
  }

  .accion-hpfs-banner {
    width: 100%;
  }
}

/* *********************************FIN BANNER ***************************/



/****************************** INICIO SLIDER ********************************/

.hero-header {
  position: relative;
  height: 75vh;
  /* Ajusta la altura para que se vea el siguiente contenido */
  overflow: hidden;
}

.hero-container {
  height: 100%;
  position: relative;
}

/* Oscurecer imágenes para lectura */
.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 30, 60, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-img {
  height: 75vh;
  object-fit: cover;
}

/* Efecto Glassmorphism */
.hero-overlay-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 600px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.badge-tech {
  background: var(--azul3);
  color: var(--azul);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-overlay-text h1 {
  color: var(--blanco);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.1;
}

.hero-overlay-text h2 {
  color: var(--azul3);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Botones */
.hero-actions {
  display: flex;
  gap: 15px;
}

.btn-main {
  background: var(--azul3);
  color: var(--azul);
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-outline {
  border: 2px solid var(--blanco);
  color: var(--blanco);
  padding: 10px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn-outline:hover {
  background: var(--blanco);
  color: var(--azul);
}

/* Captions del Carousel */
.carousel-caption {
  z-index: 2;
  text-align: right;
  bottom: 10%;
}

.carousel-caption h3 {
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-overlay-text {
    left: 0;
    width: 100%;
    padding: 20px;
  }

  .hero-overlay-text h1 {
    font-size: 2.2rem;
  }

  .hero-header {
    height: 70vh;
  }

  .hero-img {
    height: 70vh;
  }
}



/* ************************************FIN SLIDER ***********************************/



/******************************** INICIO SOLUCIONES INTELIGENTES ***************************/


main.sol-inteligentes {
  /* font-family: "Lato", sans-serif; */
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

.soluciones {
  margin: 4rem auto;
}

/* Encabezado */
.header-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--azul), var(--azul3));
  margin: 15px auto;
  border-radius: 2px;
}

/* --- Contenedor de Navegación de Soluciones --- */
.servicios-solu {
  padding: 20px 0;
}

.nav-pills-solu {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(144, 161, 172, 0.2);
  /* --gris con transparencia */
  padding-bottom: 20px;
}

/* --- Botón de Pestaña (Pill) --- */
.nav-link-solu {
  background: var(--blanco);
  border: 1px solid var(--gris);
  color: var(--azul);
  padding: 12px 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.icon-wrap-solu {
  font-size: 1.2rem;
  color: var(--azul2);
  transition: color 0.3s ease;
}

.text-wrap-solu {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --- Efectos Interactivos --- */
.nav-link-solu:hover {
  border-color: var(--azul3);
  background-color: #f9feff;
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 60, 108, 0.1);
}

/* --- Estado Activo con Estética Premium --- */
.nav-link-solu.active {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul2) 100%) !important;
  color: var(--blanco) !important;
  border-color: var(--azul) !important;
  box-shadow: 0 10px 25px rgba(33, 72, 148, 0.3);
}

.nav-link-solu.active .icon-wrap-solu {
  color: var(--azul3);
  /* Resalte en Cyan institucional */
  transform: scale(1.1);
}

/* Línea indicadora inferior animada */
.nav-link-solu.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  /* Alineada con el borde inferior del contenedor */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--azul3);
  border-radius: 10px 10px 0 0;
  animation: indicator-solu 0.3s ease-out;
}

@keyframes indicator-solu {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 50px;
    opacity: 1;
  }
}

/* --- Responsividad --- */
@media (max-width: 768px) {
  .nav-pills-solu {
    flex-direction: column;
    padding-bottom: 0;
    border-bottom: none;
  }

  .nav-link-solu {
    justify-content: center;
  }

  .nav-link-solu.active::after {
    display: none;
    /* Quitamos la línea en móvil para evitar ruidos visuales */
  }
}

/* Variables de Diseño */

.smart-solutions {
  padding: 100px 5%;
  background-color: var(--gris-claro);
  display: flex;
  justify-content: center;
}

.container-solutions {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1200px) {
  .container-solutions {
    padding: 0 40px;
  }
}

/* Estilos de Imagen */
.image-wrapper {
  position: relative;
  padding: 20px;
}

.main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.image-wrapper:hover .main-img {
  transform: translateY(-10px);
}

.experience-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--azul);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.3);
}

.experience-badge .number {
  font-size: 32px;
  font-weight: 800;
}

/* Estilos de Texto */
.subtitle {
  display: block;
  color: var(--azul2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.title {
  color: var(--azul2);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
}

.highlight {
  color: var(--azul2);
  position: relative;
}

.text-block p {
  color: var(--gris);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Lista de Beneficios */
.features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--azul);
  font-weight: 600;
  margin-bottom: 12px;
}

.features-list i {
  color: #28a745;
  font-size: 18px;
}

/* Botón de Acción */
.btn-primary-solu {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--azul);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.btn-primary-solu:hover {
  background-color: var(--azul2);
  transform: scale(1.05);
  color: white;
}

/* Responsivo para móviles */
@media (max-width: 992px) {
  .container-solutions {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-list li {
    justify-content: center;
  }

  .image-column {
    order: 2;
  }
}


/************************ Inicio Tarjetas de Soluciones ********************************/


/* Variables de color Enlace Empresarial TI */


.work-container {
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap
}

.work-card {
  width: 100%;
  max-width: 400px;
  /* Tamaño ideal para escritorio */
  background: var(--blanco);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin: 2rem 1rem;
}

.work-card:hover {
  transform: translateY(-5px);
}

.titulo-work {
  background: var(--azul);
  color: var(--blanco);
  margin: 0;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.work-image-wrapper {
  position: relative;
  height: 300px;
  /* Altura para PC */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
}

/* Capa oscura que aparece en Hover */
.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 60, 108, 0.7);
  /* Azul institucional con transparencia */
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

/* Botón Personalizado */
.btn-work {
  background: transparent;
  border: 2px solid var(--azul3);
  color: var(--azul3);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-work:hover {
  background: var(--azul3);
  color: var(--azul);
  box-shadow: 0 0 15px var(--azul3);
}

.work-link {
  text-decoration: none;
}



/********************** FIN Tarjetas de Soluciones ********************************/


/****************************** FIN SOLUCIONES INTELIGENTES ***********************************/


/*********************** INICIO CODIGO REPSE ****************************/

section.repse {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f4f8;
  overflow-x: hidden;
}

.main-section-rep {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: linear-gradient(45deg, #ffffff, #e6eff5);
}

/* Esferas de Fondo Animadas */
.circle-rep {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: float-rep 8s infinite alternate ease-in-out;
}

.c1-rep {
  width: 400px;
  height: 400px;
  background: var(--azul3);
  top: -10%;
  right: -5%;
  opacity: 0.4;
}

.c2-rep {
  width: 300px;
  height: 300px;
  background: var(--azul2);
  bottom: -5%;
  left: -5%;
  opacity: 0.2;
  animation-delay: 2s;
}

.content-wrapper-rep {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}

/* Header Estilizado */
.header-rep {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown-rep 1s ease;
}

.tag-rep {
  color: var(--azul2);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 3px;
}

.main-title-rep {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--negro);
  margin-top: 10px;
}

.main-title-rep span {
  color: var(--azul);
  position: relative;
}

.line-rep {
  width: 80px;
  height: 4px;
  background: var(--azul3);
  margin: 20px auto;
  border-radius: 2px;
}

/* Bento Grid / Flexbox Moderno */
.bento-grid-rep {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Glassmorphism Card */
.glass-card-rep {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  animation: slideIn-rep 1s ease forwards;
}

.glass-card-rep:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(33, 72, 148, 0.15);
}

.icon-wrapper-rep {
  background: var(--blanco);
  width: 150px;
  height: 100px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-wrapper-rep img {
  width: 100%;

}

.card-info-rep h3 {
  color: var(--azul);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.card-info-rep p {
  color: var(--gris);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.list-rep {
  list-style: none;
  margin-bottom: 30px;
}

.list-rep li {
  color: var(--azul2);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.btn-rep {
  padding: 12px 30px;
  background: var(--azul);
  color: var(--blanco);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-rep:hover {
  background: var(--azul2);
}

/* Animaciones */
@keyframes float-rep {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(30px, 50px);
  }
}

@keyframes fadeInDown-rep {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn-rep {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsividad Extrema */
@media (max-width: 768px) {
  .glass-card-rep {
    padding: 30px;
    flex: 1 1 100%;
  }

  .main-title-rep {
    font-size: 2.2rem;
  }
}

@media (min-width: 1400px) {
  .content-wrapper-rep {
    max-width: 1300px;
  }
}



/************************ FIN CODIGO REPSE ****************************/




/***************************** INICIO SECCION FINANCIAMIENTO INTELIGENTE ******************************/


main.arrendamiento {
  /* font-family: "Lato", sans-serif; */
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Estilos Beneficios EET --- */
.seccion-beneficios-beneet {
  padding: 100px 0;
  background-color: #fcfcfc;
}

/* --- Header --- */
.header-beneet {
  text-align: center;
  margin-bottom: 60px;
}

.badge-beneet {
  color: var(--azul2, #214894);
  background: rgba(33, 72, 148, 0.08);
  padding: 6px 15px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.titulo-beneet {
  font-size: 2.8rem;
  color: var(--azul, #003c6c);
  margin: 15px 0;
  font-weight: 800;
}

.linea-beneet {
  width: 60px;
  height: 4px;
  background: var(--azul3, #81eeff);
  margin: 0 auto 25px;
}

.descripcion-beneet {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
}

/* --- Grid y Contenido --- */
.grid-beneficios-beneet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* --- Imagen con Estilo --- */
.marco-imagen-beneet {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.marco-imagen-beneet img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.marco-imagen-beneet:hover img {
  transform: scale(1.05);
}

.overlay-beneet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 60, 108, 0.8));
  padding: 30px;
  color: white;
  font-weight: 600;
}

/* --- Personalización de Acordeón --- */
.item-beneet {
  border: none !important;
  background: transparent !important;
  margin-bottom: 15px;
}

.button-beneet {
  background: white !important;
  color: var(--azul, #003c6c) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  border-radius: 12px !important;
  padding: 20px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #eee !important;
}

.button-beneet:not(.collapsed) {
  box-shadow: 0 10px 20px rgba(129, 238, 255, 0.2) !important;
  border-color: var(--azul3, #81eeff) !important;
}

.icon-beneet {
  margin-right: 15px;
  color: var(--azul3, #81eeff);
}

.body-beneet {
  background: white;
  margin-top: -10px;
  padding: 30px !important;
  border-radius: 0 0 12px 12px;
  border: 1px solid #eee;
  border-top: none;
}

.lista-check-beneet {
  list-style: none;
  padding: 0;
}

.lista-check-beneet li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #666;
}

.lista-check-beneet li::before {
  content: "\f058";
  /* FontAwesome check-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--azul2, #214894);
}

/* --- Banner Footer --- */
.footer-seccion-beneet {
  margin-top: 60px;
}

.banner-contacto-beneet {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px dashed var(--azul2, #214894);
}

.banner-contacto-beneet p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--azul, #003c6c);
}

/* --- Responsividad --- */
@media (max-width: 992px) {
  .grid-beneficios-beneet {
    grid-template-columns: 1fr;
  }

  .titulo-beneet {
    font-size: 2.2rem;
  }
}


/******************************* FIN SECCION FINANCIAMIENTO INTELIGENTE *********************************/



/************************* --- INICIO INDEX-FORMULARIO --- ***********************/



/* --- Sección CTA Soporte con Imagen --- */
.cta-soporte-cont {
  padding: 80px 0;
  background-color: var(--blanco);
}

.wrapper-cta-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Imagen de fondo con Overlay Institucional */
  background: linear-gradient(135deg, rgba(0, 60, 108, 0.92) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('../img/Frm-Contacto.avif');

  background-size: cover;
  background-position: center;
  padding: 70px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  gap: 40px;
  border: 1px solid rgba(129, 238, 255, 0.1);
}

/* Efecto de brillo sutil en una esquina */
.wrapper-cta-cont::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(129, 238, 255, 0.15), transparent 40%);
  pointer-events: none;
}

.badge-soporte-cont {
  color: var(--azul3);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.texto-cta-cont h2 {
  color: var(--blanco);
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 600px;
  font-weight: 700;
}

.texto-cta-cont p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0;
  line-height: 1.5;
}

/* --- Botón Premium --- */
.btn-principal-cont {
  position: relative;
  display: inline-block;
  padding: 20px 45px;
  background: var(--azul3);
  color: var(--azul);
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(129, 238, 255, 0.3);
  white-space: nowrap;
  z-index: 2;
}

.btn-principal-cont:hover {
  background: var(--blanco);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn-principal-cont i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-principal-cont:hover i {
  transform: translateX(5px);
}

/* --- Responsividad --- */
@media (max-width: 992px) {
  .wrapper-cta-cont {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .texto-cta-cont h2 {
    font-size: 1.8rem;
  }

  .texto-cta-cont p {
    margin: 0 auto;
  }

  .botonera-cta-cont {
    width: 100%;
  }

  .btn-principal-cont {
    width: 100%;
    text-align: center;
  }
}


/************************* --- INICIO INDEX-FORMULARIO --- ***********************/



/********************* INICIO PREGUNTAS REPSE **********************/

/* Variables ya definidas anteriormente */

.faq-section-rep {
  padding: 60px 20px;
  background-color: var(--blanco);
}

.faq-title-rep {
  text-align: center;
  color: var(--negro);
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-title-rep span {
  color: var(--azul2);
}

.accordion-rep {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.accordion-item-rep {
  border-bottom: 1px solid #edf2f7;
}

.accordion-header-rep {
  width: 100%;
  padding: 20px 25px;
  background: var(--blanco);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul);
  transition: background 0.3s ease;
  text-align: left;
}

.accordion-header-rep:hover {
  background: #f8fafc;
}

.icon-rep {
  font-size: 1.5rem;
  color: var(--azul3);
  transition: transform 0.3s ease;
}

.accordion-content-rep {
  max-height: 0;
  overflow: hidden;
  background: #fcfdfe;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 25px;
}

.accordion-content-rep p {
  padding-bottom: 20px;
  color: var(--gris);
  line-height: 1.6;
}

/* Efecto cuando está abierto (Simulado con Hover o Clase JS) */
.accordion-item-rep:hover .accordion-content-rep {
  max-height: 200px;
  /* Ajusta según el largo del texto */
  padding-top: 10px;
}

.accordion-item-rep:hover .icon-rep {
  transform: rotate(45deg);
  color: var(--azul2);
}

/* Responsivo */
@media (max-width: 600px) {
  .accordion-header-rep {
    font-size: 1rem;
    padding: 15px;
  }
}



/********************************** FIN PREGUNTAS REPSE *******************************/


/************************************* INICIO FOOTER *******************************/

.footer-main-foot {
  background-color: var(--negro);
  color: var(--blanco);
  padding: 60px 0 30px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 4px solid var(--azul);
  margin-top: 2rem;
}

.grid-layout-foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

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

.title-foot {
  color: var(--azul3);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Línea decorativa debajo del título */
.title-foot::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--azul2);
}

.description-foot {
  color: var(--gris);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Enlaces */
.list-unstyled-foot {
  list-style: none;
  padding: 0;
}

.item-foot {
  margin-bottom: 12px;
}

.link-foot {
  color: var(--gris);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-foot:hover {
  color: var(--azul3);
  transform: translateX(5px);
}

.icon-small-foot {
  font-size: 1rem;
  color: var(--azul2);
}

/* Contacto */
.list-contact-foot {
  list-style: none;
  padding: 0;
}

.contact-item-foot {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--gris);
  font-size: 0.9rem;
}

.icon-accent-foot {
  color: var(--azul3);
  font-size: 1.1rem;
}

/* Redes Sociales */
.social-wrapper-foot {
  display: flex;
  gap: 15px;
}

.social-link-foot {
  width: 40px;
  height: 40px;
  background-color: var(--azul);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link-foot:hover {
  background-color: var(--azul3);
  color: var(--negro);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(129, 238, 255, 0.3);
}

/* Separador y Copyright */
.divider-foot {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--azul), transparent);
  margin: 40px 0 20px 0;
  opacity: 0.5;
}

.bottom-footer-foot {
  text-align: center;
}

.copyright-foot {
  color: var(--gris);
  font-size: 0.85rem;
}

.legal-link-foot {
  color: var(--azul3);
  text-decoration: none;
  font-weight: 600;
}

.legal-link-foot:hover {
  text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
  .footer-main-foot {
    padding: 40px 0 20px 0;
  }

  .grid-layout-foot {
    text-align: center;
  }

  .title-foot::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .link-foot {
    justify-content: center;
  }

  .contact-item-foot {
    justify-content: center;
  }

  .social-wrapper-foot {
    justify-content: center;
  }
}

/* Resaltado especial para el link de privacidad */
.privacy-highlight-foot {
  border-left: 2px solid transparent;
  padding-left: 0;
}

.privacy-highlight-foot:hover {
  border-left: 2px solid var(--azul3);
  padding-left: 10px;
  color: var(--azul3) !important;
}

.link-foot {
  color: var(--gris);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-foot:hover {
  color: var(--blanco);
  transform: translateX(8px);
}

/* Estilos de la parte inferior */
.bottom-footer-foot {
  text-align: center;
  margin-top: 20px;
}

.separator-foot {
  margin: 0 10px;
  color: var(--azul);
}

.legal-link-foot {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-link-foot:hover {
  color: var(--azul3);
  text-decoration: underline;
}

/* Grid Layout */
.grid-layout-foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .separator-foot {
    display: block;
    height: 10px;
    visibility: hidden;
  }
}

/************************************* FIN FOOTER *******************************/


/************************************************ FIN INDEX *****************************/





/******************************* INICIO WEB NOSOTROS ******************************************/

/* --- Estilos Base Nosotros --- */

main.nosotros {
  /* font-family: "Lato", sans-serif; */
  color: var(--gris);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

.nosotros-nost {
  padding: 80px 0;
  background-color: var(--blanco);
}

.header-nosotros-nost {
  text-align: center;
  margin-bottom: 80px;
}

.badge-nosotros-nost {
  background: rgba(33, 72, 148, 0.08);
  color: var(--azul2, #214894);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.titulo-principal-nost {
  font-size: 3.5rem;
  color: var(--azul, #003c6c);
  margin: 20px 0;
  font-weight: 800;
}

.linea-decorativa-nost {
  width: 80px;
  height: 4px;
  background: var(--azul3, #81eeff);
  margin: 0 auto;
  border-radius: 10px;
}

/* --- Layout de Filas (Zig-Zag) --- */
.row-nosotros-nost {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.row-reverse-nost {
  flex-direction: row-reverse;
}

.texto-nosotros-nost {
  flex: 1;
}

.imagen-nosotros-nost {
  flex: 1;
}

.subtitulo-nost {
  font-size: 2.2rem;
  color: var(--azul, #003c6c);
  margin-bottom: 25px;
  font-weight: 700;
}

.texto-nosotros-nost p {
  font-size: 1.15rem;
  /* color: var(--gris); */
  line-height: 1.8;
  margin-bottom: 25px;
}

/* --- Marcos de Imagen --- */
.marco-imagen-nost {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.marco-imagen-nost:hover {
  transform: translateY(-15px) scale(1.02);
}

.marco-imagen-nost img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* --- Banners y Listas --- */
.banner-slogan-nost {
  background: linear-gradient(135deg, #003c6c 0%, #000000 100%);
  color: white;
  padding: 60px;
  border-radius: 30px;
  text-align: center;
  margin: 100px 0;
  box-shadow: 0 20px 40px rgba(0, 60, 108, 0.25);
}

.banner-slogan-nost h3 {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.lista-especialidades-nost {
  list-style: none;
  padding: 0;
}

.lista-especialidades-nost li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: padding-left 0.3s ease;
}

.lista-especialidades-nost li:hover {
  padding-left: 10px;
  color: var(--azul2, #214894);
}

.lista-especialidades-nost i {
  color: var(--azul3, #81eeff);
  font-size: 1.4rem;
}

.footer-nosotros-nost {
  text-align: center;
  padding: 50px;
  background: #f8fafc;
  border-radius: 30px;
  margin-top: 40px;
}

.footer-nosotros-nost h3 {
  color: var(--azul, #003c6c);
  font-weight: 600;
}

/* --- Responsividad --- */
@media (max-width: 992px) {

  .row-nosotros-nost,
  .row-reverse-nost {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .titulo-principal-nost {
    font-size: 2.8rem;
  }

  .banner-slogan-nost {
    padding: 40px 20px;
  }
}

/***************************************** FIN WEB NOSOTROS ********************************/



/****************************** INICIO WEB SOLUCIONES TI **********************************/

main.soluciones-ti {
  /* font-family: "Lato", sans-serif; */
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Estilos de Sección Soluciones --- */
.contenedor-principal-solti {
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.container-solti {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* --- Encabezado --- */
.encabezado-solti {
  text-align: center;
  margin-bottom: 80px;
}

.titulo-solti {
  font-size: 2.8rem;
  color: var(--azul, #003c6c);
  font-weight: 800;
  margin-bottom: 15px;
}

.divisor-solti {
  width: 70px;
  height: 4px;
  background: var(--azul3, #81eeff);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.introduccion-solti {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Layout Alternado --- */
.fila-solti {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.fila-invertida-solti {
  flex-direction: row-reverse;
}

.contenido-texto-solti,
.contenido-imagen-solti {
  flex: 1;
}

/* --- Tipografía y Listas --- */
.subtitulo-solti {
  font-size: 2rem;
  color: var(--azul2, #214894);
  margin-bottom: 30px;
}

.lista-detalles-solti,
.lista-beneficios-solti {
  list-style: none;
  padding: 0;
}

.lista-detalles-solti li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  color: #444;
  line-height: 1.5;
}

.lista-detalles-solti li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--azul3, #81eeff);
  font-size: 0.8rem;
  top: 4px;
}

.lista-beneficios-solti li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lista-beneficios-solti li:hover {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateX(10px);
}

.lista-beneficios-solti i {
  color: var(--azul, #003c6c);
  font-size: 1.2rem;
}

/* --- Efectos en Imágenes --- */
.marco-solti {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.marco-solti::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

.marco-solti img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.marco-solti:hover img {
  transform: scale(1.05);
}

/* --- Responsividad --- */
@media (max-width: 992px) {

  .fila-solti,
  .fila-invertida-solti {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .titulo-solti {
    font-size: 2.2rem;
  }

  .lista-beneficios-solti li:hover {
    transform: none;
  }
}











/****************************** fin WEB SOLUCIONES TI **********************************/


/****************************** INICIO WEB SOLUCIONES FINANCIERAS **********************************/

/* --- Estilos Soluciones Financieras --- */
.contenedor-principal-solfin {
  padding: 100px 0;
  background-color: #f8fafc;
}

/* --- Encabezado --- */
.encabezado-solfin {
  text-align: center;
  margin-bottom: 80px;
}

.badge-solfin {
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.titulo-solfin {
  font-size: 3rem;
  color: #003c6c;
  /* Azul Institucional */
  margin: 20px 0;
  font-weight: 800;
}

.divisor-solfin {
  width: 60px;
  height: 5px;
  background: #81eeff;
  /* Cyan Institucional */
  margin: 0 auto 30px;
}

.introduccion-solfin {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
}

/* --- Bloque de Innovación --- */
.fila-solfin {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.destaque-solfin {
  margin-top: 25px;
  padding: 15px 25px;
  border-left: 4px solid #003c6c;
  background: #fff;
  font-weight: 700;
  color: #003c6c;
}

.marco-solfin {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.marco-solfin img {
  width: 100%;
  display: block;
}

/* --- Grid de Tarjetas de Ventajas --- */
.grid-ventajas-solfin {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.card-ventaja-solfin {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: 4px solid transparent;
}

.card-ventaja-solfin:hover {
  transform: translateY(-10px);
  border-bottom-color: #81eeff;
}

.icon-box-solfin {
  font-size: 2.5rem;
  color: #003c6c;
  margin-bottom: 20px;
}

.card-ventaja-solfin h3 {
  color: #003c6c;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.lista-solfin {
  list-style: none;
  padding: 0;
}

.lista-solfin li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #64748b;
  font-size: 1rem;
}

.lista-solfin i {
  color: #81eeff;
  margin-top: 4px;
}

/* --- Banner de Cierre --- */
.cierre-solfin {
  background: #003c6c;
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.cierre-solfin p {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 300;
}

.cierre-solfin i {
  color: #81eeff;
  margin-right: 10px;
}

/* --- Responsividad --- */
@media (max-width: 992px) {
  .fila-solfin {
    flex-direction: column;
    text-align: center;
  }

  .titulo-solfin {
    font-size: 2.2rem;
  }
}


/****************************** INICIO WEB SOLUCIONES FINANCIERAS **********************************/



/******************************** INICIO WEB CONTACTO *************************************/

/* --- Hero Contacto --- */
.hero-contacto-cont {
  background: linear-gradient(135deg, var(--azul), var(--negro));
  padding: 100px 0 60px;
  text-align: center;
  color: var(--blanco);
}

.titulo-cont {
  font-size: 3rem;
  margin-bottom: 10px;
}

.subtitulo-cont {
  font-size: 1.2rem;
  opacity: 0.8;
  font-weight: 300;
}

/* --- Grid de Contacto --- */
.grid-contacto-cont {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: -50px;
  /* Eleva las tarjetas sobre el hero */
  padding-bottom: 80px;
}

/* --- Columna Información --- */
.card-info-cont {
  background: var(--blanco);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.logo-contacto-cont {
  width: 180px;
  margin-bottom: 40px;
}

.dato-item-cont {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.dato-item-cont i {
  background: var(--azul3);
  color: var(--azul);
  padding: 15px;
  border-radius: 10px;
  font-size: 1.2rem;
}

.dato-item-cont h3 {
  font-size: 1.1rem;
  color: var(--azul);
  margin-bottom: 5px;
}

.dato-item-cont p {
  color: var(--gris);
  line-height: 1.4;
}

/* --- Formulario --- */
.form-wrapper-cont {
  background: var(--blanco);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.grupo-input-cont {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.grupo-input-cont:focus-within {
  border-color: var(--azul2);
  box-shadow: 0 0 0 4px rgba(33, 72, 148, 0.1);
}

.grupo-input-cont label {
  padding: 15px;
  color: var(--gris);
  border-right: 1px solid #eee;
  min-width: 55px;
  text-align: center;
}

.grupo-input-cont input,
.grupo-input-cont textarea {
  border: none;
  background: transparent;
  padding: 15px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: var(--negro);
}

/* --- Botón --- */
.btn-enviar-cont {
  width: 100%;
  padding: 18px;
  background: var(--azul2);
  color: var(--blanco);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-enviar-cont:hover {
  background: var(--azul);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 60, 108, 0.2);
}

/* --- Responsivo --- */
@media (max-width: 992px) {
  .grid-contacto-cont {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-contacto-cont {
    padding: 60px 0;
  }
}


/********************************** FIN WEB CONTACTO ******************************************/


/************************************* INICIO SECCION ARRENDAMIENTO ***********************************/

/* SECCIÓN FINANCIAMIENTO*/
.financing {
  background-color: #f8f9fa;
  /* Fondo claro para contraste */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.header-fin {
  text-align: center;
  margin-bottom: 60px;
}

.header-fin h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--azul);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.header-fin p {
  color: var(--gris);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* CONTENEDORES Y GRID */
.align-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* DECORACIÓN DE IMAGEN */
.image-wrapper {
  position: relative;
  flex: 1;
  min-width: 320px;
}

.image-decorator {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 10px solid var(--azul3);
  top: -20px;
  left: -20px;
  z-index: 0;
  border-radius: 8px;
}

.image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* LISTA DE BENEFICIOS PC6 */
.content-list {
  flex: 1;
  min-width: 320px;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--blanco);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: 0.3s ease;
}

.list-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 60, 108, 0.08);
}

.icon-box {
  background: var(--azul);
  width: 60px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--azul3);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.text-group h3 {
  color: var(--azul);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.text-group p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* BOTÓN SECUNDARIO */
.btn-sec {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 30px;
  background-color: var(--azul2);
  color: var(--blanco);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid transparent;
}

.btn-sec:hover {
  background-color: transparent;
  border-color: var(--azul2);
  color: var(--azul2);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .image-decorator {
    display: none;
  }

  .header-fin h2 {
    font-size: 1.8rem;
  }

  .list-item {
    padding: 15px;
  }
}

/***************************************** FIN SECCION ARRENDAMIENTO *********************************/




/* Generales para WEB - Soluciones Inteligentes */

main.solucionesti {
  font-family: 'Open Sans', sans-serif;
  color: var(--negro);
  line-height: 1.6;
  overflow-x: hidden;
}

.container-solucionesti {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}


/* Estilos para HERO */

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  padding: 0 15px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  max-width: 900px;
  margin-inline: auto;
}

.btn-main {
  background-color: var(--azul3);
  color: var(--azul);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-main:hover {
  background-color: var(--blanco);
  border-color: var(--azul3);
  transform: scale(1.05);
}

/* Grids */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

/* ESTILOS PARA GRIDS */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

/* SECCION DEFINICION */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.text-box-azul h2 {
  color: var(--azul);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.tag {
  color: var(--azul2);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 4px solid var(--azul3);
}

.image-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 15px 15px 0px var(--azul3);
  animation: float 6s ease-in-out infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-2 {
    text-align: center;
  }

  .image-box {
    order: 2;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.img-responsive {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title-azul {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--azul);
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .section-title-azul {
    font-size: 1.8rem;
  }
}

.types-grid {
  padding: 100px 0;
  background: #f8f9fa;
}

.destaque {
  color: var(--azul3);
}

.destaque_frase {
  color: var(--azul);
  font-weight: 600;
  font-style: italic;
  border-left: 4px solid var(--azul3);
  padding-left: 15px;
  margin: 20px 0;
}

@media (max-width: 992px) {

  .destaque_frase_PC7 {
    border-left: none;
    border-bottom: 4px solid var(--azul3);
    padding-left: 0;
    padding-bottom: 10px;
  }
}

.line-accent {
  width: 80px;
  height: 4px;
  background: var(--azul3);
  margin: 0 auto;
}

/* Estilos para CARDS - TIPOS */

.card-hw {
  background: #f8f9fa;
  padding: 40px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
  border-bottom: 4px solid var(--azul);
}

.card-hw:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 60, 108, 0.1);
}

.card-hw i {
  font-size: 3.5rem;
  color: var(--azul2);
  margin-bottom: 20px;
}

.service-note {
  text-align: center;
  margin-top: 40px;
  color: var(--azul);
  font-weight: 600;
}


/* ESTILOS PARA ESPECIFICACIONES */

.specs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.spec-box {
  background: var(--azul);
  color: var(--blanco);
  padding: 35px;
  border-radius: 10px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.spec-box:hover {
  box-shadow: 0 10px 20px var(--negro);
  border-bottom: 4px solid var(--azul3);
  transform: translateY(-5px);
}

.spec-box h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--azul3);
}

.spec-box ul {
  list-style: none;
}

.spec-box ul li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

/* ESTILOS PARA BENEFICIOS */

.benefits {
  background: var(--azul);
  color: var(--blanco);
}

.benefit-card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgb(246, 244, 244);
  transition: var(--transition-fast);
}
.benefit-card:hover {
  box-shadow: 0 10px 20px var(--negro);
  border-bottom: 4px solid var(--azul3);
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 3rem;
  color: var(--azul3);
  margin-bottom: 15px;
}

.benefit-card img {
  border-radius: 1rem;
  margin: 1rem 0rem;
}

/* Estilos para Riesgos */

.risks{
  /* background-color: var(--negro);
    color: var(--gris); */
    padding: 100px 0;
}

.risk-card {
  text-align: center;
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: #fffaf9;
  border-top: 5px solid var(--red);
}

.risk-card:hover {
  border-bottom: 5px solid var(--red);
}

.risk-card i {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 20px;
}


/* Celulares grandes y Monitores muy pequeños (hasta 768px) */
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

  .card-hw,
  .risk-card,
  .benefit-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Celulares pequeños (hasta 480px) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
}


/* Generales para WEB - Soluciones Inteligentes */


/************************ INICIO PC HOGAR U OFICINA ******************************/



/* ANIMACIONES*/
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInSlide 1s ease-out;
}

/* HERO PC1 */
.hero-PC1 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 60, 108, 0.8)), url('../img/Hero-Computo1.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/*************************************** FIN PC HOGAR U OFICINA ******************************/



/******************************** INICIO PC DISEÑO Y ARQUITECTURA *******************************/

/* HERO PC2 */
.hero-PC2 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Computo2.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/*************************** FIN PC DISEÑO Y ARQUITECTURA ****************************/


/************************** INICIO PC Y LAPTOP EMPRESARIAL *************************************/

.hero-PC3 {
  background: linear-gradient(rgba(0, 60, 108, 0.85), rgba(0, 0, 0, 0.8)), url('../img/Hero-Computo3.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/************************** FIN PC Y LAPTOP EMPRESARIAL *************************************/

/********************************* INICIO PC GAMER ****************************/

.hero-PC5 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Computo5.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/********************************* FIN PC GAMER ****************************/

/* INICIO PC DISEÑO CON APPLE */

.hero-PC7 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Computo7.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/* FIN PC DISEÑO CON APPLE */


/************************************* INICIO DISEÑO CON LA MARCA APPLE *************************************/

.soluciones_img_PC7 img,
.especificaciones_img_PC7 img,
.infraestructura_img_PC7 img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flex_PC7 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

/* Especificaciones Section */
.especificaciones_PC7 {
  background-color: var(--gris-claro);
}

.especificaciones_text_PC7,
.especificaciones_img_PC7 {
  flex: 1;
}

.especificaciones_text_PC7 ul {
  list-style: none;
  margin-top: 20px;
}

.especificaciones_text_PC7 li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon_PC7 {
  color: var(--azul3);
  font-weight: 700;
}

/* Infraestructura Section */
.infraestructura_PC7 {
  background-color: var(--blanco);
}

.infraestructura_text_PC7,
.infraestructura_img_PC7 {
  flex: 1;
}


/* Pantallas tipo Tablet y Monitores pequeños (hasta 992px) */
@media (max-width: 992px) {

  .flex_PC7 {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .que_son_img_PC7,
  .especificaciones_img_PC7,
  .infraestructura_img_PC7 {
    order: -1;
    /* Mover imagen arriba en móvil */
    width: 80%;
    margin: 0 auto;
  }

  .especificaciones_text_PC7 li {
    justify-content: center;
  }

}



/*********************** FIN DISEÑO CON LA MARCA APPLE ********************************************/

/* INICIO GENERALES PARA IMPRESORAS */

.badge {
  background: var(--azul2);
  color: var(--blanco);
  padding: 6px 15px;
  font-size: 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

/* LISTA TÉCNICA */

.specs-medium {
  background-color: var(--blanco);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.line-center {
  height: 4px;
  background-color: var(--azul3);
  border-radius: 2px;
}

.line-center-red {
  height: 4px;
  background-color: var(--red);
  border-radius: 2px;
  margin: 1.5rem 0rem 2rem 0rem;
}

.section-subtitle {
  color: var(--gris);
  margin-top: 10px;
  font-weight: 300;
}

.section-subtitle-red {
  color: var(--red);
  margin-top: 10px;
  font-weight: 300;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.list-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

.list-specs li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.list-specs li:hover {
  background: var(--blanco);
  border-color: var(--azul3);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.list-specs i {
  color: var(--azul2);
  margin-right: 15px;
  font-size: 1.2rem;
}

.icon-box {
  min-width: 45px;
  height: 45px;
  background: var(--azul);
  color: var(--azul3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.list-specs span {
  color: var(--negro);
  font-size: 0.95rem;
  line-height: 1.5;
}

.list-specs strong {
  display: block;
  color: var(--azul2);
  font-size: 1.05rem;
  margin-bottom: 2px;
}






/* FIN PARA GENERALES DE IMPRESORAS */












/*************************************** INICIO IMPRESORA PARA EL HOGAR ***************************/

/* HERO */

.hero-print1 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Print1.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/*************************************** FIN IMPRESORA PARA EL HOGAR ***************************/


/*************************************** INICIO IMPRESORA EMPRESARIAL ***************************/
.hero-print2 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Print2.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/*************************************** FIN IMPRESORA EMPRESARIAL ***************************/


/*************************************** INICIO IMPRESORA SERVICIOS ***************************/

.hero-print5 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Print5.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN IMPRESORA SERVICIOS ***************************/



/*************************************** INICIO IMPRESORA SUMINISTROS ***************************/

.hero-print4 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Print4.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN IMPRESORA SUMINISTROS ***************************/



/*************************************** INICIO IMPRESORA PLOTTER ***************************/

.hero-print3 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Print3.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN IMPRESORA PLOTTER ***************************/


/*************************************** INICIO CCTV GRABADORES ***************************/
.hero-seg1 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Seguridad1.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}




/*************************************** FIN CCTV GRABADORES ***************************/




/*************************************** INICIO CCTV CAMARAS ***************************/
.hero-seg2 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Seguridad2.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}


/*************************************** FIN CCTV CAMARAS ***************************/





/*************************************** INICIO FIREWALL ***************************/
.hero-seg3 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Seguridad3.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN FIREWALL ***************************/



/*************************************** INICIO CONTROL DE ACCESO ***************************/

.hero-seg4 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Seguridad4.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN CONTROL DE ACCESO ***************************/



/*************************************** INICIO CCTV ACCESORIOS ***************************/

.hero-seg5 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Seguridad5.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN CCTV ACCESORIOS ***************************/




/*************************************** INICIO SITES Y DATA CENTER ***************************/

.hero-infra1 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Infraestructura1.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN SITES Y DATA CENTER ***************************/


/*************************************** INICIO SERVIDORES Y ALMACENAMIENTO ***************************/

.hero-infra2 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Infraestructura2.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN SERVIDORES Y ALMACENAMIENTO ***************************/



/*************************************** INICIO SWITCHING Y ROUTING ***************************/

.hero-infra3 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Infraestructura3.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN SWITCHING Y ROUTING ***************************/



/*************************************** INICIO CABLEADO ESTRUCTURADO ***************************/

.hero-infra4 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Infraestructura4.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN CABLEADO ESTRUCTURADO ***************************/




/*************************************** INICIO TELEFONIA IP ***************************/

.hero-infra5 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Infraestructura5.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN TELEFONIA IP ***************************/


/*************************************** INICIO PROTECCION ELECTRICA UPS ***************************/

.hero-equipos1 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Equipos1.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN PROTECCION ELECTRICA UPS ***************************/


/*************************************** INICIO MONITORES Y PERIFEREICOS ***************************/

.hero-equipos2 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Equipos2.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN MONITORES Y PERIFEREICOS  ***************************/


/*************************************** INICIO SOFTWARE Y LICENCIA ***************************/

.hero-equipos3 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Equipos3.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN SOFTWARE Y LICENCIA ***************************/


/*************************************** INICIO AIRE ACONDICIONADO ***************************/

.hero-equipos4 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Equipos4.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN AIRE ACONDICIONADO ***************************/


/*************************************** INICIO MOCHILAS Y FUNDAS ***************************/

.hero-equipos5 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Equipos5.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN MOCHILAS Y FUNDAS ***************************/


/*************************************** INICIO PUNTOS DE VENTA ***************************/

.hero-equipos6 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Equipos6.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN PUNTOS DE VENTA ***************************/


/*************************************** INICIO PROYECTORES ***************************/

.hero-equipos7 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 60, 108, 0.8)), url('../img/Hero-Equipos7.avif') center/cover fixed;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

/*************************************** FIN PROYECTORES ***************************/










/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}