/* =========================================================
   SPAMTITAN - BASE + HEADER + HERO
========================================================= */

:root {
  --titan-black: #05070b;
  --titan-dark: #0b1118;
  --titan-panel: #111827;

  --titan-orange: #ff6a00;
  --titan-orange-electric: #ff7a1a;
  --titan-amber: #ffb347;

  --titan-blue: #007bbd;
  --titan-cyan: #20c7f4;

  --titan-text: #101827;
  --titan-muted: #64748b;
  --titan-white: #ffffff;

  --titan-grad: linear-gradient(135deg, #ff6a00 0%, #ff9f1a 48%, #007bbd 100%);
  --titan-orange-grad: linear-gradient(135deg, #ff5c00 0%, #ff7a1a 52%, #ffb347 100%);

  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: var(--titan-text);
  background: #ffffff;
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body.dark-mode {
  color: #ffffff;
  background: var(--titan-black);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}


/* =========================================================
   BOTONES
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 1rem 1.55rem;
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-pill {
  border-radius: 999px;
}

.btn-primary,
.titan-btn-primary {
  color: #ffffff;
  background: var(--titan-orange-grad);
  box-shadow: 0 18px 42px rgba(255, 106, 0, 0.34);
}

.btn-primary:hover,
.titan-btn-primary:hover {
  box-shadow: 0 24px 56px rgba(255, 106, 0, 0.46);
}

.titan-btn-secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.titan-btn-secondary:hover {
  background: rgba(255,122,26,0.18);
  border-color: rgba(255,122,26,0.55);
}


/* =========================================================
   HEADER / NAVBAR
========================================================= */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 10px 24px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.navbar.nav-scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(255,106,0,0.16);
  box-shadow: 0 14px 36px rgba(5, 7, 11, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.dark-mode .navbar.nav-scrolled {
  background: rgba(5, 7, 11, 0.94);
  border-bottom-color: rgba(255,122,26,0.18);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.logo a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.logo-normal {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.logo-light {
  opacity: 1;
}

.navbar.nav-scrolled .logo-light {
  opacity: 0;
}

.navbar.nav-scrolled .logo-normal {
  opacity: 1;
}

body.dark-mode .navbar.nav-scrolled .logo-light {
  opacity: 1;
}

body.dark-mode .navbar.nav-scrolled .logo-normal {
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.42);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.navbar.nav-scrolled .nav-links > li > a {
  color: #071426;
  text-shadow: none;
}

body.dark-mode .navbar.nav-scrolled .nav-links > li > a {
  color: #ffffff;
}

.nav-links > li > a:hover {
  color: var(--titan-orange-electric);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 275px;
  padding: 0.75rem 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,106,0,0.16);
  box-shadow: 0 24px 56px rgba(0,0,0,0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a,
.dropdown-title {
  display: block;
  padding: 0.82rem 1rem;
}

.dropdown-menu li a {
  color: #071426;
  font-size: 0.92rem;
  font-weight: 700;
}

.dropdown-menu li a:hover {
  color: var(--titan-orange);
  background: rgba(255,106,0,0.08);
}

.dropdown-title {
  color: var(--titan-blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.dark-mode .dropdown-menu {
  background: rgba(17,24,39,0.98);
  border-color: rgba(255,255,255,0.10);
}

body.dark-mode .dropdown-menu li a {
  color: #ffffff;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,122,26,0.32);
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff5c00, #ff7a1a);
  box-shadow: 0 14px 34px rgba(255,106,0,0.28);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(255,106,0,0.38);
}


/* =========================================================
   HERO SPAMTITAN
========================================================= */

.titan-hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,106,0,0.30), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(32,199,244,0.18), transparent 36%),
    linear-gradient(135deg, #05070b 0%, #111827 58%, #06111f 100%);
}

.titan-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.18) saturate(1.12);
}

.titan-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,106,0,0.42), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(32,199,244,0.20), transparent 36%),
    linear-gradient(180deg, rgba(5,7,11,0.42) 0%, rgba(5,7,11,0.84) 100%);
}

.titan-mail-stream {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.titan-mail-stream span {
  position: absolute;
  left: -120px;
  width: 78px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg, rgba(255,106,0,0.24), rgba(255,179,71,0.12));
  box-shadow:
    0 0 26px rgba(255,106,0,0.25),
    inset 0 0 18px rgba(255,255,255,0.06);
  animation: titanMailMove 9s linear infinite;
}

.titan-mail-stream span::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  border-top: 2px solid rgba(255,255,255,0.42);
  transform: skewY(-22deg);
}

.titan-mail-stream span:nth-child(1) { top: 22%; animation-delay: 0s; }
.titan-mail-stream span:nth-child(2) { top: 38%; animation-delay: 1.5s; }
.titan-mail-stream span:nth-child(3) { top: 54%; animation-delay: 3s; }
.titan-mail-stream span:nth-child(4) { top: 68%; animation-delay: 4.5s; }
.titan-mail-stream span:nth-child(5) { top: 80%; animation-delay: 6s; }

.titan-hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding: 145px 0 90px;
  text-align: center;
}

.titan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--titan-orange-grad);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(255,106,0,0.34);
}

.titan-hero-content h1 {
  max-width: 900px;
  margin: 1rem auto 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 4.7vw, 4.75rem);
  line-height: 1.03;
  font-weight: 800;
}

.titan-hero-content p {
  max-width: 660px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 700;
}

.titan-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}


/* =========================================================
   ANIMACIONES
========================================================= */

@keyframes titanMailMove {
  0% {
    transform: translateX(0) translateY(0) scale(0.9);
    opacity: 0;
  }

  12% {
    opacity: 0.82;
  }

  100% {
    transform: translateX(calc(100vw + 220px)) translateY(-46px) scale(1.05);
    opacity: 0;
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {
  .main-menu {
    display: none;
  }

  .nav-wrap {
    gap: 1rem;
  }

  .nav-btns .btn {
    display: none;
  }

  .titan-hero-content {
    padding-top: 132px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .navbar {
    padding: 10px 16px;
  }

  .logo-img {
    height: 44px;
  }

  .theme-btn {
    width: 42px;
    height: 42px;
  }

  .titan-hero-content h1 {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
  }

  .titan-hero-content p {
    font-size: 0.98rem;
  }

  .titan-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .titan-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   PLATAFORMA - FLUJO SPAMTITAN
========================================================= */

.titan-platform-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255,106,0,0.22), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(255,122,26,0.14), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(0,123,189,0.18), transparent 36%),
    linear-gradient(135deg, #05070b 0%, #0b1118 52%, #06111f 100%);
}

.titan-platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,122,26,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
  pointer-events: none;
}

.titan-platform-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,11,0.16), rgba(5,7,11,0.72));
  pointer-events: none;
}

.titan-platform-section .container {
  position: relative;
  z-index: 2;
}

.titan-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(86px);
  opacity: 0.34;
  pointer-events: none;
}

.titan-glow-blue {
  right: 8%;
  top: -120px;
  background: #007bbd;
}

.titan-glow-cyan {
  left: 8%;
  bottom: -130px;
  background: #ff6a00;
}


/* CABECERA */

.titan-platform-section .titan-section-head {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.titan-platform-section .titan-section-head h2 {
  margin: 1rem auto 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.06;
  font-weight: 800;
}

.titan-platform-section .titan-section-head p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,0.72);
  font-size: 1.03rem;
  line-height: 1.75;
  font-weight: 700;
}


/* MAPA DE FLUJO */

.titan-flow-map {
  display: grid;
  grid-template-columns: 1fr 86px 1.12fr 86px 1fr;
  align-items: center;
  gap: 0;
}

.flow-card,
.flow-core {
  position: relative;
  min-height: 292px;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 26px 70px rgba(0,0,0,0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.flow-card {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.flow-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,122,26,0.48);
  background: rgba(255,122,26,0.10);
}

.flow-card::before,
.flow-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,106,0,0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.flow-card:hover::before {
  opacity: 1;
}

.flow-icon,
.flow-core > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.35rem;
  border-radius: 17px;
  color: #ffffff;
  font-size: 1.45rem;
  background: linear-gradient(135deg, #ff5c00, #ff7a1a);
  box-shadow: 0 16px 36px rgba(255,106,0,0.30);
}

.flow-card.safe .flow-icon {
  background: linear-gradient(135deg, #ff7a1a, #007bbd);
}

.flow-card span,
.flow-core span {
  display: block;
  margin-bottom: 0.55rem;
  color: #ffb347;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.flow-card h3,
.flow-core h3 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1.15;
  font-weight: 800;
}

.flow-card p,
.flow-core p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.62;
  font-size: 0.95rem;
  font-weight: 600;
}


/* NÚCLEO */

.flow-core {
  overflow: hidden;
  text-align: center;
  border-color: rgba(255,122,26,0.36);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,122,26,0.20), transparent 34%),
    rgba(255,255,255,0.085);
}

.flow-core::before {
  opacity: 1;
  background:
    linear-gradient(135deg, rgba(255,106,0,0.18), transparent 48%),
    radial-gradient(circle at center, rgba(255,122,26,0.14), transparent 56%);
}

.flow-core-ring,
.flow-core-pulse {
  position: absolute;
  inset: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,179,71,0.20);
  pointer-events: none;
}

.flow-core-pulse {
  inset: 42px;
  border-color: rgba(255,122,26,0.28);
  animation: titanCorePulse 2.8s ease-in-out infinite;
}

.flow-core > i {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin: 0 auto 1.35rem;
  border-radius: 22px;
  font-size: 1.85rem;
  background: linear-gradient(135deg, #ff5c00 0%, #ff7a1a 55%, #ffb347 100%);
  box-shadow:
    0 0 34px rgba(255,106,0,0.48),
    0 18px 44px rgba(0,0,0,0.24);
}

.flow-core span,
.flow-core h3,
.flow-core p {
  position: relative;
  z-index: 1;
}


/* CONECTORES */

.flow-connector {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,122,26,0.78), transparent);
}

.flow-connector span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #ff7a1a;
  box-shadow: 0 0 24px rgba(255,122,26,0.90);
  transform: translate(-50%, -50%);
}


/* FEATURES */

.titan-flow-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.titan-flow-features div {
  min-height: 126px;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.065);
  box-shadow: 0 20px 54px rgba(0,0,0,0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.titan-flow-features div:hover {
  transform: translateY(-5px);
  border-color: rgba(255,122,26,0.42);
  background: rgba(255,122,26,0.10);
}

.titan-flow-features i {
  display: block;
  margin-bottom: 0.9rem;
  color: #ff7a1a;
  font-size: 1.35rem;
}

.titan-flow-features strong,
.titan-flow-features span {
  display: block;
}

.titan-flow-features strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
}

.titan-flow-features span {
  margin-top: 0.28rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 700;
}


/* ANIMACIÓN */

@keyframes titanCorePulse {
  0% {
    transform: scale(0.96);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.82;
  }

  100% {
    transform: scale(0.96);
    opacity: 0.35;
  }
}


/* RESPONSIVE */

@media (max-width: 1100px) {
  .titan-flow-map {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-card,
  .flow-core {
    min-height: auto;
  }

  .flow-connector {
    width: 2px;
    height: 48px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, rgba(255,122,26,0.78), transparent);
  }
}

@media (max-width: 900px) {
  .titan-flow-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .titan-platform-section {
    padding: 78px 0;
  }

  .titan-platform-section .titan-section-head {
    margin-bottom: 38px;
  }

  .flow-card,
  .flow-core {
    padding: 1.4rem;
    border-radius: 18px;
  }

  .titan-flow-features {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BENEFICIOS - CORPORATIVO CLARO SPAMTITAN
========================================================= */

.titan-benefits-corporate {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: #071426;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,106,0,0.12), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(0,123,189,0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #fff8f1 100%);
}

.titan-benefits-corporate .titan-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,189,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.9;
  pointer-events: none;
}

.titan-benefits-corporate::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.82));
  pointer-events: none;
}

.titan-benefits-corporate .container {
  position: relative;
  z-index: 2;
}


/* CABECERA */

.titan-benefits-corporate .titan-section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.titan-benefits-corporate .titan-section-head h2 {
  margin: 1rem auto 0;
  color: #071426;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.08;
  font-weight: 800;
}

.titan-benefits-corporate .titan-section-head p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.72;
  font-weight: 700;
}


/* PANEL */

.titan-corporate-panel {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,123,189,0.12);
  box-shadow:
    0 28px 80px rgba(0,40,80,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}


/* MÉTRICAS */

.titan-corporate-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,106,0,0.20), transparent 32%),
    linear-gradient(135deg, #071426 0%, #111827 62%, #06111f 100%);
}

.titan-corporate-metrics div {
  position: relative;
  padding: 1.45rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.titan-corporate-metrics div:last-child {
  border-right: 0;
}

.titan-corporate-metrics strong {
  display: block;
  color: #ff7a1a;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 0 22px rgba(255,106,0,0.30);
}

.titan-corporate-metrics span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 800;
}


/* BENEFICIOS */

.titan-corporate-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.titan-corporate-benefits article {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 166px;
  padding: 1.45rem;
  background: rgba(255,255,255,0.82);
  border-right: 1px solid rgba(0,123,189,0.10);
  border-bottom: 1px solid rgba(0,123,189,0.10);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.titan-corporate-benefits article:nth-child(2),
.titan-corporate-benefits article:nth-child(4) {
  border-right: 0;
}

.titan-corporate-benefits article:nth-child(3),
.titan-corporate-benefits article:nth-child(4) {
  border-bottom: 0;
}

.titan-corporate-benefits article:hover {
  transform: translateY(-4px);
  background: rgba(255,106,0,0.055);
  box-shadow: inset 4px 0 0 #ff7a1a;
}

.titan-corporate-benefits i {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #ff5c00 0%, #ff7a1a 62%, #007bbd 100%);
  box-shadow: 0 16px 34px rgba(255,106,0,0.24);
}

.titan-corporate-benefits h3 {
  margin: 0 0 0.45rem;
  color: #071426;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.titan-corporate-benefits p {
  margin: 0;
  color: #64748b;
  font-size: 0.93rem;
  line-height: 1.58;
  font-weight: 700;
}


/* DARK MODE */

body.dark-mode .titan-benefits-corporate {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,106,0,0.18), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(32,199,244,0.10), transparent 32%),
    linear-gradient(180deg, #05070b 0%, #0b1118 100%);
}

body.dark-mode .titan-benefits-corporate::after {
  background: linear-gradient(180deg, transparent, rgba(5,7,11,0.82));
}

body.dark-mode .titan-benefits-corporate .titan-section-head h2,
body.dark-mode .titan-corporate-benefits h3 {
  color: #ffffff;
}

body.dark-mode .titan-benefits-corporate .titan-section-head p,
body.dark-mode .titan-corporate-benefits p {
  color: rgba(255,255,255,0.70);
}

body.dark-mode .titan-corporate-panel {
  background: rgba(17,24,39,0.88);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
}

body.dark-mode .titan-corporate-benefits article {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .titan-corporate-benefits article:hover {
  background: rgba(255,106,0,0.09);
}


/* RESPONSIVE */

@media (max-width: 860px) {
  .titan-corporate-metrics,
  .titan-corporate-benefits {
    grid-template-columns: 1fr;
  }

  .titan-corporate-metrics div,
  .titan-corporate-benefits article {
    border-right: 0;
  }

  .titan-corporate-metrics div,
  .titan-corporate-benefits article {
    border-bottom: 1px solid rgba(0,123,189,0.10);
  }

  .titan-corporate-metrics div:last-child,
  .titan-corporate-benefits article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .titan-benefits-corporate {
    padding: 78px 0;
  }

  .titan-corporate-panel {
    border-radius: 19px;
  }

  .titan-corporate-benefits article {
    flex-direction: column;
    min-height: auto;
    padding: 1.25rem;
  }
}


/* =========================================================
   SERVICIO AEL - OSCURO TECNOLÓGICO
========================================================= */

.titan-service-simple {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,106,0,0.24), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(0,123,189,0.18), transparent 34%),
    linear-gradient(135deg, #05070b 0%, #111827 58%, #06111f 100%);
}

.titan-service-simple .titan-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.78;
  pointer-events: none;
}

.titan-service-simple::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,11,0.18), rgba(5,7,11,0.58));
  pointer-events: none;
}

.titan-service-simple .container {
  position: relative;
  z-index: 2;
}


/* GRID PRINCIPAL */

.titan-service-simple-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.2rem;
  align-items: center;
}


/* COPY */

.titan-service-simple .titan-copy h2 {
  max-width: 620px;
  margin: 1rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.08;
  font-weight: 800;
}

.titan-service-simple .titan-copy p {
  max-width: 580px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 1.03rem;
  line-height: 1.72;
  font-weight: 700;
}

.titan-service-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.55rem;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,106,0,0.12);
  border: 1px solid rgba(255,122,26,0.28);
  box-shadow: 0 18px 44px rgba(255,106,0,0.13);
  font-size: 0.94rem;
  line-height: 1.45;
  font-weight: 800;
}

.titan-service-highlight i {
  color: #ff7a1a;
  font-size: 1rem;
}


/* LISTA DE SERVICIO */

.titan-simple-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.titan-simple-list article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 62px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.titan-simple-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,106,0,0.14), transparent 46%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.titan-simple-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,26,0.45);
  background: rgba(255,106,0,0.10);
}

.titan-simple-list article:hover::before {
  opacity: 1;
}

.titan-simple-list i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #ff5c00 0%, #ff7a1a 62%, #007bbd 100%);
  box-shadow: 0 16px 34px rgba(255,106,0,0.26);
}

.titan-simple-list strong,
.titan-simple-list span {
  position: relative;
  z-index: 1;
  display: block;
}

.titan-simple-list strong {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
}

.titan-simple-list span {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 980px) {
  .titan-service-simple-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .titan-service-simple .titan-copy {
    text-align: center;
  }

  .titan-service-simple .titan-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .titan-service-highlight {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .titan-simple-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .titan-service-simple {
    padding: 78px 0;
  }

  .titan-service-highlight {
    align-items: flex-start;
    text-align: left;
  }

  .titan-simple-list article {
    min-height: auto;
    padding: 1.25rem;
    border-radius: 18px;
  }
}


/* =========================================================
   FOOTER - AEL TECH / SPAMTITAN COLORS
========================================================= */

.footer-ael-tech {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,106,0,0.24), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(0,123,189,0.16), transparent 34%),
    linear-gradient(135deg, #05070b 0%, #111827 56%, #06111f 100%);
}

.footer-ael-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
  pointer-events: none;
}

.footer-ael-tech::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,11,0.10), rgba(5,7,11,0.68));
  pointer-events: none;
}

.footer-ael-glow {
  position: absolute;
  top: -140px;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: #ff6a00;
  filter: blur(95px);
  opacity: 0.28;
  pointer-events: none;
}

.footer-ael-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1.1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.footer-ael-brand p {
  max-width: 310px;
  margin: 1.1rem 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 700;
}

.footer-ael-logo {
  width: 185px;
  height: auto;
}

.footer-ael-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.footer-ael-social a,
.footer-ael-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff5c00 0%, #ff7a1a 68%, #007bbd 100%);
  box-shadow: 0 14px 32px rgba(255,106,0,0.24);
}

.footer-ael-social a {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.footer-ael-social a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(255,106,0,0.36);
}

.footer-ael-column h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.footer-ael-links,
.footer-ael-contact,
.footer-ael-support {
  display: grid;
  gap: 0.85rem;
}

.footer-ael-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-ael-links a i {
  color: #ff7a1a;
  font-size: 0.75rem;
}

.footer-ael-links a:hover {
  color: #ffb347;
  transform: translateX(4px);
}

.footer-ael-contact li,
.footer-ael-support li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-ael-icon {
  flex: 0 0 42px;
  font-size: 0.95rem;
}

.footer-ael-contact strong,
.footer-ael-support strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-ael-contact a,
.footer-ael-contact span,
.footer-ael-support a,
.footer-ael-support span {
  color: rgba(255,255,255,0.66);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 700;
  transition: color 0.25s ease;
}

.footer-ael-contact a:hover,
.footer-ael-support a:hover {
  color: #ffb347;
}

.footer-ael-bottom {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.footer-ael-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.86rem;
  font-weight: 700;
}


/* =========================================================
   WHATSAPP FLOAT - SPAMTITAN
========================================================= */

.whatsapp-ael-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff5c00 0%, #ff7a1a 62%, #25d366 100%);
  box-shadow: 0 20px 48px rgba(255,106,0,0.32);
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.whatsapp-ael-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(255,106,0,0.42);
}

.whatsapp-ael-text {
  font-size: 0.9rem;
  white-space: nowrap;
}

.whatsapp-ael-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 1.35rem;
}


/* RESPONSIVE */

@media (max-width: 1050px) {
  .footer-ael-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .footer-ael-tech {
    padding: 52px 18px 22px;
  }

  .footer-ael-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-ael-logo {
    width: 170px;
  }

  .whatsapp-ael-text {
    display: none;
  }

  .whatsapp-ael-float {
    right: 18px;
    bottom: 18px;
    padding: 0.7rem;
  }
}

/* =========================================================
   MODO OSCURO GENERAL
========================================================= */

body.dark-mode {
  color: #ffffff;
  background: #05070b;
}

body.dark-mode .titan-benefits-corporate {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,106,0,0.18), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(32,199,244,0.10), transparent 32%),
    linear-gradient(180deg, #05070b 0%, #0b1118 100%);
}

body.dark-mode .titan-benefits-corporate .titan-grid-bg {
  background-image:
    linear-gradient(rgba(255,106,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

body.dark-mode .titan-benefits-corporate .titan-section-head h2,
body.dark-mode .titan-benefits-corporate .titan-corporate-benefits h3 {
  color: #ffffff;
}

body.dark-mode .titan-benefits-corporate .titan-section-head p,
body.dark-mode .titan-benefits-corporate .titan-corporate-benefits p {
  color: rgba(255,255,255,0.70);
}

body.dark-mode .titan-corporate-panel {
  background: rgba(17,24,39,0.88);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

body.dark-mode .titan-corporate-benefits article {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .titan-corporate-benefits article:hover {
  background: rgba(255,106,0,0.10);
}

body.dark-mode .navbar.nav-scrolled {
  background: rgba(5,7,11,0.94);
  border-bottom-color: rgba(255,122,26,0.18);
}

body.dark-mode .navbar.nav-scrolled .nav-links > li > a {
  color: #ffffff;
}

body.dark-mode .dropdown-menu {
  background: rgba(17,24,39,0.98);
  border-color: rgba(255,255,255,0.10);
}

body.dark-mode .dropdown-menu li a {
  color: #ffffff;
}

body.dark-mode .dropdown-menu li a:hover {
  background: rgba(255,106,0,0.12);
  color: #ffb347;
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(38px);
}

.reveal-left {
  transform: translateX(-42px);
}

.reveal-right {
  transform: translateX(42px);
}

.reveal-zoom {
  transform: scale(0.94);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .titan-mail-stream span,
  .flow-core-pulse {
    animation: none;
  }
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links > li > a {
    font-size: 0.88rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.9rem 1.2rem;
  }

  .titan-flow-map {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-connector {
    width: 2px;
    height: 48px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, rgba(255,122,26,0.78), transparent);
  }

  .titan-flow-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .titan-service-simple-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .titan-service-simple .titan-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .titan-service-simple .titan-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .titan-service-highlight {
    justify-content: center;
  }

  .footer-ael-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   RESPONSIVE - CELULAR / TABLET PEQUEÑA
========================================================= */

@media (max-width: 860px) {
  .navbar {
    padding: 10px 16px;
  }

  .main-menu {
    display: none;
  }

  .nav-btns .btn {
    display: none;
  }

  .logo-img {
    height: 44px;
  }

  .theme-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .titan-hero-content {
    padding: 130px 0 76px;
  }

  .titan-hero-content h1 {
    font-size: clamp(2.05rem, 9vw, 3.35rem);
  }

  .titan-hero-content p {
    font-size: 0.98rem;
  }

  .titan-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .titan-actions .btn {
    width: 100%;
  }

  .titan-platform-section,
  .titan-benefits-corporate,
  .titan-service-simple {
    padding: 78px 0;
  }

  .titan-section-head,
  .titan-platform-section .titan-section-head,
  .titan-benefits-corporate .titan-section-head {
    margin-bottom: 38px;
  }

  .titan-section-head h2,
  .titan-platform-section .titan-section-head h2,
  .titan-benefits-corporate .titan-section-head h2,
  .titan-service-simple .titan-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
  }

  .flow-card,
  .flow-core {
    min-height: auto;
    padding: 1.35rem;
    border-radius: 18px;
  }

  .titan-corporate-metrics,
  .titan-corporate-benefits,
  .titan-simple-list {
    grid-template-columns: 1fr;
  }

  .titan-corporate-metrics div,
  .titan-corporate-benefits article {
    border-right: 0;
    border-bottom: 1px solid rgba(0,123,189,0.10);
  }

  .titan-corporate-metrics div:last-child,
  .titan-corporate-benefits article:last-child {
    border-bottom: 0;
  }

  .titan-corporate-benefits article {
    min-height: auto;
    padding: 1.25rem;
  }

  .titan-simple-list article {
    min-height: auto;
    padding: 1.25rem;
  }

  .footer-ael-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* =========================================================
   RESPONSIVE - CELULAR
========================================================= */

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .titan-badge {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .titan-hero-section {
    min-height: 100svh;
  }

  .titan-hero-video {
    filter: brightness(0.50) contrast(1.12) saturate(1.05);
  }

  .titan-mail-stream span {
    width: 58px;
    height: 34px;
    opacity: 0.72;
  }

  .titan-flow-features {
    grid-template-columns: 1fr;
  }

  .titan-corporate-panel {
    border-radius: 18px;
  }

  .titan-corporate-benefits article {
    flex-direction: column;
  }

  .titan-service-highlight {
    align-items: flex-start;
    text-align: left;
  }

  .footer-ael-tech {
    padding: 52px 18px 22px;
  }

  .footer-ael-logo {
    width: 165px;
  }

  .whatsapp-ael-text {
    display: none;
  }

  .whatsapp-ael-float {
    right: 18px;
    bottom: 18px;
    padding: 0.7rem;
  }
}

/* =========================================================
   WHATSAPP FLOAT - TEXTO SOLO EN HOVER
========================================================= */

.whatsapp-ael-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  width: 58px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff5c00 0%, #ff7a1a 58%, #25d366 100%);
  box-shadow: 0 20px 48px rgba(255,106,0,0.32);
  font-weight: 800;
  transition: width 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.whatsapp-ael-float:hover {
  width: 210px;
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(255,106,0,0.42);
}

.whatsapp-ael-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.9rem;
  transition: max-width 0.28s ease, opacity 0.22s ease, margin 0.28s ease;
}

.whatsapp-ael-float:hover .whatsapp-ael-text {
  max-width: 150px;
  opacity: 1;
  margin-left: 1rem;
  margin-right: 0.65rem;
}

.whatsapp-ael-icon {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 1.55rem;
}

@media (max-width: 620px) {
  .whatsapp-ael-float,
  .whatsapp-ael-float:hover {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-ael-float:hover .whatsapp-ael-text {
    max-width: 0;
    opacity: 0;
    margin: 0;
  }

  .whatsapp-ael-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
}


/* =========================================================
   TIPOGRAFÍA IGUAL AL CSS ANTIGUO
========================================================= */

html,
body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

body,
button,
input,
textarea,
select,
a,
p,
span,
li,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

/* Menú como el antiguo */
.nav-links > li > a {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
}

/* Botones */
.btn,
.titan-btn-primary,
.titan-btn-secondary,
.theme-btn {
  font-weight: 900 !important;
}

/* Títulos principales */
.titan-hero-content h1,
.titan-section-head h2,
.titan-platform-section .titan-section-head h2,
.titan-benefits-corporate .titan-section-head h2,
.titan-service-simple .titan-copy h2 {
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

/* Párrafos */
.titan-hero-content p,
.titan-section-head p,
.titan-platform-section .titan-section-head p,
.titan-benefits-corporate .titan-section-head p,
.titan-service-simple .titan-copy p,
.flow-card p,
.flow-core p,
.titan-corporate-benefits p,
.titan-simple-list span,
.footer-ael-brand p {
  font-weight: 700 !important;
}

/* Subtítulos y cards */
.flow-card h3,
.flow-core h3,
.titan-corporate-benefits h3,
.titan-simple-list strong,
.footer-ael-column h4 {
  font-weight: 900 !important;
}

/* Badges */
.titan-badge,
.flow-card span,
.flow-core span {
  font-weight: 900 !important;
  letter-spacing: 1px !important;
}