/* TALENTRA — tema (index + vacantes; Bootstrap por CDN en HTML) */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap");

/*
 * Paleta cristal (7 tonos): cyan · navy · purple · magenta · red · gold · orange
 * Solo estos colores base para UI, botones y acentos.
 */
:root {
  --tr-cyan: #1ec8ea;
  --tr-navy: #243b8a;
  --tr-purple: #7b3fa0;
  --tr-magenta: #e01b8b;
  --tr-red: #e53935;
  --tr-gold: #f5c84a;
  --tr-orange: #f56e28;
  /* Puente legible (equivale al cyan para enlaces / iconos “azules”) */
  --tr-blue: var(--tr-cyan);
  --tr-gold-hover: var(--tr-orange);
  --tr-gray: #3a3d44;
  --tr-gray-light: #e6e7e8;
  --tr-text-strong: #1e2128;
  --tr-white: #ffffff;
  --tr-navy-rgb: 36, 59, 138;
  --tr-cyan-rgb: 30, 200, 234;
  --tr-purple-rgb: 123, 63, 160;
  --tr-magenta-rgb: 224, 27, 139;
  --tr-gold-rgb: 245, 200, 74;
  --tr-orange-rgb: 245, 110, 40;
  --tr-red-rgb: 229, 57, 53;
  /* Alias semánticos (compatibilidad con clases existentes) */
  --tr-navy-light: var(--tr-cyan);
  --tr-green: var(--tr-navy);
  --tr-green-dark: var(--tr-navy);
  --tr-green-soft: rgba(var(--tr-cyan-rgb), 0.14);
  --tr-mint-bg: var(--tr-gray-light);
  --tr-card-grey: var(--tr-gray-light);
  --tr-bg: var(--tr-gray-light);
  --tr-text: var(--tr-gray);
  --tr-muted: #4d525c;
  --tr-radius: 1rem;
  --tr-radius-xl: 1.75rem;
  --tr-glass-border-soft: rgba(var(--tr-cyan-rgb), 0.22);
  --tr-glass-shadow: 0 8px 32px rgba(var(--tr-navy-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  --tr-font: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tr-font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  font-family: var(--tr-font);
  color: var(--tr-text-strong);
  background: var(--tr-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--tr-font-heading);
  letter-spacing: -0.02em;
}

.section-mint-label,
.section-eyebrow-neutral,
.hero-trust-eyebrow,
.hero-tr-modern .eyebrow-hero {
  font-family: var(--tr-font-heading);
}

.text-tr-navy {
  color: var(--tr-navy) !important;
}

.text-tr-gold {
  color: var(--tr-gold) !important;
}

.text-tr-green {
  color: var(--tr-cyan) !important;
}

.text-tr-blue {
  color: var(--tr-blue) !important;
}

.text-tr-cyan {
  color: var(--tr-cyan) !important;
}

.text-tr-orange {
  color: var(--tr-orange) !important;
}

.text-tr-magenta {
  color: var(--tr-magenta) !important;
}

.text-tr-purple {
  color: var(--tr-purple) !important;
}

.text-tr-muted {
  color: var(--tr-muted) !important;
}

.text-tr-body {
  color: var(--tr-text-strong);
}

/* Etiqueta de sección (texto introductorio corto) */
.section-eyebrow-neutral {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tr-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow-neutral::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--tr-gold), var(--tr-cyan));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-eyebrow-neutral--center {
  justify-content: center;
}

.section-eyebrow-neutral--center::before {
  display: none;
}

/* Párrafos largos: ancho de lectura sin trocear el copy */
.prose-tr {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* En columnas laterales, la prosa alineada al inicio (no bloque centrado) */
.col-lg-6 .prose-tr,
.col-md-6 .prose-tr {
  margin-left: 0;
  margin-right: 0;
}

/* Hero: par principal de CTAs (oro → naranja, paleta cristal) */
.btn-tr-cta-hero {
  color: var(--tr-navy) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.85rem;
  background: linear-gradient(
    145deg,
    var(--tr-gold) 0%,
    var(--tr-orange) 100%
  );
  box-shadow: 0 8px 28px rgba(var(--tr-orange-rgb), 0.42),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-tr-cta-hero:hover {
  color: var(--tr-navy) !important;
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(var(--tr-magenta-rgb), 0.28),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.btn-tr-cta-hero:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--tr-cyan-rgb), 0.55),
    0 10px 30px rgba(var(--tr-orange-rgb), 0.4);
}

.btn-tr-cta-soft {
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--tr-navy);
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-tr-cta-soft:hover {
  background: #fff;
  color: var(--tr-purple);
  border-color: var(--tr-cyan);
  box-shadow: 0 8px 28px rgba(var(--tr-cyan-rgb), 0.25);
  transform: translateY(-2px);
}

/* CTAs en tarjetas de servicio: contorno navy → relleno degradado */
.btn-tr-card {
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--tr-navy);
  color: var(--tr-navy);
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease, transform 0.22s ease;
}

.btn-tr-card:hover {
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(
    135deg,
    var(--tr-navy) 0%,
    var(--tr-purple) 100%
  );
  box-shadow: 0 8px 24px rgba(var(--tr-purple-rgb), 0.42);
  transform: translateY(-2px);
}

.btn-tr-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--tr-cyan-rgb), 0.45),
    0 6px 20px rgba(var(--tr-navy-rgb), 0.3);
}

/* Formulario modal: acciones al pie, alineadas a la derecha */
.form-tr-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--tr-cyan-rgb), 0.18);
}

.form-tr-actions--compact {
  gap: 0.45rem;
}

.btn-tr-submit {
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: none;
  color: #fff !important;
  background: linear-gradient(
    135deg,
    var(--tr-navy) 0%,
    var(--tr-purple) 52%,
    var(--tr-magenta) 100%
  );
  box-shadow: 0 8px 28px rgba(var(--tr-magenta-rgb), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-tr-submit.btn-sm {
  padding: 0.38rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(var(--tr-purple-rgb), 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-tr-submit.btn-sm:hover {
  box-shadow: 0 8px 22px rgba(var(--tr-magenta-rgb), 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-tr-submit:hover {
  filter: brightness(1.06);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(var(--tr-magenta-rgb), 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-tr-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--tr-cyan-rgb), 0.55),
    0 10px 28px rgba(var(--tr-purple-rgb), 0.4);
}

.btn-tr-outline.btn-sm {
  padding: 0.3rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
}

.btn-form-cancel {
  font-weight: 600;
}

/* Hero compacto (p. ej. Vacantes): misma foto que inicio, menos alto */
.hero-tr-modern.hero-tr-modern--compact {
  min-height: 0 !important;
  padding-top: 2.75rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .hero-tr-modern.hero-tr-modern--compact {
    min-height: 38vh !important;
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }
}

.hero-tr-modern--compact .display-hero {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.hero-tr-modern--compact .lead-hero {
  max-width: 36rem;
}

/* Tarjeta de vacante: columna con CTA abajo */
.card-vacante .card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-vacante .card-vacante-desc {
  flex: 1 1 auto;
}

.card-vacante .badge-vacante {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(var(--tr-cyan-rgb), 0.12);
  color: var(--tr-navy);
  width: fit-content;
}

.bg-tr-navy {
  background-color: var(--tr-navy) !important;
}

.bg-tr-mint {
  background-color: var(--tr-mint-bg) !important;
}

/* Primario: navy sólido → hover purple (postular, etc.) */
.btn-tr-forest {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--tr-navy);
  --bs-btn-border-color: var(--tr-navy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--tr-purple);
  --bs-btn-hover-border-color: var(--tr-purple);
  --bs-btn-active-bg: var(--tr-magenta);
  --bs-btn-active-border-color: var(--tr-magenta);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(var(--tr-navy-rgb), 0.4);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-tr-forest:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(var(--tr-purple-rgb), 0.42);
}

.btn-tr-forest:focus-visible {
  box-shadow: 0 8px 28px rgba(var(--tr-navy-rgb), 0.38),
    0 0 0 0.2rem rgba(var(--tr-cyan-rgb), 0.5);
}

/* Secundario: fondo claro logo + borde */
.btn-tr-pill-light {
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: var(--tr-white);
  color: var(--tr-navy);
  border: 1px solid var(--tr-gray-light);
}

.btn-tr-pill-light:hover {
  background: var(--tr-white);
  color: var(--tr-purple);
  border-color: var(--tr-cyan);
}

/* Acento oro → naranja (CTA alternativos) */
.btn-tr-primary {
  --bs-btn-color: var(--tr-navy);
  --bs-btn-bg: var(--tr-gold);
  --bs-btn-border-color: var(--tr-gold);
  --bs-btn-hover-color: var(--tr-navy);
  --bs-btn-hover-bg: var(--tr-orange);
  --bs-btn-hover-border-color: var(--tr-orange);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(var(--tr-gold-rgb), 0.45);
}

.btn-tr-primary:hover {
  box-shadow: 0 8px 26px rgba(var(--tr-orange-rgb), 0.45);
}

/* Secundario: borde navy, hover relleno cyan/navy */
.btn-tr-outline {
  --bs-btn-color: var(--tr-navy);
  --bs-btn-border-color: var(--tr-navy);
  --bs-btn-hover-bg: var(--tr-navy);
  --bs-btn-hover-border-color: var(--tr-purple);
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border-width: 2px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-tr-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(var(--tr-navy-rgb), 0.28);
}

.btn-tr-outline:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--tr-cyan-rgb), 0.45);
}

/* Barra nav / franjas: magenta → naranja (alto contraste, paleta) */
.btn-tr-nav-cta {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  background: linear-gradient(
    135deg,
    var(--tr-magenta) 0%,
    var(--tr-orange) 100%
  );
  box-shadow: 0 6px 24px rgba(var(--tr-magenta-rgb), 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-tr-nav-cta:hover {
  color: #fff !important;
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(var(--tr-orange-rgb), 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-tr-nav-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--tr-gold-rgb), 0.75),
    0 8px 26px rgba(var(--tr-magenta-rgb), 0.45);
}

.btn-tr-nav-cta .fa-solid,
.btn-tr-nav-cta .fa-regular {
  font-size: 0.95rem;
  opacity: 0.95;
}

.btn-tr-nav-cta .material-symbols-outlined {
  font-size: 1.1rem;
  vertical-align: -0.18rem;
}

.navbar-tr {
  font-family: var(--tr-font-heading);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 4px 24px rgba(var(--tr-navy-rgb), 0.1),
    0 1px 0 rgba(var(--tr-navy-rgb), 0.12);
}

.btn {
  font-family: var(--tr-font-heading);
}

.btn .fa-solid,
.btn .fa-regular,
.btn .fa-brands {
  pointer-events: none;
}

.btn > .fa-solid:first-child,
.btn > .fa-regular:first-child {
  margin-right: 0.45em;
}

.btn-sm > .fa-solid:first-child,
.btn-sm > .fa-regular:first-child {
  font-size: 0.92em;
}

.navbar-tr .nav-link {
  font-weight: 600;
  color: var(--tr-text-strong) !important;
}

.navbar-tr .nav-link:hover,
.navbar-tr .nav-link.active {
  color: var(--tr-navy) !important;
}

.navbar-tr .nav-link.btn-link {
  color: var(--tr-text) !important;
}

.navbar-tr .nav-link.btn-link:hover {
  color: var(--tr-navy) !important;
}

/* Hero principal: imagen + velo marca + columnas (card-proof) */
.hero-tr-modern {
  position: relative;
  overflow: hidden;
  color: var(--tr-white);
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background-color: var(--tr-navy);
}

.hero-tr-modern > .container {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-tr-modern {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
    min-height: min(88vh, 900px);
    display: flex;
    align-items: center;
  }

  .hero-tr-modern > .container {
    flex: 1 0 auto;
    width: 100%;
  }
}

.hero-tr-modern-photo {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-tr-modern-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(var(--tr-navy-rgb), 0.92) 0%,
    rgba(var(--tr-purple-rgb), 0.72) 48%,
    rgba(var(--tr-cyan-rgb), 0.55) 100%
  );
}

/* Hero v2: velo más sobrio + panel único a la derecha */
.hero-tr-modern--v2 .hero-tr-modern-overlay {
  background: linear-gradient(
    118deg,
    rgba(var(--tr-navy-rgb), 0.9) 0%,
    rgba(var(--tr-navy-rgb), 0.82) 42%,
    rgba(var(--tr-cyan-rgb), 0.45) 100%
  );
}

/* Hero épico: capas extra, dramatismo y panel vidrio */
.hero-tr-modern--epic .hero-tr-modern-overlay {
  background: radial-gradient(
      ellipse 90% 70% at 78% 18%,
      rgba(var(--tr-magenta-rgb), 0.28) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 70% 55% at 12% 88%,
      rgba(var(--tr-cyan-rgb), 0.22) 0%,
      transparent 52%
    ),
    linear-gradient(
      122deg,
      rgba(var(--tr-navy-rgb), 0.96) 0%,
      rgba(var(--tr-navy-rgb), 0.78) 36%,
      rgba(var(--tr-purple-rgb), 0.62) 68%,
      rgba(var(--tr-cyan-rgb), 0.42) 100%
    );
}

.hero-tr-modern-aurora {
  pointer-events: none;
  position: absolute;
  inset: -15% -10% auto -10%;
  height: 65%;
  z-index: 1;
  opacity: 0.55;
  background: radial-gradient(
    ellipse 50% 40% at 50% 0%,
    rgba(var(--tr-gold-rgb), 0.35) 0%,
    transparent 70%
  );
  animation: hero-aurora-drift 14s ease-in-out infinite alternate;
}

.hero-tr-modern-gridlines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, #000 20%, transparent 75%);
}

@keyframes hero-aurora-drift {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
    opacity: 0.45;
  }

  to {
    transform: translate3d(3%, 2%, 0) scale(1.05);
    opacity: 0.62;
  }
}

@keyframes hero-kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

.hero-tr-modern--epic .hero-tr-modern-photo {
  animation: hero-kenburns 32s ease-in-out infinite alternate;
}

/* Página Vacantes: foto alineada a talento / oportunidades laborales */
.hero-tr-modern--vacantes .hero-tr-modern-photo {
  background-image: url("../img/impact-talento.png");
  background-position: center 28%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-tr-modern-aurora {
    animation: none;
  }

  .hero-tr-modern--epic .hero-tr-modern-photo {
    animation: none;
  }
}

.hero-epic-kicker {
  animation: hero-fade-up 0.7s ease 0.05s both;
}

.hero-epic-copy .eyebrow-hero,
.hero-epic-copy .display-hero,
.hero-epic-copy .lead-hero,
.hero-epic-copy .hero-tr-cta-group {
  animation: hero-fade-up 0.75s ease both;
}

.hero-epic-copy .eyebrow-hero {
  animation-delay: 0.08s;
}

.hero-epic-copy .display-hero {
  animation-delay: 0.12s;
}

.hero-epic-copy .lead-hero {
  animation-delay: 0.18s;
}

.hero-epic-copy .hero-tr-cta-group {
  animation-delay: 0.24s;
}

.hero-tr-modern--epic .hero-epic-glass {
  animation: hero-fade-up 0.75s ease 0.28s both;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-epic-kicker,
  .hero-epic-copy .eyebrow-hero,
  .hero-epic-copy .display-hero,
  .hero-epic-copy .lead-hero,
  .hero-epic-copy .hero-tr-cta-group,
  .hero-tr-modern--epic .hero-epic-glass {
    animation: none;
  }
}

.hero-epic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--tr-font-heading);
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero-epic-pill .fa-bolt {
  color: var(--tr-gold);
}

.hero-epic-pill--ghost {
  background: transparent;
  border-style: dashed;
  opacity: 0.92;
}

/* Titular hero: degradado azul (marca) → cyan → naranja */
.hero-epic-gradient--title {
  display: block;
  background: linear-gradient(
    102deg,
    #c8ddff 0%,
    var(--tr-cyan) 32%,
    var(--tr-gold) 62%,
    var(--tr-orange) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 28px rgba(var(--tr-navy-rgb), 0.45));
}

/* Index: titular principal en blanco (sin degradado) */
.hero-epic-title--plain {
  display: block;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  filter: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero-tr-modern--epic .display-hero {
  text-shadow: none;
  color: transparent;
}

.hero-epic-glass {
  padding: 1.25rem 1.1rem 1.35rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

@media (min-width: 992px) {
  .hero-epic-glass {
    padding: 1.5rem 1.35rem 1.6rem;
  }
}

/* Numeralias hero: sobre vidrio, sin tarjeta blanca */
.hero-trust-stats--epic {
  width: 100%;
  padding-top: 0.35rem;
  margin-top: 0.25rem;
}

.hero-tr-modern--epic .hero-trust-stats--epic .hero-trust-stat__num {
  font-size: clamp(1.65rem, 4.2vw, 2.15rem);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(var(--tr-cyan-rgb), 0.25);
}

.hero-tr-modern--epic .hero-trust-stats--epic .hero-trust-stat__lbl {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .hero-tr-modern.hero-tr-modern--epic {
    min-height: min(82vh, 860px);
    padding-top: 4rem;
    padding-bottom: 4.5rem;
  }
}

@media (min-width: 992px) {
  .hero-tr-modern.hero-tr-modern--v2:not(.hero-tr-modern--epic) {
    min-height: min(78vh, 780px);
    padding-top: 3.75rem;
    padding-bottom: 4.25rem;
  }
}

.hero-tr-modern-inner {
  max-width: 1140px;
}

.hero-trust-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 992px) {
  .hero-trust-column {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-trust-column--epic {
  align-items: center !important;
  text-align: center !important;
}


.hero-trust-logo {
  max-width: min(220px, 100%);
  height: auto;
  display: block;
}

.hero-trust-panel {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1.25rem;
  padding: 1.35rem 1.25rem 1.35rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-trust-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.hero-trust-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 420px) {
  .hero-trust-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
  }
}

.hero-trust-stat {
  text-align: center;
  padding: 0.35rem 0.2rem;
}

.hero-trust-stat__num {
  display: block;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 800;
  color: var(--tr-navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-trust-stat__lbl {
  font-size: 0.68rem;
  color: var(--tr-muted);
  line-height: 1.25;
  display: block;
  margin-top: 0.3rem;
}

.hero-tr-modern .hero-copy {
  position: relative;
  z-index: 2;
}

.hero-tr-modern .eyebrow-hero {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tr-gold);
  margin-bottom: 1rem;
}

.hero-tr-modern .display-hero {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--tr-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.hero-tr-modern .lead-hero {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 28rem;
  margin-bottom: 0;
}

.hero-tr-modern--v2 .lead-hero {
  max-width: 36rem;
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.55;
}

/* CTAs del hero: compactos (no bloques enormes) */
.hero-tr-modern--v2 .hero-tr-cta-group .btn-tr-cta-hero,
.hero-tr-modern--v2 .hero-tr-cta-group .btn-tr-cta-soft {
  padding: 0.4rem 1.05rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(var(--tr-orange-rgb), 0.32);
}

.hero-tr-modern--v2 .hero-tr-cta-group .btn-tr-cta-soft {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.hero-tr-modern--v2 .hero-tr-cta-group .btn-tr-cta-hero:hover {
  box-shadow: 0 6px 20px rgba(var(--tr-magenta-rgb), 0.28);
}

.hero-tr-modern--v2 .display-hero {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.12;
}

.hero-tr-modern--epic.hero-tr-modern--v2 .display-hero {
  font-size: clamp(1.95rem, 5.2vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

@media (min-width: 992px) {
  .hero-tr-modern--epic.hero-tr-modern--v2 .display-hero {
    font-size: clamp(2.15rem, 4.7vw, 3.65rem);
  }

  .hero-tr-modern--epic.hero-tr-modern--v2 .lead-hero {
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 38rem;
  }
}

.hero-tr-modern .hero-cards {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-tr-modern .hero-cards {
    padding-left: 0.5rem;
  }
}

/* Tarjetas hero: liquid glass (mismo lenguaje visual) */
.hero-tr-modern .card-proof {
  border-radius: 1.25rem;
  padding: 1.65rem 1.65rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background 0.3s ease, border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.hero-tr-modern .card-proof:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-tr-modern .card-proof .stars {
  color: var(--tr-gold);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.hero-tr-modern .card-proof h3 {
  font-size: 1.28rem;
  color: var(--tr-navy);
}

.hero-tr-modern .card-proof p {
  color: var(--tr-gray);
  font-size: 0.98rem;
}

.hero-tr-modern .card-proof-list .bullet {
  background: var(--tr-navy);
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.5rem;
}

.hero-tr-modern .card-proof-list li {
  font-weight: 600;
  color: var(--tr-navy);
  font-size: 0.95rem;
}

/* Tarjetas prueba social (fallback si fuera del hero) */
.card-proof {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--tr-glass-border-soft);
  border-radius: var(--tr-radius-xl);
  box-shadow: var(--tr-glass-shadow);
  padding: 2rem 2rem 2.25rem;
  height: 100%;
}

.card-proof .stars {
  color: var(--tr-gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.card-proof h3 {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--tr-navy);
  margin-bottom: 0.75rem;
}

.card-proof p {
  color: var(--tr-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.card-proof-list .bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--tr-navy);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.card-proof-list li {
  font-weight: 600;
  color: var(--tr-navy);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.card-proof-list li:last-child {
  margin-bottom: 0;
}

/* Sección menta + tarjetas blancas */
.section-mint-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tr-magenta);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-mint-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tr-magenta);
}

.card-mint {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid var(--tr-glass-border-soft);
  border-radius: 2rem;
  box-shadow: var(--tr-glass-shadow);
  padding: 2rem 2rem 1.75rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card-mint:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--tr-cyan-rgb), 0.32);
  box-shadow: 0 14px 40px rgba(var(--tr-navy-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Quiénes somos — layout centrado + rejilla 3×2 a ancho completo */
.section-talentra-v2 {
  padding-bottom: 4.5rem;
}

.talentra-intro {
  line-height: 1.65;
}

.talentra-body {
  line-height: 1.72;
  font-size: 1.0625rem;
}

.talentra-pillars {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.talentra-card {
  background: #fff;
  border: 1px solid rgba(var(--tr-cyan-rgb), 0.14);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 1.55rem;
  box-shadow: 0 4px 22px rgba(var(--tr-navy-rgb), 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
}

.talentra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--tr-navy-rgb), 0.1);
  border-color: rgba(var(--tr-cyan-rgb), 0.26);
}

.talentra-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--tr-navy-rgb), 0.08);
  color: var(--tr-navy);
  margin-bottom: 1rem;
}

.talentra-card__icon .material-symbols-outlined {
  font-size: 1.45rem;
}

.talentra-card__icon--cyan {
  background: rgba(var(--tr-cyan-rgb), 0.14);
  color: var(--tr-cyan);
}

.talentra-card__icon--purple {
  background: rgba(var(--tr-purple-rgb), 0.12);
  color: var(--tr-purple);
}

.talentra-card__icon--magenta {
  background: rgba(var(--tr-magenta-rgb), 0.1);
  color: var(--tr-magenta);
}

.talentra-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--tr-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.talentra-card__text {
  font-size: 0.9rem;
  color: var(--tr-muted);
  line-height: 1.55;
  margin: 0;
}

.icon-mint {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--tr-cyan-rgb), 0.2);
  color: var(--tr-navy);
}

.card-mint h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--tr-navy);
  margin-bottom: 0.65rem;
}

.card-mint p {
  color: var(--tr-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.card-mint .link-mint {
  font-weight: 700;
  color: var(--tr-blue);
  text-decoration: none;
}

.card-mint .link-mint:hover {
  color: var(--tr-cyan);
  text-decoration: underline;
}

.card-mint button.link-mint {
  font-weight: 700;
  color: var(--tr-blue);
  background: none;
}

.card-mint button.link-mint:hover {
  color: var(--tr-cyan);
  text-decoration: underline;
}

/* Qué hacemos — tarjetas con foto, degradado e icono flotante */
.impact-photo-card {
  --impact-photo-card-radius: 1.15rem;
  background: var(--tr-white);
  border-radius: var(--impact-photo-card-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 42px rgba(var(--tr-navy-rgb), 0.14);
  border: 1px solid rgba(var(--tr-cyan-rgb), 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.impact-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(var(--tr-navy-rgb), 0.18);
}

.impact-photo-card__media {
  position: relative;
  flex-shrink: 0;
  height: clamp(168px, 22vw, 200px);
  overflow: hidden;
}

.impact-photo-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 48%,
    rgba(255, 255, 255, 0.92) 78%,
    #ffffff 100%
  );
}

.impact-photo-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-photo-card__badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(var(--tr-navy-rgb), 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tr-navy);
  border: 1px solid rgba(var(--tr-cyan-rgb), 0.14);
}

.impact-photo-card__badge .material-symbols-outlined {
  font-size: 1.55rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.impact-photo-card__body {
  padding: 2.35rem 1.65rem 1.75rem;
  flex: 1;
}

@media (min-width: 992px) {
  .impact-photo-card__body {
    padding-left: 1.85rem;
    padding-right: 1.85rem;
  }
}

.impact-photo-card__title {
  font-family: var(--tr-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--tr-navy);
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}

.impact-photo-card__list {
  margin: 0;
  padding-left: 1.15rem;
  font-family: var(--tr-font);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--tr-muted);
}

.impact-photo-card__list li {
  padding-left: 0.2rem;
}

.impact-photo-card__list li::marker {
  color: var(--tr-blue);
}

.section-title {
  font-weight: 700;
  color: var(--tr-navy);
}

.card-tr {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  border: 1px solid var(--tr-glass-border-soft) !important;
  border-radius: var(--tr-radius-xl);
  box-shadow: var(--tr-glass-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card-tr:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--tr-cyan-rgb), 0.35) !important;
  box-shadow: 0 16px 44px rgba(var(--tr-navy-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

/*
 * Sobre fondo blanco el “glass” casi desaparece: damos cartas legibles
 * y sombra visible (misma línea visual que en mint, pero con sólido).
 */
.bg-white .card-tr,
.bg-white .card-mint {
  background: #fff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(var(--tr-cyan-rgb), 0.22) !important;
  box-shadow: 0 10px 32px rgba(var(--tr-navy-rgb), 0.09),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.bg-white .card-tr:hover,
.bg-white .card-mint:hover {
  box-shadow: 0 18px 48px rgba(var(--tr-navy-rgb), 0.12),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.bg-white .icon-mint {
  background: rgba(var(--tr-cyan-rgb), 0.08);
  border-color: rgba(var(--tr-cyan-rgb), 0.2);
}

/* Ritmo entre secciones del landing */
main#contenido-principal > section.bg-white {
  border-bottom: 1px solid rgba(var(--tr-cyan-rgb), 0.1);
}

main#contenido-principal > section:last-of-type {
  border-bottom: none;
}

.section-title.display-6 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.icon-bubble {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--tr-gold-rgb), 0.2);
  color: var(--tr-navy);
}

/* Pie claro: sin bloque plano oscuro */
.footer-tr-light {
  background: var(--tr-white);
  color: var(--tr-gray);
  border-top: 1px solid rgba(var(--tr-cyan-rgb), 0.2);
}

.footer-tr-light a {
  color: var(--tr-navy);
  text-decoration: none;
}

.footer-tr-light a:hover {
  color: var(--tr-blue);
}

.footer-tr-light .footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tr-muted);
  margin-bottom: 1rem;
}

.footer-tr-light .footer-contact-icon {
  color: var(--tr-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
}

.footer-tr-light .footer-legal {
  color: var(--tr-muted);
}

/* Modal contacto — cabecera sobria (sin gradientes) */
.modal-contacto-header {
  background: #fff;
  border-bottom: 1px solid rgba(var(--tr-cyan-rgb), 0.22);
  border-radius: 0 !important;
}

.modal-contacto-header .modal-title,
.modal-contacto-header h2 {
  color: var(--tr-navy);
}

.modal-contacto-header .btn-close {
  filter: none;
  opacity: 0.5;
}

.modal-contacto-sub {
  color: var(--tr-muted) !important;
}

#modalContacto .modal-contacto-footer {
  background: #fff;
  border-radius: 0 0 1rem 1rem;
}

/* Texto secundario sobre fondos navy (banner, hero oscuro) */
.text-on-navy-muted {
  color: rgba(255, 255, 255, 0.9);
}

/* Modales de servicio — cabecera sobria */
.modal-servicio .modal-servicio-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border-bottom: 1px solid rgba(var(--tr-cyan-rgb), 0.22);
  color: var(--tr-navy);
  border-radius: 1rem 1rem 0 0 !important;
  padding: 1rem 1.25rem;
}

.modal-servicio .modal-servicio-header > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.modal-servicio .modal-servicio-header h2 {
  color: var(--tr-navy);
  font-size: 1.1rem;
}

.modal-servicio .modal-servicio-header .btn-close {
  filter: none;
  opacity: 0.5;
}

.modal-servicio .modal-servicio-header p {
  color: var(--tr-muted);
  font-size: 0.875rem;
}

.modal-servicio .modal-body {
  padding: 1.5rem 1.5rem 1.25rem;
}

.modal-servicio .modal-body > p {
  color: var(--tr-text-strong);
  line-height: 1.65;
}

.modal-servicio .modal-servicio-point {
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--tr-cyan-rgb), 0.18);
  background: rgba(230, 231, 232, 0.45);
}

.modal-servicio .modal-servicio-point h3 {
  font-size: 0.95rem;
  color: var(--tr-navy);
}

.modal-servicio .modal-servicio-point p {
  font-size: 0.875rem;
  color: var(--tr-text-strong);
  line-height: 1.5;
  margin-bottom: 0;
}

.modal-servicio .modal-footer {
  background: var(--tr-white);
}

/* Pie de modal: botones pequeños, esquina inferior derecha */
.modal-footer.modal-footer-tr-compact {
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.45rem;
  padding: 0.65rem 1rem 0.85rem;
}

.modal-footer.modal-footer-tr-compact .btn {
  flex: 0 0 auto;
  min-width: 0;
}

.form-tr .form-control,
.form-tr .form-select {
  border-radius: 0.5rem;
  border-color: rgba(var(--tr-cyan-rgb), 0.35);
}

.form-tr .form-control:focus,
.form-tr .form-select:focus {
  border-color: var(--tr-cyan);
  box-shadow: 0 0 0 0.2rem rgba(71, 160, 211, 0.25);
}

@media (min-width: 768px) {
  .border-md-start-tr {
    border-left: 1px solid rgba(var(--tr-cyan-rgb), 0.2) !important;
  }
}

.border-tr-gold {
  border-color: var(--tr-gold) !important;
}

.border-tr-cyan {
  border-color: var(--tr-cyan) !important;
}

.border-tr-navy {
  border-color: var(--tr-navy) !important;
}

.text-justify {
  text-align: justify;
}

html {
  scroll-behavior: smooth;
}

.scroll-margin-top {
  scroll-margin-top: 5.5rem;
}

/* FAQ: acordeón Bootstrap + marca */
.accordion-tr .accordion-button:not(.collapsed) {
  background: rgba(var(--tr-gold-rgb), 0.18);
  color: var(--tr-navy);
  font-weight: 600;
}

.accordion-tr .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(var(--tr-cyan-rgb), 0.45);
}

.accordion-tr .accordion-button {
  font-size: 0.95rem;
}

/* Botón flotante WhatsApp (visible en todo el sitio) */
.tr-wa-float {
  position: fixed;
  z-index: 1040;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff !important;
  font-size: 1.85rem;
  line-height: 1;
  box-shadow: 0 6px 24px rgba(15, 118, 58, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

@media (min-width: 768px) {
  .tr-wa-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.65rem;
    height: 3.65rem;
    font-size: 1.95rem;
  }
}

.tr-wa-float:hover {
  color: #fff !important;
  filter: brightness(1.06);
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(15, 118, 58, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.14);
}

.tr-wa-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--tr-cyan-rgb), 0.65),
    0 8px 28px rgba(15, 118, 58, 0.45);
}

.tr-wa-float .fa-brands {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .tr-wa-float {
    transition: none;
  }

  .tr-wa-float:hover {
    transform: none;
  }
}

