/* =========================================================
   TELIKO — STYLES 
========================================================= */

/* =========================
   VARIABLES GLOBALES
========================= */
:root{
  --teliko-primary: #294960;
  --teliko-secondary: #3c96ab;

  --teliko-primary-dark: #1f384a;
  --teliko-primary-darker: #172c3a;

  --teliko-secondary-soft: rgba(60,150,171,.22);

  --teliko-text: #eaf3f7;
  --teliko-muted: rgba(234,243,247,.78);

  /* Layout */
  --header-h: 72px;
  --radius: 10px;
}

/* =========================
   BASE
========================= */
html{
  scroll-behavior: smooth;
}

html, body{
  margin: 0;
  padding: 0;
}

body{
  padding-top: var(--header-h); /* header fixed */
  padding-bottom: 0;
}

b {color: var(--teliko-primary-darker) !important;}
strong {color: var(--teliko-primary) !important;}

/* Offset anchors con header fijo */
section[id]{
  scroll-margin-top: calc(var(--header-h) + 20px);
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header{
  min-height: var(--header-h);
  background: rgba(41,73,96,.95); /* sólido desde el inicio */
}

.navbar{
  min-height: var(--header-h);
  background-color: var(--teliko-primary) !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.navbar .container{
  min-height: var(--header-h);
  display: flex;
  align-items: center;
}

/* Todos los items del navbar (links + botón Contacto) */
.navbar .nav-link,
.navbar .btn-teliko{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 16px;

  border-radius: var(--radius);
  line-height: 1;
  font-weight: 600;
  letter-spacing: .2px;

  color: rgba(255,255,255,.92);
  text-decoration: none;

  transition: background-color .18s ease, color .18s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible,
.navbar .btn-teliko:hover,
.navbar .btn-teliko:focus-visible{
  background-color: var(--teliko-secondary);
  color: #fff;
  outline: none;
}

/* =========================
   DROPDOWNS
========================= */
.navbar .dropdown-menu{
  padding: 6px 0;
  margin-top: 12px;

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
  will-change: opacity, transform;
}

.dropdown-menu-dark{
  background: rgba(23,44,58,.96);
}

.navbar .dropdown-menu.show{
  opacity: 1;
  transform: translateY(0);
}

/* Items dropdown */
.navbar .dropdown-item{
  padding: 11px 16px;
  line-height: 1.25;
  color: rgba(234,243,247,.92);

  /* divisor visible (robusto) */
  box-shadow: inset 0 -1px rgba(255,255,255,.14);

  transition: background-color .15s ease, color .15s ease;
}

.navbar .dropdown-item:last-child{
  box-shadow: none;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus{
  background-color: var(--teliko-secondary) !important;
  color: #fff !important;
  box-shadow: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }

  .navbar .dropdown-menu{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--teliko-text);
  overflow: hidden;
  cursor: default;
}

.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(41,73,96,.10), rgba(23,44,58,0.92)),
    url("../img/Teliko-slider.jpg") center / cover no-repeat;
  z-index: -2;
  transition: opacity .45s ease;
}

.hero::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(41,73,96,.10), rgba(3,5,7,0.92)),
    url("../img/teliko-slider-hover.jpg") center / cover no-repeat;
  z-index: -1;
  opacity: 0;
  transition: opacity .45s ease;
}

.hero:hover::after{
  opacity: 1;
}

.hero > *{
  position: relative;
  z-index: 1;
}

.log2{
  margin-bottom: 2em;
}

/* =========================
   BOTONES TELIKO
========================= */
.btn-teliko{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 28px;
  border-radius: var(--radius);

  background: transparent;
  color: #ffffff;

  border: 1.5px solid rgba(255,255,255,0.70);

  font-weight: 600;
  letter-spacing: .3px;
  text-decoration: none;
  line-height: 1;

  transition:
    background-color .22s ease,
    color .22s ease,
    border-color .22s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.btn-teliko:hover{
  background-color: var(--teliko-secondary);
  color: #ffffff;
  border-color: rgba(60,150,171,0.75);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.btn-teliko:focus-visible{
  outline: 3px solid rgba(60,150,171,.95);
  outline-offset: 3px;
}

/* Compacto navbar */
.btn-teliko--sm{
  padding: 9px 18px;
  font-size: .92rem;
}

/* Variante para fondos claros */
.btn-teliko--dark{
  color: var(--teliko-primary);
  border-color: rgba(41,73,96,0.45);
}

.btn-teliko--dark:hover{
  color: #ffffff;
  border-color: rgba(60,150,171,0.75);
}

.btn-teliko i{
  font-size: 0.95em;
  line-height: 1;
}

/* =========================
   SOLUCIONES
========================= */
.section-soluciones{
  background: #ffffff;
}

.sol-card{
  display: block;
  height: 100%;
  padding: 22px 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  text-decoration: none;
  color: var(--teliko-primary);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sol-card:hover{
  transform: translateY(-3px);
  border-color: var(--teliko-secondary);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.sol-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--teliko-secondary-soft);
  color: var(--teliko-primary);
  margin-bottom: 14px;
}

.sol-card__icon i{ font-size: 18px; }

.sol-card__title{
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 8px;
}

.sol-card__text{
  margin: 0 0 14px;
  color: rgba(41,73,96,.78);
  line-height: 1.45;
}

.sol-card__cta{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: rgba(41,73,96,.92);
}

/* =========================
   IMPACTO
========================= */
.section-impacto{
  background:
    radial-gradient(900px 400px at 80% 10%, rgba(60,150,171,.35), transparent 60%),
    linear-gradient(180deg, var(--teliko-primary), var(--teliko-primary-darker));
  padding: 90px 0;
  color: var(--teliko-text);
}

.impacto-title{
  color: rgba(234,243,247,.88);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.impact-item__value{
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(60,150,171,.85);
}

.impact-item__label{
  margin-top: 6px;
  font-size: 1.25rem;
  color: rgba(234,243,247,.92);
  line-height: 1.2;
}

/* =========================
   NOSOTROS
========================= */
.section-nosotros{
  background: #ffffff;
}

.nosotros-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.nosotros-item__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--teliko-secondary-soft);
  color: var(--teliko-primary);
}

.nosotros-item__title{
  font-weight: 800;
  color: var(--teliko-primary);
}

.nosotros-item__text{
  color: rgba(41,73,96,.78);
}

/* Visual con imagen */
.nosotros-visual-image{
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.nosotros-visual-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   CONTACTO
========================= */
.section-contacto{
  padding: 80px 0;
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(60,150,171,.30), transparent 60%),
    linear-gradient(180deg, var(--teliko-primary), var(--teliko-primary-darker));
  color: var(--teliko-text);
}

.contacto-muted{ color: rgba(234,243,247,.82); }

.contact-card{
  height: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 28px 24px 22px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.contact-card__icon{
  width: 86px;
  height: 86px;
  margin: 0 auto 14px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--teliko-secondary);
}

.contact-card__icon i{ font-size: 38px; }

.contact-card__title{
  font-weight: 800;
  margin: 6px 0 10px;
  color: rgba(234,243,247,.96);
}

.contact-card__actions{
  width: 100%;
}

.contact-card__email{
  display: block;
  margin: 0 0 18px;
  color: rgba(234,243,247,.78);
  text-decoration: none;
  word-break: break-word;
}

.contact-card__email:hover{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(60,150,171,.7);
}

.contact-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius);
  background: rgba(60,150,171,.78);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .4px;
  transition: transform .18s ease, filter .18s ease, background-color .18s ease;
}

.contact-card__btn:hover{
  background: var(--teliko-secondary);
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* =========================
   SOPORTE
========================= */
.section-soporte{
  padding: 110px 0;
  color: var(--teliko-text);
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(41,73,96,.86), rgba(23,44,58,.25)),
    url("../img/set.jpg") center / cover no-repeat;

  background-attachment: fixed;
}

@media (max-width: 991px){
  .section-soporte{ background-attachment: scroll; }
}

.soporte-title{
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.soporte-sub{
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  color: rgba(234,243,247,.90);
  line-height: 1.35;
  margin-bottom: 22px;
}

.soporte-sub em{
  font-style: italic;
  color: rgba(234,243,247,.95);
}

/* =========================
   REVEAL
========================= */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   RESPONSIVE FINO
========================= */
@media (max-width: 991px){
  :root{ --header-h: 68px; }

  body{ padding-top: var(--header-h); }

  .navbar .nav-link,
  .navbar .btn-teliko{
    height: 42px; /* touch target */
  }

  .section-impacto{
    padding: 70px 0;
  }

  .section-soporte{
    padding: 90px 0;
  }
}

/* =========================
   BOTÓN FLOTANTE: SUBIR
========================= */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 30px; 
  z-index: 999;

  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);

  background: rgba(41,73,96,.92);
  color: #fff;

  box-shadow: 0 16px 34px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.to-top:hover{
  background: var(--teliko-secondary);
  transform: translateY(0);
}

.to-top:focus-visible{
  outline: 3px solid rgba(60,150,171,.95);
  outline-offset: 3px;
}

.to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .to-top{ transition: none; }
}

/* =========================
   FOOTER (3 FRANJAS)
========================= */

/* el <footer> no debe “pintar” todo, solo sus franjas */
.footer-teliko{
  background: transparent;
  color: #fff;
}

/* FRANJA azul oscuro (links) */
.footer-legal{
  background: rgba(23,44,58,.92); /* azul oscuro */
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-legal__nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  padding: 18px 0;
  margin: 0;
}

.footer-legal__link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .2px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background-color .18s ease, color .18s ease;
}

.footer-legal__link:hover,
.footer-legal__link:focus-visible{
  background: rgba(60,150,171,.28); /* secondary en hover */
  color: #fff;
  outline: none;
}

/* FRANJA turquesa (copyright) */
.footer-bottom{
  background: var(--teliko-secondary);
  padding: 14px 0;
  text-align: center;
}

.footer-copy{
  display: block;
  opacity: .95;
  letter-spacing: .2px;
  margin: 0;
}

/* móvil */
@media (max-width: 575px){
  .footer-legal__nav{
    gap: 10px 14px;
    padding: 14px 0;
  }
  .footer-legal__link{
    font-size: .90rem;
    padding: 6px 10px;
  }
}

.section-soporte{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

/* =========================
   FOOTER (3 FRANJAS)
========================= */
.footer-teliko{
  background: transparent;
  color: #fff;
  margin: 0;
}

.footer-legal{
  background: rgba(23,44,58,.92);
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 0;
}

.footer-legal__nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  padding: 18px 0;
  margin: 0;
}

.footer-legal__link{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .2px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background-color .18s ease, color .18s ease;
}

.footer-legal__link:hover,
.footer-legal__link:focus-visible{
  background: rgba(60,150,171,.28);
  color: #fff;
  outline: none;
}

.footer-bottom{
  background: var(--teliko-secondary);
  padding: 14px 0;
  text-align: center;
  margin: 0;
}

.footer-copy{
  display: block;
  opacity: .95;
  letter-spacing: .2px;
  margin: 0;
}

/* FIX: espacio debajo del botón en sección soporte */
.section-soporte{
  padding-bottom: 72px !important;
}

/* asegura separación real entre el botón y el footer */
.section-soporte .btn,
.section-soporte .btn-teliko{
  margin-bottom: 26px !important;
}

/* por si el contenedor está colapsando márgenes */
.section-soporte .container{
  padding-bottom: 0 !important;
}



/* =========================
   PÁGINAS LEGALES (TELIKO)
   ========================= */

.legal-hero{
  position: relative;
  max-height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 70px; /* espacio bajo el header fijo */
  color: #fff;
}

/* Capa NORMAL (imagen hero normal + overlay) */
.legal-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41,73,96,.78) 0%, rgba(60,150,171,.15) 100%),
    url("../img/Teliko-slider.jpg") center/cover no-repeat;
  transform: scale(1.02);
  z-index: 0;
}

/* Capa HOVER (imagen hero hover + overlay) */
.legal-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41,73,96,.78) 0%, rgba(60,150,171,.15) 100%),
    url("../img/Teliko-slider-hover.jpg") center/cover no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .45s ease;
  z-index: 0;
}

.legal-hero:hover::after{
  opacity: 1;
}

/* Contenido arriba de las capas */
.legal-hero .container{
  position: relative;
  z-index: 1;
}

/* Breadcrumb / título más angosto (no full width) */
.legal-hero__inner{
  max-width: 860px;   /* <- ajusta aquí el ancho que quieras */
}

/* Texto estilo corporativo */
.legal-kicker{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  opacity: .95;
  margin-bottom: 10px;
}

.legal-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4vw, 56px);
  margin: 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .legal-hero::after{ transition: none; }
}

/* =========================
   CONTENIDO LEGAL
   ========================= */

.legal-content{
  padding: 50px 0 50px; /* TOP | SIDES | BOTTOM */
  background: #ffffff;
}

.legal-card{
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 48px 56px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* Ajustes tipográficos */
.legal-card h2{
  margin-top: 42px;
  margin-bottom: 14px;
}

.legal-card p,
.legal-card li{
  line-height: 1.7;
}

.legal-updated{
  margin-top: 48px;
  font-size: 14px;
  opacity: .75;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 16px;
}

/* Responsive */
@media (max-width: 768px){
  .legal-content{
    padding: 60px 0 90px;
  }

  .legal-card{
    padding: 36px 28px;
  }
}

/* =========================
   LEGAL: CONTENIDO REAL
   ========================= */

.legal-doc-head {
  margin-bottom: 26px;
}

.legal-doc-eyebrow {
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 14px;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--teliko-primary);
  opacity: .85;
}

.legal-doc-subtitle {
  margin: 0;
  color: rgba(0,0,0,.72);
}

.legal-body h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.legal-body p,
.legal-body li {
  line-height: 1.75;
  color: rgba(0,0,0,.82);
}

.legal-body ol,
.legal-body ul {
  padding-left: 20px;
}

.legal-note {
  margin-top: 12px;
  color: rgba(0,0,0,.7);
}

.legal-divider {
  opacity: .12;
  margin: 34px 0;
}

.legal-cta-title {
  margin-top: 0;
}

/* Tablas: responsivas y legibles */
.legal-table .table {
  margin: 14px 0 0;
  background: #fff;
}

.legal-table thead th {
  background: rgba(41,73,96,.06);
  font-weight: 800;
  border-color: rgba(0,0,0,.08);
}

.legal-table td,
.legal-table th {
  border-color: rgba(0,0,0,.08);
  vertical-align: top;
}

/* Botón TELIKO (sin cambiar colores corporativos) */
.btn-teliko-primary {
  background: var(--teliko-primary);
  border: 1px solid rgba(0,0,0,.06);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.btn-teliko-primary:hover {
  background: var(--teliko-secondary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

.btn-teliko-primary:focus-visible {
  outline: 3px solid rgba(60,150,171,.35);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .legal-body h3 { margin-top: 28px; }
  .btn-teliko-primary { width: 100%; justify-content: center; }
}

.just{text-align: justify;}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 1.5rem;
        color: var(--teliko-secondary);
    }
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2.0rem;
        color: var(--teliko-primary);
    }
}

@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.20rem;
        color: var(--teliko-primary-dark);
    }
}

.legal-title {
    font-weight: 500;
    letter-spacing: -0.02em;
    font-size: clamp(34px, 4vw, 56px);
    margin: 0;
    color: white;
}

/* =========================
   TABLA DEFINICIONES (LEGAL)
   ========================= */

.legal-table--defs .table{
  border-radius: 14px;
  overflow: hidden;           /* para redondeo real */
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}

.legal-table--defs thead th{
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(41,73,96,.10), rgba(60,150,171,.10));
  color: rgba(0,0,0,.88);
  border-color: rgba(0,0,0,.08);
}

.legal-table--defs tbody tr:nth-child(even){
  background: rgba(41,73,96,.03);
}

.legal-table--defs td,
.legal-table--defs th{
  border-color: rgba(0,0,0,.08);
  padding: 14px 14px;
  vertical-align: top;
}

/* Columnas */
.legal-table--defs .col-no{
  width: 72px;
  text-align: center;
  font-weight: 800;
  color: rgba(0,0,0,.72);
  white-space: nowrap;
}

.legal-table--defs .col-concepto{
  min-width: 220px;
}

/* Mejor lectura en celdas largas */
.legal-table--defs td{
  line-height: 1.6;
}

/* Ajustes móviles */
@media (max-width: 768px){
  .legal-table--defs td,
  .legal-table--defs th{
    padding: 12px 12px;
  }

  .legal-table--defs .col-concepto{
    min-width: 200px;
  }
}

/* Compare table: Permitido vs No permitido */
.legal-table--compare {
  width: 100%;
  table-layout: fixed; /* evita que una columna “empuje” a la otra */
}

.legal-table--compare th,
.legal-table--compare td {
  vertical-align: top; /* evita el “centro” raro del contenido */
}

.legal-table--compare td {
  word-break: normal;
  overflow-wrap: anywhere; /* evita desbordes en pantallas chicas */
}

/* ================================
   Tabla comparativa (Permitido / No permitido)
================================ */

.legal-table--compare {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

/* Encabezado */
.legal-table--compare thead th {
  background-color: var(--teliko-primary);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 14px 20px; /* ← separa columnas */
}

/* Celdas */
.legal-table--compare td {
  vertical-align: top;
  padding: 16px 20px; /* ← ESTO evita que se vean pegadas */
  line-height: 1.6;
  overflow-wrap: anywhere;
}

/* Separador visual entre columnas */
.legal-table--compare th + th,
.legal-table--compare td + td {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* =====================================================
   Regla GLOBAL: THEAD en tablas legales
   ===================================================== */

.legal-table thead th {
  background-color: var(--teliko-primary);
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
}

.legal-hero {
  min-height: 200px;            /* base segura */
  padding: 80px 0 72px;         /* espacio vertical real */
  display: flex;
  align-items: center;
}

.legal-title {
  line-height: 1.2;
  white-space: normal;
  word-break: normal;
  max-width: 100%;
}

/* Forzar una línea SOLO en desktop, ajustando el tamaño máximo */
@media (min-width: 992px) {
  .legal-title {
    font-size: clamp(32px, 3.2vw, 48px);
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .legal-title {
    font-size: clamp(32px, 3.2vw, 48px);
  }
}

.soporte-title {filter: drop-shadow(2px 4px 6px black);}
.hero__kicker {color: white;}
h1.hero__title.mb-2 {color: #bdbdbd;}
h3.hero__subtitle.mb-4 {color: var(--teliko-secondary);}

h2 > strong {color: white !important;} 

.soporte-sub > strong {color: var(--teliko-secondary) !important}
.white{color: white !important;}

/* ================================
   Nosotros – Hero (imagen real)
================================ */
.about-hero {
  position: relative;
  padding: 140px 0 100px;
  color: #fff;
  background-image: url("../img/Teliko-solutions-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate; /* clave para blend-mode consistente */
}


.about-hero__inner {
  max-width: 980px;
}

.about-hero__kicker {
  margin: 0 0 14px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-hero__title {
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  color: #ffffff;
}

.about-hero__lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.about-hero > .container {
  position: relative;
  z-index: 2;
}


/* =====================================
   Nosotros – Overlay de legibilidad
===================================== */

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.50) 35%,
    rgba(0, 0, 0, 0.18) 60%,
    rgba(0, 0, 0, 0.0) 100%
  );
  z-index: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(190, 20, 35, 0.80); /* un poco más vivo */
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2; /* arriba del negro */
}

.about-hero:hover::after {
  opacity: 1;
}

.about-hero > .container {
  position: relative;
  z-index: 3; /* texto siempre arriba */
}

/* ================================
   Nosotros – ¿Qué hacemos?
================================ */
.about-what {
  padding: 90px 0;
  background: #fff;
}

.about-what__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 46px;
}

.about-what__title {
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 2.8vw, 46px);
  color: var(--teliko-primary);
}

.about-what__lead {
  margin: 0;
  line-height: 1.9;
  font-size: 1.05rem;
  color: rgba(41, 73, 96, 0.92);
}

/* Grid 2 columnas (desktop) */
.about-what__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 56px;
  align-items: start;
}

/* Cards métricas */
.about-metric {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.about-metric__icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(60, 150, 171, 0.14);
  border: 2px solid rgba(60, 150, 171, 0.45);
  color: rgba(41, 73, 96, 0.95);
}

.about-metric__icon i {
  font-size: 28px;
}

.about-metric__text {
  color: rgba(41, 73, 96, 0.95);
}

.about-metric__line {
  line-height: 1.25;
  font-size: 1.55rem;
  font-weight: 500;
}

.about-metric__sub {
  margin-top: 6px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(41, 73, 96, 0.85);
}

.about-metric__accent {
  color: var(--teliko-secondary);
  font-weight: 700;
}

.about-metric__line {
  color: var(--teliko-primary);
}

.about-metric__em {
  font-weight: 700;
}

.about-metric__muted {
  font-size: 0.95rem;
  color: rgba(41, 73, 96, 0.78);
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-what__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-metric__line {
    font-size: 1.35rem;
  }
}

/* ================================
   Nosotros – Mensaje clave (hover)
================================ */
.about-statement {
  position: relative;
  padding: 110px 0;
  color: #fff;

  /* Imagen base */
  background-image: url("../img/Teliko-cita-fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  isolation: isolate;
}

/* Overlay oscuro para legibilidad */
.about-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Imagen hover */
.about-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/Teliko-cita-fondo-hover.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

/* Hover solo en desktop */
@media (hover: hover) and (pointer: fine) {
  .about-statement:hover::after {
    opacity: 1;
  }
}

.about-statement .container {
  position: relative;
  z-index: 3;
}

/* Grid */
.about-statement__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Texto izquierda */
.about-statement__quote {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
}

/* Texto derecha */
.about-statement__text {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-statement {
    padding: 80px 0;
  }

  .about-statement__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-statement__quote {
    font-size: 2rem;
  }
}

/* ================================
   Nosotros – Propósito / Visión
================================ */
.about-purpose {
  padding: 90px 0 0;
  background: #fff;
}

.about-purpose__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.about-purpose__title {
  margin: 0 0 26px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--teliko-primary);
  line-height: 1.25;
}

.about-purpose__text {
  margin: 0;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(41, 73, 96, 0.92);
}

.about-purpose__media {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}

.about-purpose__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================
   Nosotros – Cards (Misión/Visión/Valores)
================================ */
.about-cards {
  padding: 70px 0 90px;
  background: #fff;
}

.about-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
  margin-top: 40px;
}

.about-card__media {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
}

.about-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.about-card__title {
  margin: 18px 0 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teliko-primary);
  font-size: 1.05rem;
}

.about-card__text {
  margin: 0;
  line-height: 1.75;
  color: rgba(41, 73, 96, 0.90);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-purpose__grid {
    grid-template-columns: 1fr;
  }

  .about-cards__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}


/* ================================
   Nosotros – Nuestro Impacto
================================ */
.impact {
  padding: 90px 0;
  background: #f3f5f7; /* gris suave */
}

.impact__title {
  text-align: center;
  margin: 0 0 46px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(28px, 2.8vw, 46px);
  color: var(--teliko-primary);
}

.impact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.impact__copy p {
  margin: 0;
  max-width: 560px;
  line-height: 1.95;
  font-size: 1.05rem;
  color: rgba(41, 73, 96, 0.92);
}

/* Barras */
.impact-bar {
  margin-bottom: 34px;
}

.impact-bar:last-child {
  margin-bottom: 0;
}

.impact-bar__label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(41, 73, 96, 0.85);
}

.impact-bar__track {
  height: 34px;
  border-radius: 6px;
  background: rgba(41, 73, 96, 0.10);
}

.impact-bar__fill {
  width: 0%;              /* ← ESTADO INICIAL */
  height: 100%;
  border-radius: 6px;
  transform: translateZ(0);
  transition: width 1.2s ease;
}


.impact__bars .impact-bar:last-child .impact-bar__fill {
  background: #3b4650; /* gris oscuro neutro */
}

/* Colores corporativos */
.impact-bar__fill--primary {
  background: var(--teliko-primary);
}

.impact-bar__fill--secondary {
  background: var(--teliko-secondary);
}

/* Estilo “barra sólida” (la del medio se ve más contundente en el original) */
.impact-bar--solid .impact-bar__track {
  height: 34px;
  border-radius: 6px;
  background: rgba(41, 73, 96, 0.10);
}

.impact-bar--solid .impact-bar__fill {
  border-radius: 6px;
}

/* Cuando el bloque entra en viewport, se aplican los widths */
.impact.is-visible .impact-bar__fill {
  width: var(--p, 0%);
}

/* Accesibilidad: respetar reduce motion */
@media (prefers-reduced-motion: reduce) {
  .impact-bar__fill {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .impact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ================================
   Nosotros – Numerología
================================ */
.numerology {
  padding: 90px 0;
  background: #fff;
}

.numerology__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 46px;
  align-items: stretch;
}

.numerology__title {
  margin: 0 0 22px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--teliko-primary);
}

.numerology__text {
  margin: 0 0 34px;
  line-height: 1.9;
  font-size: 1.05rem;
  color: rgba(41, 73, 96, 0.92);
  max-width: 640px;
}

.numerology__stats {
  display: grid;
  gap: 26px;
  max-width: 680px;
}

.num-stat {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  align-items: center;
}

.num-stat__value {
  display: flex;
  flex-direction: column;  /* ← baja la unidad debajo */
  align-items: flex-start;
  gap: 6px;
  color: var(--teliko-primary);
}

.num-counter {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
  color: var(--teliko-primary);
}

.num-stat__unit {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(41, 73, 96, 0.85);
}

.num-stat__ribbon {
  position: relative;
  padding: 18px 18px 18px 22px;
  background: var(--teliko-secondary);
  color: #fff;
  border-radius: 2px;
  line-height: 1.55;
  font-size: 1rem;
}

.num-stat__ribbon {
  --notch: 28px;                 /* tamaño del pico (igual en ambos) */
  padding: 18px 18px 18px calc(22px + var(--notch));
  background: var(--teliko-secondary);
  color: #fff;
  border-radius: 2px;
  line-height: 1.55;
  font-size: 1rem;

  /* pico integrado, siempre idéntico */
  clip-path: polygon(
    var(--notch) 0%,
    100% 0%,
    100% 100%,
    var(--notch) 100%,
    0% 50%
  );
}


/* Imagen derecha */
.numerology__media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}

.numerology__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
  .numerology__grid {
    grid-template-columns: 1fr;
  }

  .num-stat {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Nosotros – Presencia global (hover)
================================ */
.about-global {
  position: relative;
  padding: 110px 0;
  color: #fff;

  background-image: url("../img/Teliko-6-sedes.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  isolation: isolate;
  overflow: hidden;
}

/* Overlay base (legibilidad) */
.about-global::before {
  content: "";
  position: absolute;
  inset: 0;
    background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.62) 50%,
    rgba(0, 0, 0, 0.78) 100%
  );
  transition: background 1.8s ease-out;
  z-index: 1;
}

.about-global::after {
  content: "";
  position: absolute;
  inset: 0;

  /* tinte secondary SIN blend-mode (no apaga el texto) */
  background: radial-gradient(
    circle at center,
    rgba(60, 150, 171, 0.22) 0%,
    rgba(0, 0, 0, 0.0) 55%,
    rgba(0, 0, 0, 0.35) 100%
  );

  opacity: 0;
  transition: opacity 1.6s ease-out;
  z-index: 2;

  pointer-events: none;
}


.about-global .container {
  position: relative;
  z-index: 3;
}

@media (hover: hover) and (pointer: fine) {
  .about-global:hover::after {
    opacity: 1;
    transition-duration: 1.1s;
  }

  .about-global:hover::before {
    background: rgba(0, 0, 0, 0.78);
    transition-duration: 1.1s;
  }
}


/* ================================
   Nosotros – Presencia global
================================ */
.about-global {
  position: relative;
  padding: 110px 0;
  background: url("../img/Teliko-6-sedes.jpg") center / cover no-repeat;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

/* Overlay oscuro base */
.about-global::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.62) 50%,
    rgba(0,0,0,0.78) 100%
  );
  z-index: 1;
}

/* Glow secondary al hover */
.about-global::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(60,150,171,0.28) 0%,
    rgba(0,0,0,0.0) 55%,
    rgba(0,0,0,0.35) 100%
  );
  opacity: 0;
  transition: opacity 1.8s ease;
  z-index: 2;
  pointer-events: none;
}

@media (hover: hover) {
  .about-global:hover::after {
    opacity: 1;
  }
}

/* Contenido */
.about-global .container {
  position: relative;
  z-index: 3;
}

.about-global__content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* MISMO tamaño exacto */
.about-global__lead,
.about-global__highlight {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
}

.about-global__lead {
  margin-bottom: 28px;
  font-weight: 400;
}

.about-global__highlight {
  font-weight: 600;
}

/* 🔥 AQUÍ está la clave */
.about-global .text-secondary {
  color: var(--teliko-secondary);
  font-weight: inherit;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65);
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-global {
    padding: 90px 0;
  }
}

/* FORCE: Secondary visible sobre imagen */
.about-global .text-secondary {
  color: var(--teliko-secondary) !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65);
}

.about-global__lead,
.about-global__highlight {
  color: rgba(255, 255, 255, 0.92) !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* ================================
   Nosotros – México (2 columnas)
   (sin morado, solo corporativos)
================================ */
.about-mx {
  padding: 90px 0;
  background: #fff;
}

.about-mx__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-mx__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.about-mx__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 520px;
}

.about-mx__title {
  margin: 0 0 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--teliko-primary);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.25;
}

.about-mx__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
  margin: 0 0 28px;
}

.mx-stat__value {
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mx-stat__value--secondary {
  color: var(--teliko-secondary);
}

.mx-stat__value--primary {
  color: var(--teliko-primary);
}

.mx-stat__label {
  margin-top: 10px;
  color: #5b6b78;
  font-size: 0.98rem;
  line-height: 1.35;
  max-width: 28ch;
}

.about-mx__body p {
  margin: 0 0 16px;
  color: #4b5a66;
  line-height: 1.7;
}

.about-mx__body strong {
  color: var(--teliko-primary);
  font-weight: 600;
}

.about-mx__footnote {
  margin-top: 12px;
  color: #7a8894;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-mx {
    padding: 70px 0;
  }

  .about-mx__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-mx__media img {
    min-height: 320px;
  }

  .about-mx__stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px 18px;
  }

  .mx-stat__label {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .about-mx__stats {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Nosotros – Soporte experto 24/7 (hover)
================================ */
.about-need {
  position: relative;
  padding: 95px 0;
  color: #fff;

  background-image: url("../img/Teliko-banner-Soporte-de-expertos-24-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  isolation: isolate;
  overflow: hidden;
}

/* Overlay base */
.about-need::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );

  transition: background 1.6s ease-out;
}

/* Tinte corporativo al hover */
.about-need::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background: radial-gradient(
    circle at 65% 35%,
    color-mix(in srgb, var(--teliko-secondary) 35%, transparent),
    rgba(0, 0, 0, 0.55)
  );

  opacity: 0;
  transition: opacity 1.8s ease-out; /* apagado lento */
  pointer-events: none;
}

.about-need .container {
  position: relative;
  z-index: 3;
}

/* Hover */
@media (hover: hover) and (pointer: fine) {
  .about-need:hover::after {
    opacity: 1;
    transition-duration: 0.9s; /* encendido */
  }

  .about-need:hover::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.45) 100%
    );
  }
}

/* ================================
   Contenido
================================ */
.about-need__content {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.about-need__text {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

/* Strong base (no cambia tamaño) */
.about-need__text strong {
  font-weight: 700;
  color: #fff;
}

/* Secondary corporativo */
.about-need__text .is-secondary {
  color: var(--teliko-secondary);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-need {
    padding: 72px 0;
  }
}

/* Texto base */
.about-need__text {
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

/* Strong NO cambia color */
.about-need__text strong {
  color: inherit;
  font-weight: 700;
}

/* 🔥 SECONDARY FORZADO */
.about-need__text .is-secondary {
  color: var(--teliko-secondary) !important;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  opacity: 1 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

/* Previene que overlays o herencias lo “apaguen” */
.about-need__text span,
.about-need__text em {
  color: inherit;
  opacity: 1;
}

.about-need__text{
  color: rgba(255,255,255,.92);
}

.about-need__text .is-secondary{
  color: var(--teliko-secondary) !important;
  opacity: 1 !important;
  font: inherit;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}

.sec{color: var(--teliko-secondary) !important;}

/* =========================
   Hero — Soluciones
========================= */
.solutions-hero{
  position: relative;
  min-height: clamp(520px, 70vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.solutions-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/Teliko-Soluciones-en-ciberseguridad.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1.8s ease, filter 1.8s ease;
  filter: saturate(1.02) contrast(1.02);
}

.solutions-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Oscurece más el área izquierda y media */
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.90) 0%,
      rgba(0,0,0,.85) 45%,
      rgba(0,0,0,.45) 100%);
}

.solutions-hero__content{
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 90px) 0;
  max-width: 980px;
}

.solutions-hero__eyebrow{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.9);
  opacity: .9;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.solutions-hero__title{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.9);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.05;
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.solutions-hero__lead{
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.01em;
  max-width: 78ch;
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.solutions-hero__actions{
  margin-top: 22px;
}

/* Botón: branding Teliko (secondary como azul visible) */
.solutions-hero__btn{
  --_padY: 12px;
  --_padX: 22px;

  padding: var(--_padY) var(--_padX);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.9);
  background: color-mix(in srgb, var(--teliko-secondary) 26%, transparent);
  border: 1px solid color-mix(in srgb, var(--teliko-secondary) 60%, transparent);

  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform 1.2s ease, background 1.0s ease, border-color 1.0s ease;
}

.solutions-hero__btn:hover{
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--teliko-secondary) 100%, transparent);
  border-color: color-mix(in srgb, var(--teliko-secondary) 78%, transparent);
  color: #fff;
}


/* Hover suave del hero (encendido) */
.solutions-hero:hover .solutions-hero__bg{
  transform: scale(1.06);
  filter: saturate(1.10) contrast(1.06);
}

.solutions-hero__content{
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 90px) 0;
  max-width: 980px;
}

/* =========================
   Grid — Soluciones en Ciberseguridad
========================= */
.solutions-grid{
  padding: clamp(56px, 7vw, 92px) 0;
  background: #fff;
}

.solutions-grid__header{
  text-align: center;
  margin-bottom: clamp(26px, 3.2vw, 44px);
}

.solutions-grid__title{
  margin: 0;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #213547;
  font-size: clamp(24px, 2.4vw, 40px);
}

.solutions-card{
  text-align: center;
  padding: 18px 8px 10px;
}

.solutions-card__icon{
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}

.solutions-card__icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.solutions-card__title{
  margin: 0 0 10px;
  font-weight: 500;
  color: #2b3a4a;
  font-size: 18px;
  line-height: 1.35;
}

.solutions-card__text{
  margin: 0 auto 16px;
  max-width: 48ch;

  /* tamaño normal de lectura */
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;

  color: #6b7785;
  letter-spacing: 0.01em;
}


/* "Más" como link fino con subrayado */
.solutions-card__more{
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: var(--teliko-secondary);
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 8px;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.solutions-card__more::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 44px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--teliko-secondary);
  opacity: .55;
  transition: opacity 1.2s ease, width 1.2s ease;
}

.solutions-card__more:hover{
  transform: translateY(-1px);
  opacity: 1;
}

.solutions-card__more:hover::after{
  opacity: .9;
  width: 60px;
}

/* aire vertical similar a referencia */
@media (min-width: 992px){
  .solutions-card{
    padding-top: 26px;
    padding-bottom: 18px;
  }
}

/* Iconos Font Awesome dentro del grid */
.solutions-card__icon{
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;

  /* fondo muy sutil para que “respire” sin salirse del branding */
  background: rgba(0,0,0,.02);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.solutions-card__icon i{
  font-size: 52px;
  line-height: 1;
  color: var(--teliko-secondary);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}

/* hover suave opcional (no cambia color, solo “sube”) */
.solutions-card:hover .solutions-card__icon{
  transform: translateY(-2px);
  transition: transform 1.2s ease;
}

/* =========================
   Somos especialistas + métricas
========================= */
.specialists{
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0;
  background: var(--teliko-primary);
  color: rgba(255,255,255,0.9);
  overflow: hidden;
  isolation: isolate;
}

/* fondo con degradado corporativo (no morado) */
.specialists__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 18% 22%,
      rgba(255,255,255,.06) 0%,
      rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 82% 30%,
      color-mix(in srgb, var(--teliko-secondary) 18%, transparent) 0%,
      rgba(255,255,255,0) 62%),
    linear-gradient(180deg,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.30) 100%);
}

.specialists .container{
  position: relative;
  z-index: 1;
}

.specialists__header{
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 40px);
}

.specialists__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-size: clamp(22px, 2.4vw, 34px);
  text-shadow: 0 10px 26px rgba(0,0,0,.55);
}

/* Imagen */
.specialists__media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
  background: rgba(0,0,0,.16);
}

.specialists__media img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
}

/* Lista */
.specialists-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.specialists-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;

  padding: 14px 14px;
  border-radius: 14px;

  /* + contraste real */
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.10);

  box-shadow:
    0 14px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.06);
}


.specialists-item__ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.specialists-item__ico i{
  font-size: 18px;
  color: var(--teliko-secondary);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.specialists-item__copy{
  color: rgba(255,255,255,0.9);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  letter-spacing: .01em;

  /* legibilidad alta */
  text-shadow:
    0 10px 24px rgba(0,0,0,.55),
    0 2px 10px rgba(0,0,0,.40);
}


/* strong NO cambia tamaño: solo peso (regla de jerarquía) */
.specialists-item__copy strong{
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}

/* Métricas */
.specialists-stats{
  margin-top: clamp(30px, 4vw, 52px);
  padding-top: clamp(18px, 2.2vw, 28px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.stat-card{
  height: 100%;
  text-align: center;
  padding: 18px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}

.stat-card__num{
  font-weight: 300;
  letter-spacing: .02em;
  color: color-mix(in srgb, var(--teliko-secondary) 78%, rgba(255,255,255,0.9));
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: 1;
  text-shadow: 0 12px 34px rgba(0,0,0,.45);
}

.stat-card__label{
  margin-top: 10px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.45;
  letter-spacing: .01em;
  text-shadow: 0 10px 24px rgba(0,0,0,.40);
}


/* ===== Specialists: que no se meta bajo el header fijo ===== */
.specialists{
  scroll-margin-top: 96px; /* ajusta si tu header es más alto */
  padding-top: clamp(42px, 5vw, 70px);
}

/* ===== En desktop: compactar vertical sin perder aire ===== */
@media (min-width: 992px){
  .specialists{
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .specialists__header{
    margin-bottom: 18px;
  }

  .specialists__main{
    margin-top: 0;
  }

  .specialists-list{
    gap: 12px;
  }

  .specialists-item{
    padding: 12px 12px;
  }

  .specialists-stats{
    margin-top: 22px;
    padding-top: 18px;
  }

  .stat-card__num{
    font-size: clamp(46px, 5.2vw, 78px);
  }
}

.stat-card{
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.stat-card__label{
  margin-top: 8px;
  line-height: 1.35;
}

/* Centrado real del bloque principal (imagen + lista) */
.specialists__main{
  max-width: 1180px;          /* ancho lógico del conjunto */
  margin-left: auto;
  margin-right: auto;
}

/* Evita que la lista "se estire" de más y se vea corrida */
@media (min-width: 992px){
  .specialists-list{
    max-width: 560px;
    margin-left: auto;        /* la lista se ancla al borde interno, pero dentro del conjunto centrado */
  }

  .specialists__media{
    max-width: 560px;
    margin-right: auto;
  }
}

/* Banda de métricas: centrado consistente */
.specialists-stats .row{
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* Misma geometría en cada tarjeta */
.stat-card{
  display: grid;
  align-content: center;
  justify-items: center;
}

/* Mantén el texto de label en un ancho controlado para que no "jale" la percepción */
.stat-card__label{
  max-width: 22ch;            /* fuerza simetría visual */
  text-align: center;
}

.specialists .container{
  padding-left: clamp(16px, 3vw, 24px);
  padding-right: clamp(16px, 3vw, 24px);
}


/* =========================
   Soluciones personalizadas
========================= */
.custom-solutions{
  padding: clamp(56px, 7vw, 92px) 0;
  background: #fff; /* la sección es blanca, como la referencia */
}

/* COPY */
.custom-solutions__copy{
  max-width: 620px;
}

.custom-solutions__title{
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #203242;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.15;
}

.custom-solutions__text{
  margin: 0 0 26px;
  color: #5f6e7c;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.85;
  letter-spacing: .01em;
  max-width: 62ch;
}

/* Botón: outline corporativo + hover secondary sólido */
.custom-solutions__btn{
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  background: transparent;
  border: 2px solid color-mix(in srgb, var(--teliko-secondary) 70%, #1d2a33);
  color: #1d2a33;

  transition: background 1.2s ease, color 1.2s ease, transform 1.2s ease, border-color 1.2s ease;
}

.custom-solutions__btn:hover{
  background: var(--teliko-secondary);
  border-color: var(--teliko-secondary);
  color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

/* VISUAL: sin placas, sin sombras rectangulares */
.custom-solutions__visual{
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: transparent;
}

/* PNG REAL como <img> para que la sombra respete transparencia */
.custom-solutions__png{
  width: min(560px, 100%);
  height: auto;
  display: block;

  /* ESTA es la clave: drop-shadow respeta alfa */
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.18));
}

/* Ajuste fino en desktop para que se vea similar a la referencia */
@media (min-width: 992px){
  .custom-solutions__visual{
    justify-items: start; /* lo ancla un poco a la izquierda como el ejemplo */
  }
  .custom-solutions__png{
    width: 560px;
    transform: translateX(-18px);
  }
}

/* Mobile */
@media (max-width: 576px){
  .custom-solutions__png{
    width: min(520px, 100%);
    transform: none;
  }
  .custom-solutions__title{
    letter-spacing: .04em;
  }
}

/* =========================
   Alta velocidad (HV)
========================= */
.hv-hero{
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0;
  color: rgba(255,255,255,0.9);
  overflow: hidden;
  background: var(--teliko-primary);
  isolation: isolate;
}

/* fondo con imagen del hero + overlay negro para legibilidad */
.hv-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;

  /* capa negra real para legibilidad + acento secondary */
  background:
    linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.68) 100%),
    radial-gradient(900px 520px at 18% 30%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 82% 24%, color-mix(in srgb, var(--teliko-secondary) 18%, transparent) 0%, rgba(255,255,255,0) 62%),
    url("../img/Teliko-Soluciones-Deteccion-y-Respuesta-de-Alta-Velocidad.jpg");

  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.hv-hero .container{ position: relative; z-index: 1; }

.hv-hero__kicker{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 12px;
  opacity: .95;
  text-transform: uppercase;
}

.hv-hero__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  text-shadow: 0 12px 40px rgba(0,0,0,.55);
}

.hv-hero__lead{
  margin: 0 0 22px;
  max-width: 60ch;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

/* Botones HV */
.hv-hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

.hv-btn{
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background 1.2s ease, color 1.2s ease, transform 1.2s ease, border-color 1.2s ease;
}

.hv-btn--primary{
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: rgba(255,255,255,0.9);
}

.hv-btn--primary:hover{
  background: var(--teliko-secondary);
  border-color: var(--teliko-secondary);
  color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.hv-btn--ghost{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,0.9);
}

.hv-btn--ghost:hover{
  background: rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

/* Badges */
.hv-hero__badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.hv-badge{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.hv-badge i{
  color: var(--teliko-secondary);
  font-size: 18px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}

.hv-badge span{
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: .01em;
}

/* Media */
.hv-hero__media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.hv-hero__media img{
  width: 100%;
  height: auto;
  display: block;
}

/* Secciones */
.hv-section{
  padding: clamp(56px, 7vw, 92px) 0;
  background: #fff;
}

.hv-section__header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(18px, 2.4vw, 32px);
}

.hv-section__title{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #203242;
  font-size: clamp(22px, 2.2vw, 34px);
}

.hv-section__subtitle{
  margin: 0;
  color: #5f6e7c;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.8;
}

/* Cards */
.hv-card{
  height: 100%;
  text-align: left;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.hv-card__icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
  margin-bottom: 12px;
}

.hv-card__icon i{
  color: var(--teliko-secondary);
  font-size: 18px;
}

.hv-card__title{
  margin: 0 0 8px;
  font-weight: 700;
  color: #203242;
  font-size: 18px;
  line-height: 1.3;
}

.hv-card__text{
  margin: 0;
  color: #5f6e7c;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
}

/* Expertos block */
.hv-experts{
  padding: clamp(56px, 7vw, 92px) 0;
  background: var(--teliko-primary);
  color: rgba(255,255,255,0.9);
}

.hv-experts__media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.hv-experts__media img{
  width: 100%;
  height: auto;
  display: block;
}

.hv-experts__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: clamp(22px, 2.2vw, 34px);
  text-shadow: 0 12px 34px rgba(0,0,0,.45);
}

.hv-experts__text{
  margin: 0 0 16px;
  max-width: 62ch;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
  text-shadow: 0 10px 28px rgba(0,0,0,.40);
}

/* Lista con iconos */
.hv-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.hv-list li{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.12);
}

.hv-list i{
  color: var(--teliko-secondary);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px){
  .hv-hero__badges{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Plan de Ciberseguridad
========================= */
.hv-plan{
  padding: clamp(64px, 7vw, 96px) 0;
  background: #f3f3f3;
}

/* Texto izquierdo */
.hv-plan__kicker{
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 12px;
  color: #5f6e7c;
}

.hv-plan__title{
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 42px);
  color: #203242;
}

.hv-plan__lead{
  margin: 0 0 18px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.8;
  color: #3f4f5e;
  max-width: 80ch;
  text-align: justify;
}

.hv-plan__text{
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  color: #3f4f5e;
  max-width: 80ch;
  text-align: justify;
}

/* Rail derecho */
.hv-plan__rail{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

/* Items */
.hv-plan__item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: flex-start;

  padding: 18px 20px;
  border-radius: 16px;

  background: #ffffff;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}

/* Icono circular */
.hv-plan__icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: var(--teliko-secondary);
  color: rgba(255,255,255,0.9);
  font-size: 22px;
}

/* Contenido */
.hv-plan__content h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #203242;
}

.hv-plan__content p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5f6e7c;
}

/* Mobile */
@media (max-width: 768px){
  .hv-plan__item{
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .hv-plan__icon{
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* =========================
   Banda informativa con imagen
========================= */
.hv-band{
  position: relative;
  padding: clamp(56px, 6vw, 96px) 0;

  /* IMAGEN */
  background-image: url("/assets/img/Teliko-cita-fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* Overlay oscuro (ajustado para NO matar la imagen) */
.hv-band::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 28, 43, 0.65),
    rgba(13, 28, 43, 0.55)
  );
  z-index: 0;
  transition: background 0.6s ease;
}

/* Hover elegante */
.hv-band:hover::before{
  background: linear-gradient(
    180deg,
    rgba(13, 28, 43, 0.45),
    rgba(13, 28, 43, 0.35)
  );
}

/* Contenido */
.hv-band .container{
  position: relative;
  z-index: 1;
}

.hv-band__text{
  margin: 0 auto;
  max-width: 1100px;

  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.85;

  color: rgba(255,255,255,0.95);
  text-shadow: 0 10px 25px rgba(0,0,0,.6);
}

.imgint{max-height: 170px; width: 100%; object-fit: cover; border-radius: 10px;}

/* =========================
   Certificaciones — Versión sólida uniforme
========================= */

#cert-intro{
  background:#f6f7f9;
  padding-top:90px;
  padding-bottom:110px;
}

/* ===== Cards descripción ===== */

.cert-info{
  position:relative;
  background:#ffffff;
  border-radius:16px;
  padding:32px 24px;
  min-height:170px;              /* MISMO TAMAÑO */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow:0 25px 50px rgba(0,0,0,0.12);  /* sombra más fuerte */
  transition:all .35s ease;
}

.cert-info:hover{
  transform:translateY(-6px);
  box-shadow:0 35px 70px rgba(0,0,0,0.18);
}

.cert-info p{
  font-size:1rem;
  line-height:1.6;
  font-weight:600;
  color:#294960;
  margin:0;
}

/* Barra superior uniforme azul Teliko */
.cert-topline{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  height:5px;
  width:75%;
  border-radius:0 0 8px 8px;
  background:#172c3a !important;   /* elimina morado */
}

/* ===== Cards tipo botón ===== */

.cert-btn{
  position:relative;
  background:#ffffff;
  border-radius:14px;
  padding:22px;
  min-height:70px;                /* MISMO TAMAÑO */
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 40px rgba(0,0,0,0.10);
  transition:all .3s ease;
}

.cert-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 55px rgba(0,0,0,0.16);
}

.cert-btn span{
  font-weight:700;
  letter-spacing:.05em;
  font-size:.95rem;
  color:#294960;
}

/* Separación limpia entre filas */
#cert-intro .row + .row{
  margin-top:50px;
}

/* =========================
   Nuestro Equipo — Estilo distinto
========================= */

.team-section{
  padding:100px 0;
  background:#ffffff;
}

.team-card{
  background:#f8fafc;
  border:1px solid rgba(0,0,0,0.05);
  border-radius:14px;
  padding:22px 18px;
  font-weight:600;
  color:#294960;
  font-size:.95rem;
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:all .35s ease;
  box-shadow:0 8px 18px rgba(0,0,0,0.05);
}

.team-card:hover{
  background:#ffffff;
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  border-color:#3c96ab;
}



/* =========================
   CSIRT Hero — Fondo + Imagen Lateral
========================= */

.csirt-hero{
  position:relative;
  background:#0f2e3a;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:100px 0 80px;
  color:#ffffff;
  overflow:hidden;
}

.csirt-overlay{
  position:absolute;
  inset:0;
  /* overlay para que el texto sea legible pero sin “apagar” el fondo */
  background:linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0,0,0,0.78) 45%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.35) 100%
  );
  z-index:1;
}

.csirt-hero .container{
  position:relative;
  z-index:2;
}

/* Título */
.csirt-title{
  font-size:clamp(2.5rem,4vw,3.2rem);
  font-weight:900;
  letter-spacing:.05em;
  margin-bottom:30px;
  text-transform:uppercase;
  color:#3c96ab;
  text-shadow:0 10px 28px rgba(0,0,0,0.45);
}

/* Caja */
.csirt-box{
  background:rgba(0,0,0,0.58);
  padding:30px 35px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:0 25px 55px rgba(0,0,0,0.45);
  max-width:520px;
}

.csirt-box p{
  font-size:1.05rem;
  margin-bottom:16px;
  line-height:1.6;
  color:#ffffff; /* info en blanco */
}

/* Labels en azul claro */
.csirt-box strong{
  color:#3c96ab !important;
  font-weight:800;
  letter-spacing:.04em;
}

/* Valores/enlaces en blanco */
.csirt-box a{
  color:#ffffff;
  font-weight:700;
  text-decoration:none;
  transition:all .3s ease;
}

.csirt-box a:hover{
  color:#3c96ab;
  text-decoration:underline;
}

/* Imagen derecha */
.csirt-hero-img{
  max-height:380px;
  width:auto;
  border-radius:18px;
  box-shadow:0 30px 65px rgba(0,0,0,0.50);
}

/* Responsive */
@media (max-width:992px){
  .csirt-hero{
    padding:80px 0 60px;
  }

  .csirt-hero-img{
    max-height:300px;
  }

  .csirt-box{
    max-width:100%;
  }
}


/* =========================
   CSIRT — Misión & Visión
========================= */

.csirt-mv{
  padding:90px 0 100px;
  background:#ffffff;
}

.csirt-mv__title{
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#294960;
  font-size:clamp(1.4rem,2.2vw,2rem);
  margin:0;
}

.csirt-mv__logo{
  max-height:160px;
}

.csirt-card{
  height:100%;
  background:#ffffff;
  border-radius:18px;
  padding:38px 34px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 26px 55px rgba(0,0,0,0.10);
  transition:all .35s ease;
}

.csirt-card:hover{
  transform:translateY(-6px);
  box-shadow:0 36px 75px rgba(0,0,0,0.14);
  border-color:rgba(60,150,171,0.35);
}

.csirt-card__title{
  text-align:center;
  font-weight:900;
  color:#294960;
  letter-spacing:.06em;
  margin:0;
}

.csirt-card__divider{
  width:86px;
  height:2px;
  margin:14px auto 18px;
  background:rgba(41,73,96,0.45);
  border-radius:999px;
}

.csirt-card__text{
  text-align:center;
  color:#4a5b66;
  font-size:1.05rem;
  line-height:1.9;
  margin:0;
}


/* =========================
   CSIRT — Nuestros Servicios (estilo editorial)
========================= */

.csirt-services{
  padding:90px 0 100px;
  background:#ffffff;
}

.csirt-services__title{
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#294960;
  font-size:clamp(1.8rem,2.6vw,2.4rem);
  margin:0;
}

.csirt-services__list{
  max-width:980px;
  margin:0 auto;
}

.csirt-service{
  padding:10px 0 55px;
}

.csirt-service--last{
  padding-bottom:0;
}

.csirt-service__heading{
  display:flex;
  align-items:flex-start;
  gap:14px;
  font-weight:800;
  color:#294960;
  font-size:clamp(1.4rem,2.2vw,1.9rem);
  margin:0 0 18px;
}

.csirt-service__dot{
  color:#294960;
  font-size:1.6rem;
  line-height:1.2;
  margin-top:2px;
}

.csirt-service__text{
  color:#4a5b66;
  font-size:1.02rem;
  line-height:2.05;
  margin:0 0 18px;
}

.csirt-service__hours{
  margin:18px 0 0;
  font-size:1.02rem;
  line-height:1.8;
}

.csirt-service__hours-label{
  color:#294960;
  font-weight:800;
}

.csirt-service__hours-value{
  color:#3c96ab;
  font-weight:600;
}

/* =========================
   SOCIOS — HERO
========================= */

.socios-hero{
  position:relative;
  padding:120px 0 90px;
  overflow:hidden;
  color:#fff;
}

.socios-hero__bg{
  position:absolute;
  inset:0;
  background:url('../img/futuristic-business-scene-with-ultra-modern-ambiance.jpg') center/cover no-repeat;
  z-index:1;
}

.socios-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(20,35,50,.85), rgba(20,35,50,.65));
  z-index:2;
}

.socios-hero .container{
  position:relative;
  z-index:3;
}

.socios-hero__title{
  font-size:clamp(2.2rem,3vw,3rem);
  font-weight:800;
  letter-spacing:.05em;
  margin-bottom:20px;
  color:#3c96ab;
}

.socios-hero__text{
  font-size:1.1rem;
  line-height:1.9;
  opacity:.95;
}

.socios-hero__image{
  max-height:380px;
  border-radius:14px;
  box-shadow:0 30px 60px rgba(0,0,0,.35);
}

/* =========================
   SOCIOS — LOGOS
========================= */

.socios-logos{
  padding:100px 0;
  background:#f4f7f9;
}

.socios-logos__title{
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#294960;
  font-size:clamp(1.8rem,2.5vw,2.3rem);
}

.socio-card{
  background:#ffffff;
  border-radius:14px;
  padding:40px 25px;
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .35s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.socio-card img{
  max-height:70px;
  max-width:100%;
  object-fit:contain;
  transition:transform .35s ease;
}

.socio-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.socio-card:hover img{
  transform:scale(1.05);
}

/* =========================
   CONTACTO — HERO FIX
========================= */

.contacto-hero{
  position:relative;
  min-height:420px;              /* controla altura del hero */
  display:flex;
  align-items:center;            /* CENTRADO VERTICAL REAL */
  justify-content:center;
  text-align:center;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:#fff;
  overflow:hidden;
  padding:0;                     /* quitamos padding viejo */
}

.contacto-hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
}

.contacto-hero__inner{
  position:relative;
  z-index:2;
  width:100%;
}

.contacto-hero__title{
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
  font-size:clamp(2.4rem,3.5vw,3.2rem);
  color: #3c96ab;
}

.contacto-hero__lead{
  max-width:760px;
  margin:0 auto;
  font-size:1.15rem;
  line-height:1.9;
  opacity:.95;
}


/* =========================
   CONTACTO — CARDS
========================= */

.contacto-cards{
  position:relative;
  padding:0 0 100px;
  background:#f6fafc;
}

/* Subimos las cards para que “encimen” el hero como en la captura */
.contacto-cards .container{
  margin-top:-70px;
}

.contact-card{
  background:#fff;
  border-radius:12px;
  padding:42px 32px 34px;
  text-align:center;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.05);
  height:100%;
}

.contact-card__icon{
  width:82px;
  height:82px;
  margin:0 auto 22px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#3c96ab;
}

.contact-card__icon i{
  font-size:56px;
}

.contact-card__title{
  color:#294960;
  font-weight:800;
  margin:0 0 10px;
  font-size:1.35rem;
}

.contact-card__email{
  margin:0 0 22px;
  color:#6c7a86;
  font-size:1rem;
}

.contact-card__email:hover {
  color: #0f2e3a;
}

.contact-card__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:48px;
  padding:0 28px;
  border-radius:999px;
  background:#3c96ab;
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
  font-size:.9rem;
  border:none;
  transition:all .3s ease;
  box-shadow:0 14px 30px rgba(60,150,171,.28);
}

.contact-card__btn:hover{
  transform:translateY(-2px);
  background:#2f7f90;
  color:#fff;
  box-shadow:0 18px 40px rgba(60,150,171,.35);
}
