/* ============================= 
    EVE 360 COLOR PALETTE - CUSTOM STYLES
================================ */

:root {
  /* Colores primarios */
  --eve-azul-institucional-oscuro: #0B486B;
  --eve-azul-profundo: #0B3C8A;
  --eve-azul-medio: #1B8FEA;
  --eve-azul-claro: #2ED1FF;
  
  /* Colores neutros */
  --eve-blanco: #FFFFFF;
  --eve-gris-tecnico: #C7CDD6;
  --eve-fondo-oscuro: #020814;
}

/* ============================= 
    BUTTONS - Usar Azul EVE Profundo como primario
================================ */
.button {
  background: var(--eve-azul-profundo);
  color: var(--eve-blanco);
  font-weight: 600;
  border: none;
}

.button:hover {
  background: var(--eve-azul-medio);
  color: var(--eve-blanco);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 60, 138, 0.3);
}

.button.border-button {
  color: var(--eve-azul-profundo);
  border-color: var(--eve-azul-profundo);
}

.button.border-button:hover {
  background: var(--eve-azul-profundo);
  color: var(--eve-blanco);
}

/* Botón secundario en hero - blanco con borde */
.button.button-light {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--eve-azul-profundo) !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
}

.button.button-light:hover {
  background: var(--eve-blanco) !important;
  color: var(--eve-azul-profundo) !important;
  border-color: var(--eve-blanco) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ============================= 
    HEADINGS - Usar Azul EVE Institucional Oscuro (más oscuro para mejor contraste)
================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--eve-azul-institucional-oscuro);
  font-weight: 700;
}

/* Títulos en secciones normales - Azul oscuro */
.section-title h3 {
  color: var(--eve-azul-institucional-oscuro);
}

/* Títulos en hero - Blanco para mejor contraste y centrado */
.hero-section h2 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center !important;
}

.hero-content-wrapper p {
  color: #FFFFFF !important;
  opacity: 0.95;
  text-align: justify !important;
  text-justify: inter-word !important;
}

.hero-content-wrapper strong {
  color: #FFFFFF !important;
  font-weight: 600;
}

/* ============================= 
    LINKS - Usar Azul EVE Medio
================================ */
a:not(.button):not(.button-light) {
  color: var(--eve-azul-medio);
  text-decoration: none;
}

a:not(.button):not(.button-light):hover {
  color: var(--eve-azul-profundo);
  text-decoration: underline;
}

/* Links en texto normal - mejor contraste */
p a {
  color: var(--eve-azul-profundo);
  font-weight: 500;
}

/* Body text - mejor legibilidad */
body {
  color: #2d3748;
  line-height: 1.7;
}

/* Todos los párrafos justificados */
p {
  color: #4a5568;
  text-align: justify;
  text-justify: inter-word;
}

/* Textos en secciones con fondo claro */
.feature-section p,
.about-section p {
  color: #4a5568;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

/* Párrafos en hero - justificados */
.hero-content-wrapper p {
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* ============================= 
    LISTAS - Viñetas alineadas y texto justificado
================================ */

/* Todas las listas no ordenadas */
ul {
  text-align: justify;
  text-justify: inter-word;
}

/* Items de lista - texto justificado */
li {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 0.5rem;
}

/* Listas en secciones de contenido */
.about-section ul li,
.feature-section ul li,
.single-pricing ul li,
.single-feature .content ul li {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.7;
}

/* Listas con iconos - usar flex para alinear icono y texto */
.about-content-wrapper ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-content-wrapper ul li i {
  margin-right: 0;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Listas normales - mantener comportamiento estándar con viñetas justificadas */
ul:not(.about-content-wrapper ul):not(.links):not(.socials) {
  list-style-position: outside;
}

ul:not(.about-content-wrapper ul):not(.links):not(.socials) li {
  text-align: justify;
  text-justify: inter-word;
  margin-left: 1.2em;
  padding-left: 0.3em;
}

/* Listas en about section con checkmarks - espaciado mejorado */
.about-content-wrapper ul li {
  display: flex;
  align-items: flex-start;
  text-align: justify;
  text-justify: inter-word;
  gap: 0.75rem;
}

.about-content-wrapper ul li i.lni-checkmark-circle {
  margin-right: 0;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Listas en pricing/modalidades */
.single-pricing ul {
  list-style-position: inside;
  padding-left: 0;
}

.single-pricing ul li {
  display: list-item;
  text-align: justify;
  text-justify: inter-word;
  padding-left: 0;
  list-style-type: disc;
  margin-left: 1.2em;
  margin-bottom: 0.75rem;
}

/* Listas ejecutivas en tarjetas de servicios */
.single-feature .content .feature-bullets {
  margin: 0.25rem 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.single-feature .content .feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  margin-left: 0;
  padding: 0;
  color: #4a5568;
  line-height: 1.7;
  text-align: left;
  text-justify: auto;
}

.single-feature .content .feature-bullets li::before {
  content: "\2713";
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--eve-azul-institucional);
  font-weight: 700;
}

.single-feature .content .feature-bullets li:last-child {
  margin-bottom: 0;
}

/* Listas en footer - mantener alineación natural */
.footer .links li a {
  text-align: left;
}

/* Ajustar contenido de listas para justificación */
ul li .content,
.single-feature .content,
.single-pricing .content {
  flex: 1;
}

/* Asegurar que los textos en descripciones estén justificados */
.single-feature .content p,
.single-pricing p,
.section-title p {
  text-align: justify;
  text-justify: inter-word;
}

/* Textos en secciones de metodología y beneficios */
.single-feature .content p,
#metodologia p,
#beneficios p {
  text-align: justify;
  text-justify: inter-word;
}


/* Secciones de contenido general */
.content p,
.about-content-wrapper p,
.feature-section .single-feature .content p {
  text-align: justify;
  text-justify: inter-word;
}

/* Títulos centrados */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.section-title h3,
.single-feature h5,
.single-pricing h4,
.single-pricing h6 {
  text-align: center;
}

/* Descripciones en sección título */
.section-title p {
  text-align: justify;
  text-justify: inter-word;
}

/* ============================= 
    SCROLL TO TOP
================================ */
.scroll-top {
  background: var(--eve-azul-profundo);
}

.scroll-top:hover {
  background: var(--eve-azul-medio);
}

/* ============================= 
    SOCIAL ICONS
================================ */
.socials li a {
  background: var(--eve-azul-profundo);
}

.socials li a:hover {
  background: var(--eve-azul-medio);
}

/* ============================= 
    NAVBAR - Sticky header
================================ */
.header.header-6 {
  background: #020814 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header.sticky {
  background: #020814 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================= 
    HERO SECTION - Background con gradiente de azules EVE
================================ */
.hero-section-wrapper-5 {
  background: linear-gradient(135deg, #e8f4fd 0%, var(--eve-azul-profundo) 50%, var(--eve-azul-institucional-oscuro) 100%);
  position: relative;
}

.hero-section-wrapper-5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="%230B3C8A" opacity="0.9"/></svg>') no-repeat center bottom;
  background-size: 100% 60%;
  z-index: 0;
}

.hero-section {
  position: relative;
  z-index: 1;
  padding-top: clamp(150px, 14vw, 220px) !important;
  padding-bottom: 40px;
}

/* Texto del hero sobre fondo oscuro */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 34px;
}

/* Imagen del hero con border-radius */
.hero-image {
  position: relative;
  z-index: 2;
  margin-top: 58px;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  max-height: 575px;
  height: auto;
}

/* Navbar en hero - fondo oscuro con texto blanco para mejor contraste */
.hero-section-wrapper-5 .header {
  background: #020814 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section-wrapper-5 .header .navbar {
  background: transparent;
}

.hero-section-wrapper-5 .header .navbar-nav .nav-item a {
  color: var(--eve-blanco) !important;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero-section-wrapper-5 .header .navbar-nav .nav-item a:hover,
.hero-section-wrapper-5 .header .navbar-nav .nav-item a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--eve-blanco) !important;
}

/* Logo navbar - respeta colores originales del SVG (sin filtros) */

/* Navbar toggler en móvil - iconos blancos */
.hero-section-wrapper-5 .header .navbar-toggler .toggler-icon,
.header.header-6 .navbar-toggler .toggler-icon {
  background-color: var(--eve-blanco) !important;
}

/* Toggler button visible en móvil */
.header.header-6 .navbar-toggler {
  border: 2px solid var(--eve-blanco);
  border-radius: 5px;
  padding: 5px 10px;
}

.header.header-6 .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Navbar colapsado en móvil - visible y con buen contraste */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-6 .navbar-collapse {
    background: #020814 !important;
    margin-top: 15px;
    padding: 20px !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  }

  .header.header-6 .navbar-collapse .navbar-nav .nav-item a {
    color: var(--eve-blanco) !important;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header.header-6 .navbar-collapse .navbar-nav .nav-item:last-child a {
    border-bottom: none;
  }

  .header.header-6 .navbar-collapse .navbar-nav .nav-item a:hover,
  .header.header-6 .navbar-collapse .navbar-nav .nav-item a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--eve-blanco) !important;
    border-color: transparent;
  }
}

@media (max-width: 767px) {
  .header.header-6 .navbar-collapse {
    background: #020814 !important;
    margin-top: 15px;
    padding: 20px !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  }

  .header.header-6 .navbar-collapse .navbar-nav .nav-item a {
    color: var(--eve-blanco) !important;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header.header-6 .navbar-collapse .navbar-nav .nav-item:last-child a {
    border-bottom: none;
  }

  .header.header-6 .navbar-collapse .navbar-nav .nav-item a:hover,
  .header.header-6 .navbar-collapse .navbar-nav .nav-item a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--eve-blanco) !important;
    border-color: transparent;
  }
}

/* ============================= 
    FEATURE/SERVICIOS - Iconos con Azul EVE Claro
================================ */
.single-feature .icon svg path {
  fill: rgba(46, 209, 255, 0.1);
}

.single-feature .icon i {
  color: var(--eve-azul-profundo);
}

.single-feature:hover .icon i {
  color: var(--eve-azul-claro);
}

/* ============================= 
    PRICING/MODALIDADES - Acentos con Azul EVE
================================ */
.single-pricing {
  border-top: 3px solid var(--eve-azul-profundo);
}

.single-pricing h4 {
  color: var(--eve-azul-profundo);
}

/* ============================= 
    SECTIONS - Background alternado
================================ */
.bg-light {
  background-color: rgba(199, 205, 214, 0.1) !important;
}

/* ============================= 
    FORM INPUTS - Focus con Azul EVE
================================ */
.form-input:focus {
  border-color: var(--eve-azul-medio);
  box-shadow: 0 0 0 0.2rem rgba(27, 143, 234, 0.25);
}

.contact-style-3 .contact-form-wrapper form .single-input select.form-input {
  background: #ffffff;
  border-radius: 5px;
  position: relative;
  padding-right: 20px;
  padding-left: 50px;
  width: 100%;
  border: 1px solid transparent;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
  transition: all 0.3s ease-out 0s;
  height: 56px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #4a5568;
}

.contact-style-3 .contact-form-wrapper form .single-input select.form-input:focus {
  border-color: #2F80ED;
}

/* ============================= 
    FOOTER - Fondo oscuro institucional
================================ */
.footer {
  background-color: var(--eve-fondo-oscuro);
  text-align: center;
}

.footer h6 {
  color: var(--eve-blanco);
  text-align: center;
}

.footer .desc {
  text-align: justify;
  text-justify: inter-word;
  color: var(--eve-gris-tecnico);
}

.footer .links {
  text-align: center;
  list-style: none;
  padding: 0;
}

.footer .links li {
  text-align: center;
  margin-bottom: 0.5rem;
}

.footer .links li a {
  color: var(--eve-gris-tecnico);
  text-align: center;
  display: inline-block;
}

.footer .links li a:hover {
  color: var(--eve-azul-claro);
}

.footer .logo {
  text-align: center;
  margin-bottom: 20px;
}

.footer .logo img {
  max-width: 200px;
  height: auto;
  width: auto;
}

.footer .socials {
  justify-content: center;
}

.footer .widget-wrapper {
  text-align: center;
}

.footer .copyright-wrapper {
  text-align: center;
}

.footer .copyright-wrapper p {
  text-align: center;
  color: rgba(199, 205, 214, 0.8);
}

/* ============================= 
    ACCENTS - Detalles con Azul EVE Claro
================================ */
.section-title h3::after {
  background: var(--eve-azul-claro);
}

/* ============================= 
    PRICING ACTIVE - Indicadores centrados
================================ */
.pricing-active-wrapper {
  position: relative;
}

/* Posicionar controles debajo del texto de la sección */
.pricing-section.pricing-style-4 .row.align-items-center {
  position: relative;
  padding-bottom: 80px;
}

.pricing-section.pricing-style-4 .section-title {
  position: relative;
}

/* Botones de navegación debajo del texto - posicionados relativos a la fila */
.pricing-section.pricing-style-4 .pricing-active-wrapper {
  position: relative;
}

.pricing-section.pricing-style-4 .pricing-active-wrapper .tns-controls {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  left: -350px !important;
  bottom: 250px !important;
  width: auto;
  margin-top: 5px;
}

@media (min-width: 992px) {
  /* En desktop, mover controles a la izquierda para alinearlos con el texto */
  .pricing-section.pricing-style-4 .pricing-active-wrapper .tns-controls {
    left: calc(-100% * 7 / 12 - 30px); /* Mover a la posición de la columna izquierda */
  }
}

@media (max-width: 991px) {
  /* En móvil, mantener centrado debajo */
  .pricing-section.pricing-style-4 .pricing-active-wrapper .tns-controls {
    justify-content: center !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    bottom: -60px !important;
  }
}

.pricing-active-wrapper .tns-controls button {
  background: var(--eve-azul-profundo);
  color: var(--eve-blanco);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(11, 60, 138, 0.3);
}

.pricing-active-wrapper .tns-controls button:hover {
  background: var(--eve-azul-medio);
  transform: scale(1.1);
}

/* En móvil, mantener centrado */
@media (max-width: 991px) {
  .pricing-active-wrapper .tns-controls {
    position: absolute;
    justify-content: center;
    width: 100%;
    bottom: -60px;
    left: 0;
  }
}

/* ============================= 
    ABOUT SECTION - Imagen mejorada
================================ */
.about-section {
  padding: 80px 0;
}

.about-image {
  text-align: center;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 650px;
}

.about-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-height: 600px;
}

/* En mobile, la imagen aparece primero */
@media (max-width: 991px) {
  .about-image {
    min-height: 500px;
    margin-bottom: 40px;
  }
  
  .about-image img {
    max-height: 450px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .about-image {
    min-height: 400px;
  }
  
  .about-image img {
    max-height: 350px;
  }
}

/* =============================
    ABOUT IDENTITY - Ajuste de composición y posición
================================ */
.about-identity {
  padding: 105px 0 92px;
  background: linear-gradient(180deg, #f6f9ff 0%, #edf3fb 100%);
}

.about-identity .section-title {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.about-identity .about-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(11, 60, 138, 0.1);
  color: var(--eve-azul-profundo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-identity .about-value-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 18px;
}

.about-identity .about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 60, 138, 0.12), rgba(46, 209, 255, 0.18));
  border: 1px solid rgba(11, 60, 138, 0.16);
  color: var(--eve-azul-institucional-oscuro);
  font-size: 13px;
  font-weight: 600;
}

.about-identity .about-main-row {
  margin-top: 14px;
  align-items: stretch;
}

.about-identity .about-main-copy .about-content-wrapper {
  background: #ffffff;
  border: 1px solid rgba(11, 60, 138, 0.1);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(11, 60, 138, 0.1);
  padding: 30px 30px 26px;
  height: 100%;
}

.about-identity .about-main-copy h5 {
  text-align: left;
  margin-bottom: 12px;
}

.about-identity .about-main-copy .about-diff-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-identity .about-main-copy .about-diff-list li {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 60, 138, 0.1);
  background: #f8fbff;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  text-justify: auto;
  line-height: 1.55;
}

.about-identity .about-main-copy .about-diff-list li i {
  color: var(--eve-azul-profundo);
  margin-top: 2px;
  flex-shrink: 0;
}

.about-identity .about-main-copy .about-diff-list li:last-child {
  margin-bottom: 0;
}

.about-identity .about-golden-line {
  margin-top: 16px;
  padding: 16px 18px 14px;
  border-radius: 14px;
  background: linear-gradient(120deg, #0b3c8a 0%, #1457b8 52%, #1b8fea 100%);
  box-shadow: 0 10px 22px rgba(11, 60, 138, 0.2);
}

.about-identity .about-golden-line h5,
.about-identity .about-golden-line p,
.about-identity .about-golden-line strong {
  color: #ffffff !important;
}

.about-identity .about-golden-line p {
  margin-bottom: 0;
  text-align: left;
  text-justify: auto;
}

.about-identity .about-cta {
  text-align: left;
  margin-top: 18px !important;
}

.about-identity .about-main-media .about-image {
  min-height: 0;
  height: 100%;
  margin-top: 0;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(11, 60, 138, 0.08);
  background: linear-gradient(135deg, rgba(11, 60, 138, 0.08) 0%, rgba(62, 146, 204, 0.16) 100%);
  box-shadow: 0 16px 36px rgba(11, 60, 138, 0.1);
}

.about-identity .about-main-media .about-image img {
  max-height: 540px;
  width: 100%;
  object-fit: contain;
  box-shadow: none;
}

@media (max-width: 991px) {
  .about-identity {
    padding: 84px 0 72px;
  }

  .about-identity .about-main-row {
    row-gap: 20px;
  }

  .about-identity .about-main-copy .about-content-wrapper {
    padding: 24px 20px 22px;
  }

  .about-identity .about-golden-line {
    padding: 14px 14px 12px;
  }

  .about-identity .about-cta {
    text-align: center;
  }

  .about-identity .about-main-media .about-image {
    padding: 18px;
    margin-bottom: 0;
  }

  .about-identity .about-main-media .about-image img {
    max-height: 430px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .about-identity .about-kicker {
    font-size: 11px;
    padding: 6px 12px;
  }

  .about-identity .about-value-pills {
    gap: 8px;
  }

  .about-identity .about-pill {
    font-size: 12px;
    padding: 5px 11px;
  }

  .about-identity .about-main-copy .about-diff-list li {
    padding: 9px 10px;
  }
}

/* =============================
    SECTORES POR INDUSTRIA
================================ */
.sectors-by-industry .section-title p {
  text-align: center;
  text-justify: auto;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.sectors-by-industry .single-feature {
  height: 100%;
  padding: 26px 24px;
  text-align: left;
}

.sectors-by-industry .sector-layout {
  display: grid;
  grid-template-columns: minmax(170px, 40%) 1fr;
  gap: 18px;
  align-items: stretch;
}

.sectors-by-industry .sector-media {
  min-height: 230px;
  border-radius: 16px;
  border: 1px dashed rgba(11, 60, 138, 0.25);
  background: linear-gradient(135deg, rgba(11, 60, 138, 0.07) 0%, rgba(62, 146, 204, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.sectors-by-industry .sector-media span {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--eve-azul-institucional-oscuro);
}

.sectors-by-industry .sector-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.sectors-by-industry .sector-copy {
  min-width: 0;
}

.sectors-by-industry .single-feature .content h5 {
  text-align: left;
  margin-bottom: 0.55rem;
}

.sectors-by-industry .single-feature .content .sector-lead {
  text-align: left;
  text-justify: auto;
  margin-bottom: 0.85rem;
  font-weight: 500;
  color: #425466;
}

.sectors-by-industry .single-feature .content .feature-bullets {
  margin-top: 0;
}

.sectors-by-industry .single-feature .content .feature-bullets li {
  text-align: left;
  text-justify: auto;
}

@media (max-width: 991px) {
  .sectors-by-industry .single-feature {
    padding: 22px 18px;
  }

  .sectors-by-industry .sector-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sectors-by-industry .sector-media {
    min-height: 180px;
  }
}

/* =============================
    CASOS DE EXITO
================================ */
.success-cases .section-title p {
  text-align: center;
  text-justify: auto;
}

.success-cases .single-feature .content h5 {
  text-align: left;
  margin-bottom: 0.65rem;
}

.success-cases .single-feature .content .case-meta {
  text-align: left;
  text-justify: auto;
  margin-bottom: 0.85rem;
  color: #425466;
}

.success-cases .single-feature .content .feature-bullets li {
  text-align: left;
  text-justify: auto;
}

/* ============================= 
    MEJORAS DE CONTRASTE GENERAL
================================ */

/* Títulos en cards */
.single-feature .content h5 {
  color: var(--eve-azul-institucional-oscuro);
  font-weight: 600;
}

.single-feature .content p {
  color: #4a5568;
  line-height: 1.7;
}

/* Precios y modalidades */
.single-pricing h3,
.single-pricing h4,
.single-pricing h6 {
  color: var(--eve-azul-institucional-oscuro);
}

.single-pricing ul li {
  color: #4a5568;
}

/* Footer descripción */
.footer .desc {
  color: var(--eve-gris-tecnico);
  line-height: 1.8;
}

.footer .copyright-wrapper p {
  color: rgba(199, 205, 214, 0.8);
}

/* Contacto */
.contact-section .section-title h3 {
  color: var(--eve-azul-institucional-oscuro);
}

.contact-section .section-title p {
  color: #4a5568;
}

/* Mejorar contraste en todos los headings */
.about-section h3,
.feature-section h3,
.section-title h3 {
  color: var(--eve-azul-institucional-oscuro) !important;
  font-weight: 700;
}

/* =============================
    MODERN REFRESH - GLOBAL UI
================================ */
:root {
  --eve-surface: #ffffff;
  --eve-surface-soft: #f7f9fd;
  --eve-border-soft: #dfe8f5;
  --eve-shadow-soft: 0 10px 30px rgba(15, 42, 85, 0.08);
  --eve-shadow-hover: 0 18px 36px rgba(11, 60, 138, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f7fc;
  color: #1f2937;
  overflow-x: hidden;
}

p {
  text-align: left;
  text-justify: auto;
}

.bg-light {
  background: linear-gradient(180deg, #f7f9fd 0%, #eef4fb 100%) !important;
}

.section-title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h3 {
  font-size: clamp(1.75rem, 1.28rem + 1.35vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #4b5563;
}

/* Header / Navbar */
.hero-section-wrapper-5 .header {
  background: transparent;
}

.hero-section-wrapper-5 .header .navbar-area {
  padding-top: 24px;
  padding-bottom: 14px;
}

.header.header-6 .navbar {
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(4, 20, 48, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 28px rgba(2, 8, 20, 0.26);
}

.hero-section-wrapper-5 .header.sticky {
  background: transparent;
  box-shadow: none;
}

.hero-section-wrapper-5 .header.sticky .navbar {
  background: rgba(3, 12, 30, 0.92);
  border-color: rgba(46, 209, 255, 0.25);
}

.header.header-6 .navbar-brand img {
  max-width: 170px;
}

.header.header-6 .navbar-nav .nav-item a {
  color: #e6efff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
}

.header.header-6 .navbar-nav .nav-item a:hover,
.header.header-6 .navbar-nav .nav-item a.active {
  color: #ffffff;
  background: rgba(46, 209, 255, 0.2);
  border: none;
}

.header.header-6 .navbar-toggler .toggler-icon {
  background-color: #ffffff;
}

/* Buttons */
.button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.button-lg {
  height: 52px;
  padding: 0 26px;
}

.button.radius-50,
.button.radius-30,
.button.radius-10 {
  border-radius: 12px !important;
}

/* Hero */
.hero-section-wrapper-5 .hero-style-5 {
  padding: clamp(236px, 22vw, 300px) 0 clamp(78px, 8vw, 120px);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-section-wrapper-5 .hero-style-5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 28, 70, 0.92) 0%, rgba(11, 60, 138, 0.82) 48%, rgba(27, 143, 234, 0.62) 100%);
  z-index: 0;
}

.hero-section-wrapper-5 .hero-style-5 > .container {
  position: relative;
  z-index: 1;
}

.hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper {
  padding: clamp(36px, 4.5vw, 64px) 0 0;
}

.hero-section h2 {
  text-align: left !important;
  font-size: clamp(2.05rem, 1.52rem + 1.9vw, 3.3rem);
  line-height: 1.08;
}

.hero-content-wrapper p {
  text-align: left !important;
  max-width: 62ch;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons .button {
  margin-right: 0 !important;
}

.hero-section-wrapper-5 .hero-style-5 .hero-image {
  margin-bottom: 0;
}

.hero-section-wrapper-5 .hero-style-5 .hero-image img {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 22px 38px rgba(2, 8, 20, 0.35));
}

/* Cards and sections */
.feature-style-5 .single-feature,
.single-pricing,
.contact-style-3 .contact-form-wrapper,
.contact-style-3 .left-wrapper .single-item {
  background: var(--eve-surface);
  border: 1px solid var(--eve-border-soft);
  box-shadow: var(--eve-shadow-soft);
}

.feature-style-5 .single-feature {
  border-radius: 22px;
  border-bottom: 1px solid var(--eve-border-soft);
  padding: 30px 24px;
  margin-bottom: 28px;
  text-align: left;
}

.feature-style-5 .single-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--eve-shadow-hover);
  border-color: #c8daf8;
}

.feature-style-5 .single-feature .icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin: 0 0 14px;
  background: linear-gradient(145deg, var(--eve-azul-profundo), var(--eve-azul-medio));
  color: #ffffff;
  font-size: 22px;
}

.feature-style-5 .single-feature .icon svg {
  display: none;
}

.feature-style-5 .single-feature .content h5 {
  text-align: left;
  margin-bottom: 0.65rem;
}

.feature-style-5 .single-feature .content p {
  color: #4b5563;
  line-height: 1.65;
}

/* Keep left alignment for customized bullets */
.feature-bullets li {
  line-height: 1.6;
}

/* Pricing / Modalidades slider controls simplified */
.pricing-style-4 {
  background: linear-gradient(180deg, #eff4fb 0%, #f7f9fd 100%);
}

.single-pricing {
  border-radius: 22px;
  border-top: 4px solid var(--eve-azul-profundo);
  padding: 32px 26px;
}

.single-pricing ul li {
  line-height: 1.55;
}

.pricing-section.pricing-style-4 .row.align-items-center {
  padding-bottom: 92px;
}

.pricing-section.pricing-style-4 .pricing-active-wrapper .tns-controls {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  justify-content: center !important;
  bottom: -66px !important;
}

.pricing-active-wrapper .tns-controls button {
  width: 44px;
  height: 44px;
  box-shadow: 0 8px 18px rgba(11, 60, 138, 0.24);
}

/* Contact */
.contact-style-3 {
  background: linear-gradient(180deg, #f7f9fd 0%, #eef4fb 100%);
}

.contact-style-3 .contact-form-wrapper {
  padding: 24px;
  border-radius: 20px;
}

.contact-feedback {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.45;
}

.contact-feedback.is-visible {
  display: block;
}

.contact-feedback.is-success {
  background: #eafaf1;
  border-color: #86d7ae;
  color: #1a5e3a;
}

.contact-feedback.is-error {
  background: #fff1f2;
  border-color: #f5a8b2;
  color: #8a1f2d;
}

.contact-style-3 .left-wrapper .single-item {
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
}

.contact-style-3 .left-wrapper .single-item .icon i {
  color: var(--eve-azul-profundo);
}

/* Iconos en blanco */
.feature-style-5 .single-feature .icon i,
.success-cases .single-feature .icon i,
.contact-style-3 .left-wrapper .single-item .icon i {
  color: #ffffff !important;
}

.contact-style-3 .contact-form-wrapper form .single-input textarea,
.contact-style-3 .contact-form-wrapper form .single-input input,
.contact-style-3 .contact-form-wrapper form .single-input select.form-input {
  border: 1px solid #dbe4f3;
  box-shadow: none;
}

.contact-style-3 .contact-form-wrapper form .single-input textarea:focus,
.contact-style-3 .contact-form-wrapper form .single-input input:focus,
.contact-style-3 .contact-form-wrapper form .single-input select.form-input:focus {
  border-color: var(--eve-azul-medio);
}

/* Footer */
.footer.footer-style-4 {
  background: linear-gradient(180deg, #071326 0%, #030a16 100%);
}

.footer .widget-wrapper {
  padding-top: 10px;
}

.footer .logo img {
  max-width: 180px;
}

/* Responsive checks */
@media (max-width: 1199px) {
  .feature-style-5 .single-feature {
    padding: 26px 20px;
  }
}

@media (max-width: 991px) {
  .header.header-6 .navbar {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .header.header-6 .navbar-collapse {
    margin-top: 10px;
    border-radius: 12px;
    background-color: rgba(6, 20, 45, 0.96) !important;
    border: 1px solid rgba(46, 209, 255, 0.22);
    box-shadow: 0 16px 30px rgba(2, 8, 20, 0.35);
    padding: 10px 8px !important;
  }

  .header.header-6 .navbar-nav .nav-item a {
    display: block;
    width: 100%;
    text-align: left;
    margin: 2px 0;
  }

  .hero-section-wrapper-5 .hero-style-5 {
    padding: 206px 0 64px;
  }

  .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper {
    padding-top: 36px;
  }

  .hero-section h2,
  .hero-content-wrapper p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-section-wrapper-5 .hero-style-5 .hero-image img {
    max-width: 430px;
  }

  .pricing-section.pricing-style-4 .row.align-items-center {
    padding-bottom: 82px;
  }

  .contact-style-3 .contact-form-wrapper {
    padding: 18px;
  }
}

@media (max-width: 767px) {
  .feature-style-5 .single-feature {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .button,
  .button-lg {
    height: 48px;
    padding: 0 18px;
  }

  .hero-section-wrapper-5 .hero-style-5 .hero-image img {
    max-width: 340px;
  }

  .hero-section-wrapper-5 .hero-style-5 {
    padding: 186px 0 56px;
  }

  .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper {
    padding-top: 26px;
  }
}

@media (max-width: 575px) {
  .hero-buttons .button {
    width: 100%;
  }

  .section-title h3 {
    font-size: 1.55rem;
  }
}

/* =============================
    SECTION INTROS (ESTILO "QUIENES SOMOS")
================================ */
.section-intro {
  --intro-accent: #1b8fea;
  position: relative;
  padding: 26px 28px 20px;
  border-radius: 20px;
  border: 1px solid rgba(11, 60, 138, 0.14);
  background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 14px 30px rgba(11, 60, 138, 0.1);
  overflow: hidden;
}

.section-intro::before {
  content: attr(data-kicker);
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 60, 138, 0.1);
  color: var(--eve-azul-profundo);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--intro-accent) 0%, #2ed1ff 100%);
}

.section-intro h3 {
  margin-bottom: 10px !important;
}

.section-intro p {
  margin-bottom: 0;
  max-width: none;
}

.section-intro.text-center h3,
.section-intro.text-center p {
  text-align: center;
}

.section-intro:not(.text-center) h3,
.section-intro:not(.text-center) p {
  text-align: left;
}

.section-intro-services {
  --intro-accent: #0b3c8a;
}

.section-intro-modalidades {
  --intro-accent: #1457b8;
}

.section-intro-metodologia {
  --intro-accent: #1b8fea;
}

.section-intro-sectores {
  --intro-accent: #2aa6c8;
}

.section-intro-casos {
  --intro-accent: #0b486b;
}

.section-intro-contacto {
  --intro-accent: #1b8fea;
}

#modalidades .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#modalidades .section-intro p {
  margin-left: auto;
  margin-right: auto;
}

/* =============================
    MODALIDADES MODERNAS
================================ */
.modalidades-modern {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 300px at 12% 2%, rgba(27, 143, 234, 0.12), rgba(27, 143, 234, 0)),
    radial-gradient(900px 320px at 88% 6%, rgba(11, 72, 107, 0.1), rgba(11, 72, 107, 0)),
    linear-gradient(180deg, #f4f8ff 0%, #eef4fb 100%);
}

.modalidades-modern .modalidades-grid {
  position: relative;
  z-index: 1;
}

.modalidades-modern .mode-card {
  height: 100%;
  padding: 24px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(11, 60, 138, 0.16);
  background: linear-gradient(165deg, #ffffff 0%, #f7fbff 85%);
  box-shadow: 0 18px 34px rgba(11, 60, 138, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.modalidades-modern .mode-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(11, 60, 138, 0.18);
  border-color: rgba(27, 143, 234, 0.45);
}

.modalidades-modern .mode-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.modalidades-modern .mode-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(11, 60, 138, 0.1);
  color: var(--eve-azul-profundo);
}

.modalidades-modern .mode-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(46, 209, 255, 0.14);
  color: var(--eve-azul-institucional-oscuro);
}

.modalidades-modern .mode-card h4 {
  text-align: left;
  font-size: clamp(1.3rem, 1.1rem + 0.35vw, 1.55rem);
  line-height: 1.24;
  margin-bottom: 0;
  color: #0a366f;
}

.modalidades-modern .mode-lead {
  margin-bottom: 0;
  color: #475569;
  font-weight: 500;
  text-align: left;
}

.modalidades-modern .mode-card .feature-bullets {
  margin-top: 2px;
  margin-bottom: 0;
}

.modalidades-modern .mode-card .feature-bullets li {
  line-height: 1.58;
}

.modalidades-modern .mode-closing {
  margin-top: auto;
  margin-bottom: 0;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(11, 60, 138, 0.14);
  background: rgba(11, 60, 138, 0.05);
}

.modalidades-modern .mode-card-plus {
  background:
    linear-gradient(158deg, rgba(11, 60, 138, 0.92) 0%, rgba(27, 143, 234, 0.9) 100%);
  border-color: rgba(46, 209, 255, 0.36);
  box-shadow: 0 22px 44px rgba(11, 60, 138, 0.28);
}

.modalidades-modern .mode-card-plus .mode-chip {
  background: rgba(255, 255, 255, 0.18);
  color: #e9f5ff;
}

.modalidades-modern .mode-card-plus .mode-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #f8fcff;
}

.modalidades-modern .mode-card-plus h4,
.modalidades-modern .mode-card-plus .mode-lead,
.modalidades-modern .mode-card-plus .feature-bullets li,
.modalidades-modern .mode-card-plus .mode-closing,
.modalidades-modern .mode-card-plus .mode-closing strong {
  color: #ffffff;
}

.modalidades-modern .mode-card-plus .feature-bullets li::before {
  color: #9af3ff;
}

.modalidades-modern .mode-card-plus .mode-closing {
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 991px) {
  .modalidades-modern .mode-card {
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .modalidades-modern .mode-card h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 575px) {
  .modalidades-modern .mode-card-head {
    align-items: flex-start;
  }
}

/* =============================
    SECTORES - ENCUADRE DE IMAGEN
================================ */
.sectors-by-industry .sector-media img.fit-contain {
  object-fit: contain;
  object-position: center;
  padding: 4px;
  background: #ffffff;
}

.sectors-by-industry .sector-media img.fit-cover {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

@media (max-width: 991px) {
  .section-intro {
    padding: 22px 18px 18px;
    border-radius: 16px;
  }

  #modalidades .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #modalidades .section-intro p {
    margin-left: auto;
    margin-right: auto;
  }
}
