:root {
  --bg: #0b0b0e;
  --surface: #121217;
  --text: #efefef;
  --muted: #b8b8c3;
  --gold: #d4af37;
  --gold-2: #c1992f;
  --accent: #2f59ff
}

* {
  box-sizing: border-box;
  /* cursor default restored */
  cursor: auto;
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  padding-top: 56px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  letter-spacing: .01em;
  background: radial-gradient(1000px 500px at 80% -10%, rgba(45, 55, 75, .4), transparent), #0b0b0e;
  color: var(--text)
}

.container img {
  -webkit-user-drag: none;
  user-select: none
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease
}

.btn.xl {
  padding: 16px 28px;
  font-size: 18px
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #101014
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, .35)
}

.btn.light {
  background: #1f1f25;
  color: var(--text)
}

.btn.light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 89, 255, .25)
}

.btn.ghost {
  border: 1px solid #2a2a31;
  background: transparent;
  color: var(--text)
}

.btn.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, .08)
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 12, 16, .7);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.site-header .btn {
  padding: 8px 14px;
  font-size: 14px
}

.site-header .btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 6px 18px rgba(212, 175, 55, .25)
}

.site-header .btn.active {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 15px var(--gold), 0 0 25px rgba(212, 175, 55, 0.4);
  border: 1px solid var(--gold);
  transform: translateY(-1px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px
}

.header-left .header-title {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #e7e7ea;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28)
}

.header-left .header-title:hover {
  color: var(--gold);
  border-color: rgba(242, 214, 129, .5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .38)
}

.favicon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.favicon img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 195, 255, .35));
  transition: filter 0.3s ease;
}

.favicon.active img {
  filter: drop-shadow(0 0 12px var(--gold)) drop-shadow(0 0 20px rgba(242, 214, 129, 0.6));
}

.favicon.active {
  transform: scale(1.1);
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: flex-start
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px
}

.nav a:hover {
  color: var(--text)
}

.ctas {
  display: flex;
  gap: 10px;
  align-items: center
}

#btn-academia {
  display: none
}

.header-search {
  display: flex
}

.header-search input {
  height: 36px;
  width: 340px;
  border-radius: 12px;
  border: 1px solid #2a2a31;
  background: #0f0f14;
  color: #e7e7ea;
  padding: 0 14px
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #bbb
}

.hero {
  position: relative;
  min-height: 100vh
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1400px 700px at 50% 50%, rgba(0, 25, 45, .55), transparent 70%), radial-gradient(900px 500px at 50% 60%, rgba(0, 120, 220, .14), transparent 60%), #050607
}

.hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 76px;
  min-height: 100vh;
  transform: translateY(-56px)
}

.hero-center {
  z-index: 2
}

.hero-taglines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 26px
}

.microcopy {
  font-weight: 700
}

.microcopy.muted {
  color: #c9c9d1;
  font-weight: 600
}

.microcopy.highlight {
  color: #8fe3ff
}

.logo-wrap {
  position: relative;
  display: inline-block
}

.logo-wrap::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 160%;
  height: 160%;
  left: -30%;
  top: -30%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 195, 255, .35), transparent 60%);
  filter: blur(18px);
  animation: pulseGlow 5s ease-in-out infinite
}

.logo-wrap.flash::before {
  filter: blur(28px);
  opacity: 1
}

@keyframes pulseGlow {
  0% {
    transform: scale(.98);
    opacity: .85
  }

  50% {
    transform: scale(1.02);
    opacity: 1
  }

  100% {
    transform: scale(.98);
    opacity: .85
  }
}

.logo-hero {
  width: 520px;
  max-width: 78vw;
  height: auto;
  filter: drop-shadow(0 50px 140px rgba(0, 153, 255, .5)) drop-shadow(0 20px 44px rgba(55, 155, 255, .25))
}

.neural-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.brain-svg {
  width: 100%;
  height: 100%
}

.net {
  mix-blend-mode: screen
}

.net circle {
  fill: #75e6ff;
  filter: drop-shadow(0 0 6px rgba(0, 195, 255, .85));
  animation: pulse 3.6s ease-in-out infinite
}

.net line {
  stroke: #36b8ff;
  opacity: .55;
  animation: flicker 4s ease-in-out infinite
}

@keyframes pulse {
  0% {
    r: 3;
    opacity: .7
  }

  50% {
    r: 4.5;
    opacity: 1
  }

  100% {
    r: 3;
    opacity: .7
  }
}

@keyframes flicker {
  0% {
    opacity: .5
  }

  50% {
    opacity: 1
  }

  100% {
    opacity: .5
  }
}

.hero h1 {
  display: none
}

.hero p {
  display: none
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px
}

.hero-badges {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin: 0
}

@media (min-width:981px) {
  .hero-badges {
    left: auto;
    right: 200px;
    transform: none;
    justify-content: flex-end
  }
}

.hero-badges .hero-badge {
  height: 96px;
  width: auto;
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none
}

.hero-badges .hero-badge:first-child {
  transform: none
}

.hero-badges .hero-badge:nth-child(2),
.hero-badges .hero-badge:nth-child(3),
.hero-badges .hero-badge:nth-child(4) {
  height: 115px;
  transform: none
}

.hero-badges .hero-badge:last-child {
  height: 75px
}

@media (max-width:560px) {
  .hero-badges {
    position: static;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 42px
  }

  .hero-badges .hero-badge {
    height: 40px
  }

  .hero-badges .hero-badge:first-child {
    transform: none
  }

  .hero-badges-side {
    display: none
  }
}

@media (max-width:560px) {

  .hero-badges .hero-badge:nth-child(2),
  .hero-badges .hero-badge:nth-child(3),
  .hero-badges .hero-badge:nth-child(4) {
    height: 50px
  }

  .hero-badges .hero-badge:last-child {
    height: 34px
  }
}

/* Ajustes móviles para héroe */
@media (max-width:560px) {
  .hero-center {
    padding: 80px 0 56px;
    transform: translateY(-64px)
  }

  .hero-actions {
    margin-top: 22px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
  }

  .hero-actions .btn {
    width: min(340px, 86vw)
  }

  .logo-hero {
    max-width: 82vw
  }

  .hero-taglines {
    margin-top: 14px
  }

  .hero-taglines .microcopy.muted {
    padding: 0 16px;
    line-height: 1.35;
    text-align: center
  }

  body {
    max-width: 100vw;
    overflow-x: hidden
  }
}

.hero-badges-side {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(820px, 74vw);
  padding: 0 16px
}

.hero-badges-side .hero-badge {
  height: 112px;
  width: auto;
  display: block
}

@media (max-width:560px) {
  .hero-badges-side {
    bottom: 36px;
    left: 50%;
    width: auto;
    padding: 0;
    gap: 24px;
    justify-content: center
  }

  .hero-badges-side .hero-badge {
    height: 68px
  }
}

.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.orb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(120px 120px at 30% 30%, rgba(212, 175, 55, .55), rgba(47, 89, 255, .4));
  box-shadow: 0 30px 120px rgba(212, 175, 55, .35), inset 0 0 40px rgba(255, 255, 255, .08);
  animation: float 7s ease-in-out infinite
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }

  100% {
    transform: translateY(0)
  }
}

.pillars {
  position: absolute;
  inset: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  right: 40px
}

.pillar {
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  color: #e9e9ee;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35)
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: #0d0d12
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0
}

.trust-inner>span {
  color: #c9c9d1;
  font-weight: 600
}

.brands {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0
}

.brand-item {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  color: #e7e7ea;
  font-weight: 600
}

.proposal {
  margin-top: 0;
  padding: 80px 0 64px
}

.proposal h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.proposal .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 680px;
  text-align: center;
  margin: 4px auto 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.proposal .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.proposal .route-chart {
  margin-top: 22px
}

.proposal .route-chart {
  margin-top: 22px
}

.proposal h2,
.services h2,
.differentiators h2,
.cta h2,
.about h2,
.method h2,
.culture h2,
.cases h2,
.blog h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 24px
}

.values h2,
.policy h2,
.ethics h2,
.guarantee h2,
.culture-int h2,
.experience h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 24px
}

.grid {
  display: grid;
  gap: 18px
}

.grid.two {
  grid-template-columns: repeat(2, 1fr)
}

.grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.grid.five {
  grid-template-columns: repeat(5, 1fr)
}

.card,
.service,
.diff {
  background: #13131a;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.card h3,
.service h3,
.diff h3 {
  margin: 0 0 10px;
  font-size: 22px
}

.card p,
.service p,
.diff p {
  margin: 0;
  color: #cfcfd6
}

.service .link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700
}

.service .link:hover {
  color: #f6d26f
}

.services {
  padding: 60px 0
}

.differentiators {
  padding: 60px 0
}

.differentiators h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.differentiators .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.differentiators .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.donut-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto
}

.donut-card {
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 18px;
  text-align: center
}

.donut {
  height: 150px;
  width: 150px;
  margin: 4px auto 8px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #f2d681 0deg, rgba(255, 255, 255, .06) 0deg);
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45)
}

.donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .06)
}

.donut-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #e7e7ea
}

.dc-svg {
  height: 28px;
  width: 28px;
  color: #f2d681;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .45))
}

.dc-percent {
  font-weight: 900;
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55)
}

.donut-title {
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px
}

.donut-card p {
  color: #d9d9e2
}

@media (max-width:980px) {
  .donut-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .donut-grid {
    grid-template-columns: 1fr
  }
}

.guarantee-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #17171d, #101016);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 24px 70px rgba(0, 0, 0, .45)
}

.guarantee-badge::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(242, 214, 129, .35);
  opacity: .6;
  pointer-events: none
}

.badge-icon {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(242, 214, 129, .25), rgba(47, 89, 255, .12));
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%
}

.badge-title {
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap
}

.badge-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  color: #d9d9e2;
  margin-left: auto
}

.badge-stats .stat {
  background: linear-gradient(180deg, #1b1b22, #15151b);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35)
}

.about {
  padding: 80px 0
}

.about {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 60%)
}

.about h2 {
  text-align: center;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  margin: 0 auto 4px;
  font-size: 56px;
  line-height: 1.1
}

.about .lead {
  text-align: center;
  color: #d9d9e2;
  margin: 0 auto
}

.about .lead.highlight {
  position: relative;
  display: block;
  width: fit-content;
  text-align: center;
  margin: 6px auto 16px
}

.about .lead.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .8), rgba(47, 89, 255, .5));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.cases-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto 8px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35)
}

.cases-subtitle {
  position: relative;
  display: block;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  margin: 6px auto 26px
}

.cases-subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 280px;
  max-width: 80vw;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.five-elements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 22px auto
}

.element {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, #15151b, #121217);
  backdrop-filter: saturate(140%) blur(2px);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #e7e7ea;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  min-height: 190px;
  justify-content: flex-start;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45)
}

.element::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(242, 214, 129, .55), rgba(47, 89, 255, .45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: x;
  mask-composite: exclude;
  animation: shineSweep 6s ease-in-out infinite
}

.element::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 214, 129, 1), rgba(242, 214, 129, .2));
  filter: blur(.4px);
  animation: sparkle 3.2s ease-in-out infinite
}

@keyframes shineSweep {
  0% {
    opacity: .25
  }

  50% {
    opacity: .6
  }

  100% {
    opacity: .25
  }
}

@keyframes sparkle {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.6)
  }

  100% {
    transform: scale(1)
  }
}

.element-more {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d681, var(--gold));
  color: #101014;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(255, 223, 140, .6);
  box-shadow: 0 10px 24px rgba(242, 214, 129, .28);
  cursor: default;
  transition: transform .15s ease, box-shadow .15s ease;
  align-self: center;
  margin-top: 6px
}

.element:hover .element-more {
  transform: translateY(-1px)
}

.element:active {
  transform: translateY(1px) scale(.98)
}

.element-more:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(242, 214, 129, .22)
}

.element:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .45);
  border-color: rgba(255, 255, 255, .18)
}

.element-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(242, 214, 129, .22), rgba(47, 89, 255, .12));
  border: 1px solid rgba(255, 255, 255, .14)
}

.element-title {
  font-size: 17px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.element-sub {
  display: none
}

.element-desc {
  font-size: 14px;
  color: #cfcfd6;
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

@media (max-width:560px) {
  .element-more {
    display: none
  }

  .element-desc {
    -webkit-line-clamp: 4;
    line-clamp: 4;
    text-align: center
  }
}

@media (max-width:560px) {
  .element {
    pointer-events: none
  }
}

.element.qs:hover {
  border-color: #2f59ff;
  box-shadow: 0 12px 34px rgba(47, 89, 255, .22)
}

.element.arq:hover {
  border-color: #f2d681;
  box-shadow: 0 12px 34px rgba(242, 214, 129, .22)
}

.element.prom:hover {
  border-color: #2f59ff;
  box-shadow: 0 12px 34px rgba(47, 89, 255, .22)
}

.element.imp:hover {
  border-color: #f2d681;
  box-shadow: 0 12px 34px rgba(242, 214, 129, .22)
}

.element.cod:hover {
  border-color: #2f59ff;
  box-shadow: 0 12px 34px rgba(47, 89, 255, .22)
}

.element:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px
}

.about .grid {
  gap: 22px
}

.about .card {
  border-radius: 20px;
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, #141419, #101016);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45)
}

.about .lead {
  color: #d9d9e2;
  font-size: 18px
}

.badges {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  color: #e7e7ea;
  font-weight: 700
}

.method {
  padding: 60px 0
}

.method h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.method .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 780px;
  text-align: center;
  margin: 4px auto 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.method .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.culture {
  padding: 60px 0
}

.culture h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.culture .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 780px;
  text-align: center;
  margin: 4px auto 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.culture .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.cases {
  padding: 60px 0
}

.brands-showcase {
  border: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, #121217, #0f0f14);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  max-width: 1200px;
  margin: 0 auto 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 14px, black calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 14px, black calc(100% - 14px), transparent 100%)
}

.cases-legal {
  color: #8b8b96;
  text-align: center;
  font-size: 12px;
  margin-top: 6px
}

.brands-grid {
  display: none
}

.brands-showcase .auto-track {
  display: flex;
  align-items: center;
  gap: 0;
  will-change: transform;
  padding: 0
}

.brands-showcase .brand-card {
  min-width: 180px
}

.brand-card {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  flex: 0 0 auto;
  margin: 0
}

.brand-card::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .75), rgba(47, 89, 255, .45));
  border-radius: 2px;
  opacity: .6
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
  border-color: rgba(255, 255, 255, .16)
}

.brand-img {
  max-height: 84px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease
}

.brand-card:hover .brand-img {
  filter: grayscale(0) brightness(1.05);
  opacity: 1;
  transform: scale(1.02)
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 12px auto 0
}

.flip-card {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer
}

.flip-inner {
  position: relative;
  height: 160px;
  border-radius: 16px;
  perspective: 1000px;
  transform-style: preserve-3d
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  backface-visibility: hidden
}

.flip-front {
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  flex-direction: column;
  gap: 8px
}

.flip-back {
  background: linear-gradient(180deg, #0f0f14, #0d0d12);
  border: 1px solid rgba(255, 255, 255, .12);
  transform: rotateY(180deg);
  color: #d9d9e2
}

.flip-title {
  font-size: 18px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.flip-icon {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.flip-card:hover .flip-inner {
  transition: transform .5s ease;
  transform: rotateY(180deg)
}

.flip-card.flipped .flip-inner {
  transition: transform .5s ease;
  transform: rotateY(180deg)
}

@media (max-width:980px) {
  .flip-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .flip-grid {
    grid-template-columns: 1fr
  }
}

.pnla-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 12px auto 0;
  justify-items: center
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  font-weight: 700;
  color: #101014;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
  transform: rotate(-1.5deg);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, opacity .22s ease;
  animation: bob 6s ease-in-out infinite;
  will-change: transform, box-shadow, filter;
  overflow: hidden
}

.tile:nth-child(3n+1) {
  transform: rotate(-2deg)
}

.tile:nth-child(3n+2) {
  transform: rotate(-1deg)
}

.tile:nth-child(3n+3) {
  transform: rotate(-1.5deg)
}

.tile:nth-child(odd) {
  animation-delay: .6s
}

.tile:nth-child(3n+2) {
  animation-delay: 1.2s
}

.tile .tile-icon {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  font-size: 22px
}

.tile .tile-title {
  font-size: 18px
}

.tile .tile-desc {
  font-size: 14px;
  color: #0d0d12;
  opacity: .9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.tile:hover {
  transform: translateY(-6px) rotate(0deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  filter: saturate(120%)
}

.tile.active {
  transform: translateY(-2px) rotate(0deg)
}

.tile.active .tile-desc {
  -webkit-line-clamp: 12;
  line-clamp: 12
}

.tile::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 12px;
  width: 28px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .35)
}

.tile::before {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .45) 45%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-12deg);
  filter: blur(1px);
  opacity: 0;
  animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none
}

.tile.gold {
  background: linear-gradient(180deg, #ffe7a6, #ffd46f)
}

.tile.blue {
  background: linear-gradient(180deg, #a8c7ff, #6ea2ff)
}

.tile.pink {
  background: linear-gradient(180deg, #ffc6e0, #ff8fc2)
}

.tile.cyan {
  background: linear-gradient(180deg, #b9f2ff, #7ee6ff)
}

.tile.purple {
  background: linear-gradient(180deg, #e1c6ff, #b994ff)
}

.tile.green {
  background: linear-gradient(180deg, #d6ffd1, #98f5a3)
}

.tile.amber {
  background: linear-gradient(180deg, #ffe6c3, #ffc98a)
}

.tile.teal {
  background: linear-gradient(180deg, #c6fff2, #7de8cf)
}

.tile.rose {
  background: linear-gradient(180deg, #ffd3d9, #ff9aa8)
}

@keyframes bob {
  0% {
    transform: translateY(0) rotate(-1.6deg)
  }

  25% {
    transform: translateY(-2px) rotate(-1.0deg)
  }

  50% {
    transform: translateY(-4px) rotate(-.6deg)
  }

  75% {
    transform: translateY(-2px) rotate(-1.0deg)
  }

  100% {
    transform: translateY(0) rotate(-1.6deg)
  }
}

@keyframes sheen {
  0% {
    left: -60%;
    opacity: 0
  }

  10% {
    opacity: .0
  }

  35% {
    opacity: .35
  }

  55% {
    opacity: .2
  }

  100% {
    left: 120%;
    opacity: 0
  }
}

@keyframes iconFloat {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-3px)
  }

  100% {
    transform: translateY(0)
  }
}

@media (max-width:980px) {
  .pnla-tiles {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .pnla-tiles {
    grid-template-columns: 1fr
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overscroll-behavior: contain
}

.modal.show {
  display: flex
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 9, .65);
  backdrop-filter: saturate(180%) blur(6px);
  opacity: 0;
  transition: opacity .25s ease
}

.modal.show .modal-backdrop {
  opacity: 1
}

.modal.closing .modal-backdrop {
  opacity: 0
}

.modal-dialog {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(900px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 auto;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(242, 214, 129, .22);
  border-radius: 18px;
  box-shadow: 0 40px 140px rgba(0, 0, 0, .65), 0 20px 60px rgba(242, 214, 129, .08);
  padding: 24px 16px 16px;
  opacity: 0;
  transform: translateY(-14px) scale(.98);
  transition: opacity .25s ease, transform .25s ease;
  overscroll-behavior: contain;
  touch-action: pan-y
}

@supports (scrollbar-color: auto) {
  .modal-dialog {
    scrollbar-color: #f2d681 #0f0f14;
    scrollbar-width: thin
  }
}

.modal-dialog::-webkit-scrollbar {
  width: 10px;
  height: 10px
}

.modal-dialog::-webkit-scrollbar-track {
  background: #0f0f14;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1)
}

.modal-dialog::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2f59ff, #36b8ff, #f2d681);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 0 8px rgba(242, 214, 129, .25)
}

@media (max-width:560px) {
  .modal-dialog {
    width: 94vw;
    box-sizing: border-box;
    max-height: 86vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 12px 14px;
    margin: 0 auto;
    touch-action: pan-y
  }
}

.modal.show .modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.modal.closing .modal-dialog {
  opacity: 0;
  transform: translateY(-12px) scale(.98)
}

.modal-title {
  margin: 0 0 8px;
  font-size: 22px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35)
}

.modal-title::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.modal-body {
  color: #cfcfd6;
  font-size: 15px;
  line-height: 1.55
}

.poster-frame {
  width: 100%;
  max-width: 780px;
  margin: 8px auto;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(242, 214, 129, .55), rgba(47, 89, 255, .45));
}

.poster-frame .course-poster {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 13px;
  background: #0d0d12
}

@media (max-width:560px) {
  .poster-frame {
    max-width: 92vw
  }

  .poster-frame .course-poster {
    aspect-ratio: 16/9
  }
}

.course-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 10px 0
}

.course-meta .chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #15151b, #121217);
  font-weight: 700;
  color: #e7e7ea;
  font-size: 14px
}

.course-reqs {
  margin-top: 8px
}

.course-reqs h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #cfcfd6
}

.course-reqs ul {
  margin: 0;
  padding-left: 18px;
  color: #cfcfd6;
  font-size: 14px
}

.modal-body .link {
  color: #c1992f;
  text-decoration: none;
  font-weight: 700
}

.modal-body .link:hover {
  color: #f2d681
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 32px;
  width: 32px;
  border-radius: 8px;
  border: 1px solid rgba(242, 214, 129, .35);
  background: linear-gradient(180deg, #1b1b22, #15151b);
  color: #e7e7ea;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35)
}

.modal-close:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45)
}

.blog {
  padding: 60px 0
}

.values {
  padding: 60px 0
}

.values h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.values .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 780px;
  text-align: center;
  margin: 4px auto 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.values .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.trientes {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 6px auto 14px
}

.vuela-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.acc-item {
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  overflow: hidden
}

.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  color: #e7e7ea;
  font-weight: 800;
  cursor: pointer
}

.acc-left {
  display: flex;
  align-items: center;
  gap: 10px
}

.acc-icon {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.acc-title {
  font-size: 18px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.acc-caret {
  transition: transform .25s ease;
  color: #cfcfd6
}

.acc-item.open .acc-caret {
  transform: rotate(180deg)
}

.acc-body {
  color: #d9d9e2;
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease
}

.acc-item.open .acc-body {
  max-height: 200px;
  padding: 0 16px 16px
}

.policy {
  padding: 60px 0
}

.policy h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.policy .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.policy .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.sentir-stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto 14px
}

.sentir-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 214, 129, .35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  color: #101014;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  background: linear-gradient(135deg, var(--gold), var(--gold-2))
}

.sentir-tab .letter {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: rgba(16, 16, 22, .9);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.sentir-tab .name {
  color: #101014
}

.sentir-tab:hover {
  transform: translateY(-3px)
}

.sentir-tab.active {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .55)
}

.sentir-tab.s,
.sentir-tab.e,
.sentir-tab.n,
.sentir-tab.t,
.sentir-tab.i,
.sentir-tab.r {
  background: linear-gradient(135deg, var(--gold), var(--gold-2))
}

.sentir-tab:hover {
  transform: translateY(-3px);
  filter: brightness(1.06)
}

.sentir-tab.active {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
  border-color: rgba(242, 214, 129, .65)
}

.sentir-tab.done {
  box-shadow: 0 28px 80px rgba(242, 214, 129, .30);
  border-color: rgba(242, 214, 129, .55)
}

.sentir-panel {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 18px
}

.panel-title {
  margin: 0 0 6px;
  font-size: 22px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.panel-body {
  color: #d9d9e2
}

.panel-meta {
  color: #8b8b96;
  font-size: 14px;
  margin-top: 8px
}

.sentir-banner {
  max-width: 1100px;
  margin: 12px auto 0;
  text-align: center;
  padding: 10px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #17171d, #101016);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  background-image: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.sentir-tab.done {
  box-shadow: 0 28px 80px rgba(242, 214, 129, .30)
}

.policy-progress {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  height: 14px;
  margin: 0 auto 14px;
  max-width: 1100px
}

.policy-progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f2d681, #2f59ff);
  transition: width .25s ease
}

.policy-progress .label {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #e7e7ea
}

@media (max-width:980px) {
  .sentir-stepper {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:560px) {
  .sentir-stepper {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: stretch
  }

  .sentir-tab {
    width: 100%;
    justify-self: stretch;
    justify-content: flex-start
  }

  .sentir-tab .name {
    text-align: left
  }
}

.ethics {
  padding: 60px 0
}

.ethics h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.ethics .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.ethics .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.ethics-shield {
  max-width: 1100px;
  margin: 0 auto
}

.ethics-progress {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  height: 18px;
  margin-bottom: 12px
}

.ethics-progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f2d681, #2f59ff);
  transition: width .25s ease
}

.ethics-progress .label {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #e7e7ea
}

@keyframes wiggle {
  0% {
    transform: translate(-50%, -50%) rotate(0)
  }

  25% {
    transform: translate(-50%, -53%) rotate(-8deg)
  }

  50% {
    transform: translate(-50%, -50%) rotate(0)
  }

  75% {
    transform: translate(-50%, -47%) rotate(8deg)
  }

  100% {
    transform: translate(-50%, -50%) rotate(0)
  }
}

.audit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.ethics-banner {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  margin: 10px auto 0;
  padding: 10px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #17171d, #101016);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  background-image: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.audit-item {
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-auto-rows: auto;
  gap: 12px;
  align-items: center
}

.ai-left {
  display: flex;
  align-items: center;
  gap: 10px
}

.ai-icon {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.ai-title {
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.ai-desc {
  color: #d9d9e2;
  grid-column: 1/3;
  grid-row: 2;
  margin-top: 6px
}

.ai-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #15151b;
  color: #e7e7ea;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  min-width: 100px
}

.audit-item.checked .ai-toggle {
  background: linear-gradient(135deg, #f2d681, #c1992f);
  color: #101014;
  border: 1px solid rgba(255, 223, 140, .6);
  box-shadow: 0 10px 24px rgba(242, 214, 129, .28)
}

@media (max-width:980px) {
  .audit-list {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .audit-list {
    grid-template-columns: 1fr
  }

  .audit-item {
    grid-template-columns: 1fr
  }

  .ai-desc {
    grid-column: 1;
    grid-row: 2
  }

  .ai-toggle {
    justify-self: end
  }
}

.guarantee {
  padding: 60px 0
}

.guarantee h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.guarantee .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.guarantee .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.guarantee-ribbons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto
}

.ribbon {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 16px;
  overflow: hidden
}

.ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, #f2d681, #2f59ff);
  opacity: .8
}

.ribbon .icon {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.ribbon .title {
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.ribbon p {
  color: #d9d9e2;
  margin: 4px 0 0
}

@media (max-width:980px) {
  .guarantee-ribbons {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .guarantee-ribbons {
    grid-template-columns: 1fr
  }
}

.culture-int {
  padding: 60px 0
}

.culture-int h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.culture-int .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.culture-int .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.culture-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto
}

.quote-card {
  position: relative;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 18px;
  overflow: hidden
}

.quote-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f2d681, #2f59ff);
  opacity: .9
}

.quote-icon {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  margin-left: 8px
}

.quote-title {
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 8px 0 6px
}

.quote-card p {
  color: #d9d9e2;
  margin: 0
}

@media (max-width:980px) {
  .culture-quotes {
    grid-template-columns: 1fr
  }
}

.experience {
  padding: 80px 0
}

.experience h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.experience .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.experience .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  justify-items: center
}

.exp-card {
  position: relative;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 22px 28px;
  overflow: hidden;
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.exp-card::before {
  content: none
}

.exp-icon {
  height: 72px;
  width: 72px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(242, 214, 129, .22), rgba(47, 89, 255, .12));
  border: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  margin-left: 8px
}

.exp-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 10px 0 10px
}

.exp-card p {
  color: #d9d9e2;
  margin: 0;
  text-align: center
}

.exp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px
}

.exp-cta {
  margin-top: 12px;
  color: #e7e7ea;
  font-weight: 800
}

.exp-play {
  height: 72px;
  width: 120px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #f2d681, var(--gold));
  color: #101014;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(242, 214, 129, .28);
  transition: transform .15s ease, box-shadow .15s ease;
  font-size: 18px
}

.exp-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(242, 214, 129, .35)
}

.exp-play:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(242, 214, 129, .22)
}

.exp-eq {
  display: none
}

@media (max-width:980px) {
  .exp-grid {
    grid-template-columns: 1fr
  }
}

.identity {
  padding: 60px 0
}

.identity h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.identity .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .2px;
  line-height: 1.35
}

.identity .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.id-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto
}

.id-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 16px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease
}

.id-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55)
}

.id-icon {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.id-title {
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.id-spotlight {
  max-width: 1100px;
  margin: 14px auto 0;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 18px
}

.spot-title {
  margin: 0 0 6px;
  font-size: 22px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.spot-body {
  color: #d9d9e2
}

@media (max-width:980px) {
  .id-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .id-grid {
    grid-template-columns: 1fr
  }
}

.muted {
  color: #c9c9d1
}

.cta {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, .08), transparent);
  position: relative;
  overflow: hidden
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px
}

.cta-actions {
  display: flex;
  gap: 18px;
  margin-top: 24px
}

.cta-logo {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 24px 0 28px
}

.cta-logo::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 160%;
  height: 160%;
  left: -30%;
  top: -40%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, .35), transparent 60%);
  filter: blur(18px);
  animation: pulseGlow 5s ease-in-out infinite
}

.cta-logo img {
  width: 420px;
  max-width: 72vw;
  height: auto;
  filter: drop-shadow(0 50px 140px rgba(212, 175, 55, .5)) drop-shadow(0 20px 44px rgba(212, 175, 55, .25))
}

.cta-contacts {
  display: flex;
  gap: 22px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: #c9c9d1
}

.cta-contacts .link {
  color: #c1992f;
  text-decoration: none
}

.cta-contacts .link:hover {
  color: #f2d681
}

.cta-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.cta-social .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease
}

.cta-social .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
  border-color: rgba(242, 214, 129, .5)
}

.cta-social .social-btn svg {
  width: 22px;
  height: 22px;
  fill: #f2d681
}

@media (max-width:560px) {
  .cta-social {
    gap: 12px
  }

  .cta-social .social-btn {
    width: 38px;
    height: 38px
  }

  .cta-social .social-btn svg {
    width: 20px;
    height: 20px
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #0d0d12
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.footer-links a {
  color: #c9c9d1;
  text-decoration: none
}

.footer-links a:hover {
  color: #fff
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer-contact a {
  color: #c9c9d1;
  text-decoration: none
}

.footer-contact a:hover {
  color: #fff
}

.legal {
  text-align: center;
  color: #8b8b96;
  padding: 12px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.legal .link {
  color: #c1992f;
  text-decoration: none
}

.legal .link:hover {
  color: #f2d681
}

.policy-page {
  padding: 80px 0
}

.policy-page h2 {
  text-align: center;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.policy-page .subtitle {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 820px;
  text-align: center;
  margin: 4px auto 24px;
  font-weight: 400;
  color: #ffffff
}

.policy-page .subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 214, 129, .85), rgba(47, 89, 255, .55));
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(242, 214, 129, .25)
}

.doc {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 18px;
  color: #d9d9e2
}

.doc-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px
}

@media (max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .pillars {
    position: static;
    right: auto;
    margin-top: 16px
  }

  .grid.three {
    grid-template-columns: 1fr
  }

  .grid.four {
    grid-template-columns: 1fr 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .nav {
    display: none
  }

  .burger {
    display: flex
  }

  .ctas {
    display: flex
  }
}

@media (max-width:560px) {
  .grid.two {
    grid-template-columns: 1fr
  }

  .grid.three {
    grid-template-columns: 1fr
  }

  .grid.four {
    grid-template-columns: 1fr
  }

  .grid.five {
    grid-template-columns: 1fr
  }

  .five-elements {
    grid-template-columns: 1fr
  }

  .element {
    padding: 14px
  }

  .element-icon {
    height: 38px;
    width: 38px
  }

  .btn.xl {
    font-size: 16px
  }

  .logo-hero {
    width: 360px
  }
}

@media (max-width:980px) {
  .five-elements {
    grid-template-columns: repeat(3, 1fr)
  }
}

.about {
  padding: 48px 0 28px
}

@media (max-width:560px) {
  .five-elements {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .element {
    width: 100%
  }
}

/* Botón volver en catálogo (solo móvil) */
.mobile-actions {
  display: none
}

@media (max-width:560px) {
  .mobile-actions {
    display: block
  }

  .mobile-back {
    display: block;
    width: min(340px, 86vw);
    margin: 10px auto 16px
  }
}

/* Overrides premium */
.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 18px
}

.hero-brand-row .badge {
  height: 80px;
  width: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none
}

.hero-taglines {
  margin-top: 26px
}

.hero-actions {
  margin-top: 40px
}

.hero-taglines .microcopy.muted {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .2px
}

@media (max-width:560px) {
  .hero-taglines .microcopy.muted {
    font-size: 18px
  }
}

.btn {
  font-weight: 700
}

.btn.primary {
  background: linear-gradient(135deg, #f2d681, var(--gold));
  color: #101014;
  border: 1px solid rgba(255, 223, 140, .6);
  box-shadow: 0 10px 34px rgba(242, 214, 129, .28), inset 0 0 .75px rgba(255, 255, 255, .4)
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(242, 214, 129, .38)
}

html {
  scroll-behavior: smooth
}

body {
  background: #0f0f14
}

main {
  background: transparent
}

main {
  scroll-snap-type: none
}

.dot-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100
}

.dot-nav a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5a5a66;
  opacity: .6;
  display: block;
  transition: transform .2s ease, opacity .2s ease, background .2s ease
}

.dot-nav a:hover {
  opacity: 1;
  transform: scale(1.2)
}

.dot-nav a.active {
  background: var(--gold);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .25)
}

@media (max-width:560px) {
  .dot-nav {
    display: none
  }
}

.modal-brand {
  position: absolute;
  top: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.modal-brand img {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 195, 255, .25))
}

/* Ruta Premium — gráfica exponencial */
.route-chart {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  overflow: hidden
}

@media (min-width:981px) {
  .route-chart {
    min-height: 640px
  }
}

@media (max-width:980px) {
  .route-chart {
    min-height: auto
  }
}

.route-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 6px
}

.kpi-panel {
  background: #0f0f14cc;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 12px;
  backdrop-filter: saturate(180%) blur(6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45)
}

.kpi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px
}

.kpi-item:last-child {
  margin-bottom: 0
}

.kpi-item span {
  color: #cfcfd6;
  font-weight: 700
}

.kpi-item strong {
  color: #f2d681
}

@media (max-width:980px) {
  .route-layout {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .kpi-panel {
    order: -1
  }
}

.route-svg {
  width: 100%;
  height: 560px;
  filter: drop-shadow(0 18px 40px rgba(47, 89, 255, .25));
  z-index: 1
}

.route-path {
  filter: url(#routeGlow);
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  opacity: .9;
  animation: drawRoute 1.6s ease-out forwards, pathPulse 3s ease-in-out infinite
}

@keyframes pathPulse {
  0% {
    opacity: .85
  }

  50% {
    opacity: 1
  }

  100% {
    opacity: .85
  }
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0
  }
}

.progress-path {
  stroke: url(#routeStroke);
  stroke-width: 9;
  opacity: .95;
  filter: url(#routeGlow);
  stroke-linecap: round;
  stroke-dasharray: 220 980;
  animation: travel 2.4s linear infinite, pulseElectric 1.8s ease-in-out infinite
}

@keyframes pulseElectric {
  0% {
    stroke-width: 9;
    opacity: .9
  }

  50% {
    stroke-width: 11;
    opacity: 1
  }

  100% {
    stroke-width: 9;
    opacity: .9
  }
}

@keyframes travel {
  0% {
    stroke-dashoffset: 0
  }

  100% {
    stroke-dashoffset: -1200
  }
}

.milestone .dot {
  fill: #f2d681;
  filter: drop-shadow(0 0 12px rgba(242, 214, 129, .55))
}

.exp-glow {
  fill: url(#expGrad);
  opacity: .6
}

.milestones {
  position: absolute;
  inset: 0;
  pointer-events: auto;
  z-index: 3
}

.milestone-info {
  position: absolute;
  width: min(280px, 36vw);
  pointer-events: auto;
  background: #121217cc;
  border: 1px solid rgba(242, 214, 129, .22);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  backdrop-filter: saturate(180%) blur(6px);
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 4
}

.step-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  height: 32px;
  min-width: 32px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  color: #101014;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 223, 140, .6);
  box-shadow: 0 10px 24px rgba(242, 214, 129, .28)
}

.milestone-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .55)
}

.milestone-info .icon {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 10px;
  background: #0f0f14;
  margin-bottom: 8px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, .08)
}

.milestone-info h3 {
  margin: 0 0 6px;
  font-size: 17px
}

.milestone-info p {
  margin: 0;
  color: #cfcfd6;
  font-size: 13px
}

@media (max-width:980px) {
  .route-svg {
    height: 300px
  }

  .milestone-info {
    width: 86vw;
    left: 50% !important;
    transform: translateX(-50%)
  }

  .milestone-info:nth-child(1) {
    top: 220px !important
  }

  .milestone-info:nth-child(2) {
    top: 120px !important
  }

  .milestone-info:nth-child(3) {
    top: 26px !important
  }
}

.ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none
}

.tick-label {
  position: absolute;
  background: #0f0f14cc;
  border: 1px solid rgba(255, 255, 255, .1);
  color: #e7e7ea;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 12px;
  backdrop-filter: saturate(180%) blur(6px)
}

.chart-legend {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: center;
  background: #0f0f14cc;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 8px 10px;
  backdrop-filter: saturate(180%) blur(6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45)
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 6px 10px;
  flex: 0 0 auto;
  font-size: 13px
}

.stat .val {
  color: #f2d681;
  font-weight: 800
}

.crown {
  position: absolute;
  right: 90px;
  top: 52px;
  font-size: 64px;
  line-height: 1;
  filter: none;
  color: var(--gold)
}

@keyframes crownPulse {
  0% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-2px) scale(1.06)
  }

  100% {
    transform: translateY(0) scale(1)
  }
}

.tile .tile-icon {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  font-size: 22px;
  animation: iconFloat 5s ease-in-out infinite
}

.game-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 40%, rgba(20, 20, 28, .95), rgba(10, 10, 16, .98));
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.game-overlay[hidden] {
  display: none !important
}

.game-ui {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px
}

.countdown {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #e7e7ea;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800
}

.game-progress {
  width: 60vw;
  height: 10px;
  border-radius: 999px;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden
}

.game-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f2d681, #2f59ff)
}

.game-hint {
  color: #cfcfd6;
  font-size: 22px;
  font-weight: 800
}

.game-cta {
  position: absolute;
  top: 66px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .8px;
  background-image: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .55);
  filter: drop-shadow(0 8px 26px rgba(242, 214, 129, .16));
  opacity: 1;
  transition: opacity .24s ease, transform .24s ease;
  animation: ctaPulse 1.6s ease-in-out infinite
}

.game-cta.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(-6px) scale(.96);
  pointer-events: none
}

@keyframes ctaPulse {
  0% {
    transform: translateX(-50%) scale(1)
  }

  50% {
    transform: translateX(-50%) scale(1.06)
  }

  100% {
    transform: translateX(-50%) scale(1)
  }
}

.game-inline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 10px 0;
  width: 100%
}

.game-inline .game-ui {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  margin-bottom: 6px;
  width: 100%;
  display: flex;
  justify-content: center
}

.game-inline .game-progress {
  width: 92%;
  max-width: 1000px
}

.game-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px
}

.game-inline .game-hint {
  color: #e7e7ea;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  background-image: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.game-inline .countdown {
  margin-top: -2px
}

.game-advance {
  appearance: none;
  border: none;
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .3px;
  background: linear-gradient(90deg, #ff2442, #b3001a);
  color: #fff;
  box-shadow: 0 14px 44px rgba(255, 36, 66, .35);
  cursor: pointer
}

.game-advance:active {
  transform: translateY(1px)
}

.game-advance.gold {
  background: linear-gradient(135deg, #f2d681, var(--gold));
  color: #101014;
  border: 1px solid rgba(255, 223, 140, .6);
  box-shadow: 0 10px 24px rgba(242, 214, 129, .28)
}

.game-advance.red {
  background: linear-gradient(90deg, #ff2442, #b3001a);
  color: #fff;
  border: none;
  box-shadow: 0 14px 44px rgba(255, 36, 66, .35)
}

.city-skyline {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  opacity: .9;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .55));
  pointer-events: none
}

.game-track::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .95) 0 14px, rgba(255, 255, 255, 0) 14px 28px);
  opacity: .9
}

.game-track {
  position: relative;
  width: calc(100% - 24px);
  min-width: 100%;
  height: 200px;
  border-radius: 18px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55);
  overflow: hidden;
  margin: 0 12px
}

.smoke {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.smoke span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 240, 240, .75), rgba(240, 240, 240, 0) 60%);
  filter: blur(1.5px);
  opacity: .9;
  animation: puff .9s ease-out forwards
}

@keyframes puff {
  0% {
    transform: translate(0, 0) scale(.6);
    opacity: .9
  }

  100% {
    transform: translate(-44px, -18px) scale(1.8);
    opacity: 0
  }
}

.car {
  position: absolute;
  left: 24px;
  bottom: 18px;
  font-size: 64px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .6));
  transform: scaleX(-1)
}

.car {
  transition: transform .12s ease, filter .12s ease
}

.car.boost {
  transform: scaleX(-1) translateX(2px) scale(1.06);
  filter: drop-shadow(0 16px 44px rgba(242, 214, 129, .26))
}

.finish {
  position: absolute;
  right: 18px;
  bottom: 26px;
  font-size: 38px
}

.game-close {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 38px;
  width: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: #e7e7ea;
  font-weight: 800;
  cursor: pointer
}

.confetti {
  pointer-events: none;
  position: absolute;
  inset: 0
}

.confetti span {
  position: absolute;
  width: 8px;
  height: 14px;
  transform: rotate(20deg);
  opacity: 0;
  animation: fall 1200ms ease-in forwards
}

@keyframes fall {
  0% {
    opacity: 1;
    transform: translateY(-20px) rotate(0deg)
  }

  100% {
    opacity: 0;
    transform: translateY(600px) rotate(180deg)
  }
}

.game-track .flash {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(242, 214, 129, .65);
  box-shadow: 0 0 0 2px rgba(47, 89, 255, .28), 0 0 18px rgba(242, 214, 129, .18);
  transform: translate(-50%, -50%) scale(.6);
  opacity: .9;
  animation: flashPop .42s ease-out forwards;
  pointer-events: none
}

@keyframes flashPop {
  0% {
    transform: translate(-50%, -50%) scale(.6);
    opacity: .9
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0
  }
}

.achv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto
}

.achv {
  position: relative;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease
}

.achv:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .6)
}

.medal {
  position: relative;
  height: 150px;
  width: 150px;
  margin: 4px auto 8px
}

.medal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #f2d681 360deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45)
}

.medal::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .06)
}

.medal-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.medal-icon {
  height: 28px;
  width: 28px;
  color: #f2d681
}

.medal-percent {
  font-weight: 900;
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55)
}

.achv-title {
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px
}

.achv p {
  color: #d9d9e2
}

.stamp {
  position: absolute;
  right: 14px;
  top: 14px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  border: 1px dashed rgba(242, 214, 129, .65);
  color: #f2d681;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .0;
  transform: scale(.6);
  transition: opacity .25s ease, transform .25s ease
}

.achv.claimed .stamp {
  opacity: 1;
  transform: scale(1)
}

.achv-track {
  max-width: 1100px;
  margin: 12px auto 0
}

.track-bar {
  height: 10px;
  border-radius: 999px;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden
}

.track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f2d681, #2f59ff);
  transition: width .25s ease
}

.track-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 6px
}

.step {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #e7e7ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800
}

.step.done {
  background: linear-gradient(180deg, #ffe7a6, #ffd46f);
  color: #101014;
  border: 1px solid rgba(255, 223, 140, .6)
}

@media (max-width:980px) {
  .achv-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .achv-grid {
    grid-template-columns: 1fr
  }
}

.guarantee-total {
  max-width: 1100px;
  margin: 10px auto 0;
  text-align: center;
  padding: 10px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #17171d, #101016);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  font-weight: 900;
  font-size: 22px;
  background-image: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.guarantee-total[hidden] {
  display: none
}

.glow {
  position: relative;
  height: 120px;
  width: 120px;
  margin: 4px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.glow::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(242, 214, 129, .35), rgba(47, 89, 255, .18) 55%, transparent 70%);
  filter: blur(8px);
  animation: pulse 2.6s ease-in-out infinite
}

.glow::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(242, 214, 129, .28), inset 0 0 24px rgba(242, 214, 129, .16)
}

.glow-icon {
  height: 42px;
  width: 42px;
  color: #f2d681;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .55))
}

.glow-percent {
  position: absolute;
  bottom: 6px;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55)
}

@keyframes pulse {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }

  100% {
    transform: scale(1)
  }
}

.vuela-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr;
  gap: 18px;
  align-items: stretch
}

.vuela-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.v-item {
  --accent: #f2d681;
  --accent-2: #c1992f;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative
}

.v-item::after {
  content: attr(data-letter);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 32px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .95;
  text-shadow: 0 0 9px rgba(242, 214, 129, .45), 0 0 16px rgba(242, 214, 129, .25)
}

@media (max-width:560px) {
  .v-item {
    padding-right: 56px
  }

  .v-item::after {
    right: 12px;
    font-size: 28px
  }
}

.v-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
  border-color: color-mix(in oklab, var(--accent) 60%, transparent)
}

.v-icon {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.v-title {
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.v-item:hover .v-icon {
  border-color: var(--accent-2);
  background: color-mix(in oklab, var(--accent) 20%, transparent)
}

.v-item:nth-child(1) {
  --accent: #f2d681;
  --accent-2: #c1992f
}

.v-item:nth-child(2) {
  --accent: #77ffaa;
  --accent-2: #16d48b
}

.v-item:nth-child(3) {
  --accent: #ffb36a;
  --accent-2: #ff5a39
}

.v-item:nth-child(4) {
  --accent: #80cfff;
  --accent-2: #2f59ff
}

.v-item:nth-child(5) {
  --accent: #ff96c7;
  --accent-2: #ff4f9a
}

.v-desc {
  color: #d9d9e2
}

.owl-ascend {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55);
  overflow: hidden;
  min-height: 280px
}

.owl-secret {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  font-size: 52px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .6));
  transition: bottom 800ms cubic-bezier(.2, .8, .2, 1)
}

.owl-secret.fly {
  bottom: 86%
}

.ascend-crown {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  font-size: 68px;
  line-height: 1;
  filter: drop-shadow(0 14px 40px rgba(242, 214, 129, .55))
}

@media (max-width:980px) {
  .vuela-grid {
    grid-template-columns: 1fr
  }
}

.values-carousel {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  overflow: hidden;
  padding: 12px
}

.values-carousel .auto-track {
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform
}

.values-carousel .brand-card {
  min-width: 220px
}

.reward-modal {
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 40%, rgba(20, 20, 28, .92), rgba(10, 10, 16, .96));
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center
}

.reward-modal[hidden] {
  display: none !important
}

.reward-card {
  width: min(520px, 86vw);
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #17171d, #101016);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  color: #e7e7ea;
  position: relative;
  text-align: center
}

.reward-card h3 {
  margin: 0 0 8px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px
}

.reward-card .reward-actions {
  margin-top: 10px
}

.gift-float {
  position: fixed;
  left: 130px;
  bottom: 18px;
  height: 68px;
  width: 68px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: #ff4d4d;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gift-bounce 2.2s ease-in-out infinite;
  font-size: 36px;
  filter: drop-shadow(0 0 10px rgba(255, 60, 60, .55));
  pointer-events: auto
}

@keyframes gift-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.modal .gift {
  width: min(680px, 92vw)
}

.gift-hero {
  margin-bottom: 10px
}

.gift-hero img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal[hidden] {
  display: none !important
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 40%, rgba(20, 20, 28, .6), rgba(10, 10, 16, .8));
  backdrop-filter: blur(1.5px)
}

.modal-dialog {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  background: linear-gradient(180deg, #17171d, #101016);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  border-radius: 16px;
  color: #e7e7ea;
  padding: 18px;
  width: min(560px, 94vw);
  max-height: 86vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 auto;
  overscroll-behavior: contain;
  touch-action: pan-y
}

.modal-title {
  margin: 0 0 8px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  text-align: center
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #e7e7ea;
  font-size: 20px;
  cursor: pointer
}

.modal-actions {
  margin-top: 10px;
  text-align: center
}

#course-modal .modal-actions {
  display: flex;
  justify-content: center
}

#gift-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
  align-items: center;
  justify-content: center
}

#gift-modal.open {
  display: flex
}

.gift-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
  align-items: center;
  justify-content: center
}

.gift-overlay.open {
  display: flex
}

.gift-overlay.closing {
  display: flex
}

.gift-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 40%, rgba(20, 20, 28, .9), rgba(10, 10, 16, .95));
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .28s ease
}

.gift-overlay.open .gift-backdrop {
  opacity: 1
}

.gift-window {
  position: relative;
  width: min(980px, 96vw);
  max-height: 90vh;
  overflow: hidden;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(242, 214, 129, .32);
  border-radius: 18px;
  box-shadow: 0 40px 140px rgba(0, 0, 0, .65), 0 20px 60px rgba(242, 214, 129, .08);
  padding: 16px;
  color: #e7e7ea;
  opacity: 0;
  transform: translateY(20px) scale(.85);
  transition: opacity .32s cubic-bezier(.2, .8, .2, 1), transform .32s cubic-bezier(.2, .8, .2, 1)
}

.gift-overlay.open .gift-window {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.gift-overlay.closing .gift-backdrop {
  opacity: 0
}

.gift-overlay.closing .gift-window {
  opacity: 0;
  transform: translateY(16px) scale(.85)
}

.gift-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 16px;
  align-items: stretch;
  height: 100%
}

.gift-media {
  aspect-ratio: 1/1
}

.gift-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.gift-content {
  display: flex;
  flex-direction: column
}

.gift-title {
  margin: 0 0 6px;
  font-size: 18px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: left
}

.gift-close {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 32px;
  width: 32px;
  border-radius: 8px;
  border: 1px solid rgba(242, 214, 129, .35);
  background: linear-gradient(180deg, #1b1b22, #15151b);
  color: #e7e7ea;
  font-weight: 700;
  cursor: pointer
}

.gift-body {
  font-size: 13px;
  line-height: 1.45;
  color: #cfcfd6
}

.gift-body a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600
}

.gift-body a:hover {
  color: #f2d681
}

.gift-body p {
  margin: 0 0 8px
}

.gift-hero img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08)
}

@media (max-width:740px) {
  .gift-window {
    width: 92vw;
    max-height: 86vh
  }

  .gift-layout {
    grid-template-columns: 1fr
  }

  .gift-title {
    text-align: center
  }

  .gift-media {
    margin-bottom: 10px
  }
}

.gift-actions {
  text-align: center;
  margin-top: 10px
}

.gift-actions .btn {
  white-space: nowrap
}

.loader-overlay {
  position: fixed;
  inset: 0;
  background: #0b0b0e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  transition: opacity .45s ease
}

.loader-overlay.show {
  opacity: 1
}

.loader-overlay.hide {
  opacity: 0;
  pointer-events: none
}

.loader-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px
}

.loader-glow {
  position: absolute;
  left: -32px;
  top: -32px;
  right: -32px;
  bottom: -32px;
  border-radius: 999px;
  background: radial-gradient(120px 120px at 50% 50%, rgba(242, 214, 129, .35), rgba(47, 89, 255, .28) 60%, transparent 70%);
  filter: blur(18px);
  animation: glowPulse 2.4s ease-in-out infinite
}

.loader-logo {
  height: 96px;
  width: auto
}

.loader-ring {
  position: absolute;
  top: -18px;
  left: -18px;
  right: -18px;
  bottom: -18px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  opacity: .85;
  animation: ringPulse 2.2s ease-in-out infinite
}

@keyframes glowPulse {
  0% {
    transform: scale(.95);
    opacity: .8
  }

  50% {
    transform: scale(1.05);
    opacity: 1
  }

  100% {
    transform: scale(.95);
    opacity: .8
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(.96);
    opacity: .85
  }

  50% {
    transform: scale(1.02);
    opacity: 1
  }

  100% {
    transform: scale(.96);
    opacity: .85
  }
}

.catalog {
  padding: 80px 0
}

.catalog h2 {
  text-align: center;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 40px
}

.catalog-layout {
  display: block
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #13131a;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.pc-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
  background: #0d0d12;
  border: 1px solid rgba(242, 214, 129, .45);
  box-shadow: 0 8px 24px rgba(242, 214, 129, .15);
  aspect-ratio: 16/9;
  overflow: hidden
}

.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit
}

.pc-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center
}

.pc-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #e7e7ea;
  text-align: center
}

.pc-desc {
  color: #c9c9d1
}

.pc-meta {
  display: flex;
  align-items: center;
  gap: 10px
}

.pc-stars {
  display: inline-block;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  color: #f2d681;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700
}

.pc-rate {
  color: #cfcfd6;
  font-weight: 700
}

.pc-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 2px
}

.pc-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 999px;
  padding: 8px 12px;
  color: #c9c9d1;
  font-weight: 600
}

.pc-actions {
  margin-top: auto;
  display: flex
}

@media (max-width:980px) {
  .products-grid {
    grid-template-columns: 1fr 1fr
  }

  .product-card {
    flex-direction: column
  }
}

@media (max-width:560px) {
  .products-grid {
    grid-template-columns: 1fr
  }
}

.catalog-search {
  display: flex;
  justify-content: center;
  margin-bottom: 18px
}

.search-input {
  width: 100%;
  max-width: 560px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #2a2a31;
  background: #0f0f14;
  color: #e7e7ea
}

.course-hero {
  padding: 82px 0 16px;
  text-align: center
}

.course-hero h1 {
  margin: 0;
  background: linear-gradient(135deg, #f2d681, #c1992f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35);
  font-size: 56px;
  line-height: 1.1
}

.course-subtitle {
  display: inline-block;
  margin-top: 8px;
  color: #c9c9d1;
  font-weight: 700;
  letter-spacing: .2px
}

.course-section {
  padding: 10px 0 80px
}

.course-card {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
  padding: 18px;
  color: #d9d9e2
}

.course-media {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0d0d12;
  display: flex;
  align-items: center;
  justify-content: center
}

.course-media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain
}

.course-body {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.course-bullets {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px
}

.course-bullets li {
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 10px 12px;
  color: #cfcfd6;
  font-weight: 600
}

.course-actions {
  margin-top: 8px
}

.course-back {
  display: flex;
  justify-content: center;
  margin-top: 18px
}

@media (max-width:980px) {
  .course-card {
    grid-template-columns: 1fr
  }

  .course-media img {
    max-height: 320px
  }
}

.course-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}

.course-brand img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(242, 214, 129, .28))
}

@media (min-width:720px) {
  #course-modal .modal-dialog {
    width: min(820px, 94vw)
  }
}

#course-modal .course-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 12px
}

#course-modal .course-brand img {
  width: 360px;
  max-width: 85%;
  height: auto
}

#course-modal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

#course-modal .modal-body .microcopy {
  text-align: center
}

#course-modal .modal-actions .btn {
  margin-top: 6px
}

#course-modal .modal-dialog {
  opacity: 0;
  transform: translateY(16px) scale(.95);
  transition: opacity .22s cubic-bezier(.2, .8, .2, 1), transform .22s cubic-bezier(.2, .8, .2, 1)
}

#course-modal.show .modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1)
}

#course-modal.closing .modal-dialog {
  opacity: 0;
  transform: translateY(12px) scale(.95)
}

#course-modal .modal-close {
  z-index: 2
}

.pnla-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 10px
}

.pillar {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .6)
}

.pillar-icon {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  margin: 0 auto 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.pillar-title {
  font-weight: 900;
  font-size: 18px;
  background-image: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.pillar-desc {
  color: #d9d9e2;
  font-weight: 600
}

@media (max-width:980px) {
  .pnla-rail {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .pnla-rail {
    grid-template-columns: 1fr
  }
}

.end-star-overlay {
  position: absolute;
  left: calc(96% - 36px);
  top: calc(12.6% - 36px);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 56px;
  line-height: 1;
  text-shadow: 0 0 9px rgba(242, 214, 129, .45), 0 0 16px rgba(242, 214, 129, .25);
  z-index: 4
}

.route-chart {
  position: relative
}

.vuela-grid {
  display: flex;
  justify-content: center
}

.vuela-list {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto
}

.experience .container {
  max-width: 1280px
}

/* Cursor styles removed by user request - using default system cursor */
/* 
#cursor-dot { display: none !important; } 
*/
/* Cursor Visibility Reset */
body,
html,
* {
  cursor: auto !important;
}

a,
button,
[role="button"],
.btn,
input,
select,
textarea,
label {
  cursor: pointer !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  cursor: text !important;
}

#particles-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0
}

/* Optimización de renderizado: aplaza secciones fuera de pantalla */
@supports (content-visibility: auto) {

  .about,
  .proposal,
  .experience,
  .cases,
  .values,
  .guarantee,
  .method,
  .cta,
  .catalog,
  .policy-page {
    content-visibility: auto;
    contain-intrinsic-size: 800px
  }
}

/* Desactivar canvas decorativos en móvil */
@media (max-width:560px) {
  html {
    overflow-x: hidden
  }
}

/* Header móvil */
@media (max-width:560px) {
  .site-header {
    display: none
  }

  body {
    padding-top: 0
  }
}

.route-chart .milestones {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

@media (max-width:980px) {
  .route-chart .milestones {
    position: static;
    inset: auto;
    pointer-events: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px
  }

  .route-chart .milestone-info {
    position: static;
    width: auto;
    left: auto;
    top: auto;
    transform: none
  }
}

.crown {
  display: none
}

/* Ruta Premium: curva visible en escritorio, oculta en móvil */
.route-chart {
  position: relative
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 520px;
  pointer-events: none;
  z-index: 0
}

@media (max-width:980px) {
  .route-svg {
    display: none
  }

  .end-star-overlay {
    display: none
  }
}

@media (max-width:560px) {
  .chart-legend {
    display: none
  }
}

@media (max-width:560px) {
  .modal-dialog {
    width: 94vw;
    box-sizing: border-box;
    max-height: 86vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 16px 16px;
    margin: 0 auto;
    touch-action: pan-y
  }

  .modal-title {
    font-size: 18px;
    text-align: center
  }

  .modal-actions {
    display: flex;
    justify-content: center
  }

  .modal-actions .btn {
    width: 100%
  }
}

/* Ajustes móviles robustos para todos los modales */
@media (max-width:560px) {
  .modal-dialog {
    width: 94vw;
    box-sizing: border-box;
    max-height: 86vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 28px 16px 18px;
    margin: 0 auto;
    touch-action: pan-y
  }

  .modal-actions {
    justify-content: center
  }

  .modal-actions .btn {
    width: 100%
  }

  .modal-brand img {
    max-width: 62vw;
    height: auto
  }

  .reward-card {
    width: 94vw;
    padding: 18px
  }
}

@media (max-width:560px) {
  .guarantee-badge {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .badge-content {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }

  .badge-title {
    white-space: normal
  }

  .badge-stats {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0
  }

  .guarantee-ribbons {
    grid-template-columns: 1fr;
    max-width: 620px
  }

  .ribbon {
    text-align: center
  }

  .achv-grid {
    grid-template-columns: 1fr;
    max-width: 620px
  }
}

/* Títulos móviles: fallback dorado y gradiente si se soporta */
@media (max-width:560px) {
  .container h2 {
    color: #f2d681;
    text-shadow: 0 6px 24px rgba(242, 214, 129, .18), 0 2px 6px rgba(0, 0, 0, .35)
  }
}

@supports (-webkit-background-clip:text) {
  @media (max-width:560px) {
    .container h2 {
      background: linear-gradient(135deg, #f2d681, #c1992f);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }
  }
}

@media (min-width:561px) {
  .hero-actions .btn:nth-child(n+2) {
    display: none
  }
}

.cta-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.cta-social .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(242, 214, 129, .28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease
}

.cta-social .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
  border-color: rgba(242, 214, 129, .5)
}

.cta-social .social-btn svg {
  width: 22px;
  height: 22px;
  fill: #f2d681
}

@media (max-width:560px) {
  .cta-actions {
    flex-direction: column;
    gap: 14px
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px
  }

  .cta-social {
    order: 2
  }

  .cta-contacts {
    order: 3
  }

  .cta-actions {
    order: 1
  }

  .cta-social {
    gap: 12px
  }

  .cta-social .social-btn {
    width: 38px;
    height: 38px
  }

  .cta-social .social-btn svg {
    width: 20px;
    height: 20px
  }
}

@media (max-width:560px) {
  .modal-brand img {
    display: none
  }
}

/* Diagnóstico */
.diag-hero {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, .08), transparent)
}

.diag-hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 12px
}

.owl-guide {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0
}

.owl-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(242, 214, 129, .25), rgba(47, 89, 255, .15));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.owl-says {
  color: #cfcfd6
}

.diag-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px
}

.diag-progress .bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .10)
}

.diag-progress .fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f59ff, #36b8ff, #f2d681);
  width: 0%
}

.diag-quiz h3 {
  margin: 20px 0 10px
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.diag-wizard {
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, .06), transparent)
}

.stage {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.owl-screen,
.q-screen,
.finish-screen {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #141419, #101016);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55)
}

.owl-hero {
  font-size: 128px;
  line-height: 1;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
  animation: owlFloat 3s ease-in-out infinite
}

.owl-hero.small {
  font-size: 72px
}

.q-screen h3 {
  margin: 14px 0 10px
}

.q-screen .desc {
  color: #c9c9d1;
  margin-bottom: 16px
}

.toggles {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 10px 0 16px
}

.nav {
  display: flex;
  gap: 12px;
  justify-content: center
}

.wizard-footer {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(20, 20, 26, .92), rgba(16, 16, 22, .92));
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 12px
}

.diag-progress .label {
  color: #cfcfd6;
  font-size: 12px
}

@keyframes owlFloat {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }

  100% {
    transform: translateY(0)
  }
}

.finish-screen .diag-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 14px
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(242, 214, 129, .4);
  color: #f2d681;
  background: rgba(242, 214, 129, .08);
  border-radius: 999px;
  padding: 8px 14px;
  margin-top: 10px
}

.confetti {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999
}

.confetti .piece {
  position: absolute;
  width: 10px;
  height: 16px;
  border-radius: 3px;
  opacity: .9;
  animation: fall 2.4s linear forwards
}

@keyframes fall {
  0% {
    transform: translateY(-20vh) rotate(0deg)
  }

  100% {
    transform: translateY(100vh) rotate(360deg)
  }
}

@media (max-width:560px) {
  .owl-hero {
    font-size: 72px
  }

  .owl-hero.small {
    font-size: 44px
  }

  .owl-screen,
  .q-screen,
  .finish-screen {
    padding: 18px;
    border-radius: 16px
  }
}

.owl-screen .btn {
  margin-top: 18px
}

.howto {
  color: #b9bac6;
  font-size: 12px;
  margin: 6px 0 8px
}

.voice-range {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  width: 180px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f59ff, #36b8ff, #f2d681);
  outline: none
}

.voice-range {
  -webkit-appearance: none;
  appearance: none
}

.voice-range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12)
}

.voice-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  margin-top: -5px
}

.voice-range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12)
}

.voice-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35)
}

.opts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 8px
}

.opt,
.unit {
  position: relative;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, #15151b, #121217);
  color: #e7e7ea;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.opt:hover,
.unit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .5);
  border-color: rgba(242, 214, 129, .35)
}

.opt.selected,
.unit.selected {
  border-color: rgba(242, 214, 129, .6);
  box-shadow: 0 22px 60px rgba(242, 214, 129, .25)
}

.scale .unit {
  width: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

.choice .opt {
  min-width: 120px
}

.emoji .opt {
  min-width: 90px;
  font-size: 24px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.emoji .opt span {
  font-size: 14px;
  color: #c9c9d1
}

.opt,
.unit {
  overflow: hidden
}

.pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #f2d681, #36b8ff);
  transform: translate(-50%, -50%) scale(1);
  opacity: .8;
  animation: pulseOut .5s ease-out forwards
}

@keyframes pulseOut {
  to {
    transform: translate(-50%, -50%) scale(14);
    opacity: 0
  }
}

.stars {
  display: flex;
  gap: 10px;
  justify-content: center
}

.star {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #f2d681;
  font-size: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45)
}

.star.selected {
  border-color: rgba(242, 214, 129, .6);
  box-shadow: 0 22px 60px rgba(242, 214, 129, .25)
}

.metrics {
  margin-top: 12px
}

.grade {
  font-size: 24px;
  font-weight: 800;
  color: #f2d681;
  margin-bottom: 10px
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.kpi-card {
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 12px
}

.kpi-title {
  font-weight: 700;
  color: #e7e7ea;
  margin-bottom: 6px
}

.kpi-bar {
  height: 8px;
  border-radius: 999px;
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden
}

.kpi-bar .fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f59ff, #36b8ff, #f2d681);
  width: 0%
}

.kpi-val {
  color: #cfcfd6;
  font-size: 12px;
  margin-top: 6px;
  text-align: right
}

.card-enter {
  animation: cardIn .38s ease both
}

@keyframes cardIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(.98)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.card-leave {
  animation: cardOut .24s ease both
}

@keyframes cardOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }

  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.98)
  }
}

.owl-hero.blink {
  animation: owlBlink .5s ease
}

@keyframes owlBlink {
  0% {
    transform: translateY(-2px) scale(1)
  }

  50% {
    transform: translateY(0) scale(1.05)
  }

  100% {
    transform: translateY(-2px) scale(1)
  }
}

.voice-ui {
  position: absolute;
  right: 14px;
  top: 14px
}

.voice-btn {
  height: 34px;
  width: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, #15151b, #121217);
  color: #e7e7ea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center
}

.voice-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45)
}

.owl-holder {
  position: relative;
  display: inline-block
}

.owl-voice {
  position: absolute;
  right: -6px;
  top: -6px
}

.q-item {
  background: linear-gradient(180deg, #15151b, #121217);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  transition: transform .2s ease, box-shadow .2s ease
}

.q-item h4 {
  margin: 0 0 4px
}

.q-item p {
  margin: 0 0 10px;
  color: #c9c9d1
}

.q-item .toggles {
  display: flex;
  gap: 10px
}

.q-item .toggle {
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0f0f14;
  color: #e7e7ea
}

.q-item.yes {
  border-color: rgba(242, 214, 129, .45);
  box-shadow: 0 12px 34px rgba(242, 214, 129, .22)
}

.q-item.no {
  border-color: rgba(47, 89, 255, .45);
  box-shadow: 0 12px 34px rgba(47, 89, 255, .22)
}

.diag-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 18px 0
}

@media (max-width:980px) {
  .quiz-grid {
    grid-template-columns: 1fr
  }
}

.voice-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
  width: 66%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  z-index: 5
}

.voice-btn {
  height: 34px;
  width: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, #15151b, #121217);
  color: #e7e7ea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center
}

.voice-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45)
}

.owl-screen .btn {
  margin-top: 30px
}

/* Services Split Section */
.services-split {
  width: 100%;
  min-height: 150vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.split-container {
  display: flex;
  width: 100%;
  min-height: 150vh;
  position: relative;
}

.split-panel {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  /* Stack content vertically */
  align-items: center;
  /* Center horizontally */
  justify-content: flex-start;
  /* Align to top */
  padding-top: 100px;
  /* Consistent top padding */
  transition: flex 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  cursor: pointer;
}

.split-panel:hover {
  flex: 1.5;
}

.split-panel:not(:hover) {
  flex: 1;
}

.basic-side {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: #101014;
}

.basic-side .panel-title {
  /* Ensure centering is enforced */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}


.new-side {
  background: linear-gradient(135deg, #0f0f14 0%, #1a1a20 100%);
  color: #f2d681;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.split-panel:hover .panel-overlay {
  opacity: 1;
}

.panel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px 40px;
  width: 100%;
  flex: 1;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.85;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.split-panel:hover .panel-content {
  opacity: 1;
  transform: scale(1);
}

.panel-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1;
  letter-spacing: 2px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.basic-side .panel-title {
  color: #101014;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.new-side .panel-title {
  background: linear-gradient(135deg, #f2d681, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.split-panel:hover .panel-title {
  transform: translateY(-8px);
  letter-spacing: 4px;
}

.panel-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px;
  opacity: 0.7;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.split-panel:hover .panel-subtitle {
  opacity: 1;
  transform: translateY(-4px);
}

.basic-side .panel-subtitle {
  color: #3a3a3a;
}

.new-side .panel-subtitle {
  color: #e7e7ea;
}

.panel-description {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 32px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.split-panel:hover .panel-description {
  opacity: 1;
  transform: translateY(0);
}

.basic-side .panel-description {
  color: #5a5a5a;
}

.new-side .panel-description {
  color: #cfcfd6;
}

/* Responsive adjustments */
@media (max-width:980px) {
  .split-container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .split-panel {
    flex: 1;
    min-height: 50vh;
  }

  .split-panel:hover {
    flex: 1.2;
  }

  .split-panel:not(:hover) {
    flex: 0.9;
  }

  .panel-title {
    font-size: 48px;
  }

  .panel-subtitle {
    font-size: 18px;
  }
}

@media (max-width:560px) {
  .panel-title {
    font-size: 36px;
  }

  .panel-subtitle {
    font-size: 16px;
  }

  .panel-content {
    padding: 40px 24px;
  }
}

/* Split Panel Inner Content Styles */
.panel-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  background: linear-gradient(90deg, #101014, #3a3a3a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 30px 0 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
}

.panel-box-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 220px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='15' viewBox='0 0 220 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 7.5C70 7.5 70 2 110 2C150 2 150 7.5 210 7.5' stroke='%233A3A3A' stroke-width='1' stroke-linecap='round'/%3E%3Ccircle cx='110' cy='7.5' r='3' fill='%23101014' stroke='%233A3A3A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 30px;
}

.module-item {
  border-bottom: 2px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  /* Interior Highlight */
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
}

.module-item:last-child {
  border-bottom: none;
}

.module-item h4 {
  font-size: 18px;
  margin: 0 0 4px;
  color: #101014;
  font-weight: 700;
}

.module-item p {
  margin: 0;
  font-size: 14px;
  color: #5a5a5a;
}

.panel-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 180px;
  /* Increased to lower image specifically */
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
}

.panel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image covers the 16:9 area */
  transition: transform 0.6s ease;
}

.split-panel:hover .panel-image {
  transform: scale(1.05);
}

/* Service Detail Styles */
.service-detail {
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid #101014;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateX(5px);
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #101014;
  margin: 0 0 15px;
  font-weight: 700;
}

.service-content {
  font-size: 15px;
  line-height: 1.8;
  color: #2a2a2a;
}

.service-intro {
  margin-bottom: 15px;
  font-weight: 500;
}

.service-steps {
  margin: 20px 0;
  padding-left: 10px;
}

.service-steps p {
  margin-bottom: 15px;
}

.step-title {
  color: #101014;
  font-weight: 700;
  display: inline;
}

.service-promise {
  margin-top: 15px;
  font-weight: 500;
}

.service-note {
  margin-top: 15px;
  font-style: italic;
  color: #4a4a4a;
  font-size: 14px;
}

.service-cta {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.04));
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-objectives {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.service-objectives li {
  margin-bottom: 10px;
  padding-left: 5px;
  font-weight: 500;
}

.highlight-gold {
  color: #d4af37;
  font-weight: 700;
}

.highlight-red {
  color: #c41e3a;
  font-weight: 700;
}

/* Premium Right Panel Styles */
.premium-content {
  position: relative;
  overflow: visible;
}

.premium-title {
  font-family: 'Playfair Display', serif;
  background: linear-gradient(to right,
      #70541c 0%,
      #b89535 22%,
      #f2e1a3 45%,
      #ffffff 50%,
      #f2e1a3 55%,
      #b89535 78%,
      #70541c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  animation: liquidGold 3s linear infinite, ctaPulse 2s ease-in-out infinite;
  display: block;
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9));
  }
}

@keyframes liquidGold {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: -200% center;
  }
}

.premium-subtitle {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  margin-top: 15px;
  background: linear-gradient(to right,
      #8f6b29 0%,
      #fcf6ba 50%,
      #8f6b29 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: liquidGold 6s linear infinite reverse;
  filter: brightness(1.1);
}

.premium-box-title {
  font-family: 'Playfair Display', serif;
  background: linear-gradient(to right,
      #7a5d1a 0%,
      #d4af37 25%,
      #fffcf0 50%,
      #d4af37 75%,
      #7a5d1a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 35px;
  position: relative;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  animation: liquidGold 5s linear infinite;
}

.premium-box-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  width: 250px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='250' height='18' viewBox='0 0 250 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 9C70 9 80 2 125 2C170 2 180 9 240 9' stroke='url(%23gold)' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10 9C70 9 80 16 125 16C170 16 180 9 240 9' stroke='url(%23gold)' stroke-width='1.5' stroke-linecap='round' opacity='0.3'/%3E%3Ccircle cx='125' cy='9' r='4' fill='%23FFF'/%3E%3Ccircle cx='125' cy='9' r='6' stroke='%23D4AF37' stroke-width='1.5'/%3E%3Cdefs%3E%3ClinearGradient id='gold' x1='0' y1='0' x2='250' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23BF953F'/%3E%3Cstop offset='0.5' stop-color='%23FCF6BA'/%3E%3Cstop offset='1' stop-color='%23AA771C'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.premium-service-detail {
  position: relative;
  margin-bottom: 25px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(242, 214, 129, 0.04), rgba(212, 175, 55, 0.06));
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.premium-service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 214, 129, 0.15), transparent);
  transition: left 0.6s ease;
}

.premium-service-detail:hover::before {
  left: 100%;
}

.premium-service-detail:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(242, 214, 129, 0.3), 0 0 20px rgba(242, 214, 129, 0.2);
  border-color: rgba(242, 214, 129, 0.4);
  background: linear-gradient(135deg, rgba(242, 214, 129, 0.1), rgba(212, 175, 55, 0.15));
}

.premium-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(242, 214, 129, 0.6));
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.premium-service-number {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #f2d681;
  margin: 0 0 12px;
  font-weight: 700;
}

.premium-service-content {
  font-size: 15px;
  line-height: 1.7;
  color: #e7e7ea;
}

.premium-service-content p {
  margin: 0;
}

.premium-video-container {
  position: relative;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(242, 214, 129, 0.3);
  transition: all 0.4s ease;
}

.premium-video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 60px rgba(242, 214, 129, 0.5), 0 0 30px rgba(242, 214, 129, 0.3);
}

.video-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #f2d681, #d4af37, #f2d681, #d4af37);
  background-size: 400% 400%;
  border-radius: 16px;
  z-index: -1;
  animation: glow-rotate 4s ease infinite;
  opacity: 0.6;
}

@keyframes glow-rotate {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.premium-video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 14px;
}


/* Particle Effects for Premium Panel */
.new-side {
  position: relative;
  overflow: hidden;
}

.new-side::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(242, 214, 129, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(242, 214, 129, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(242, 214, 129, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(242, 214, 129, 0.3), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(242, 214, 129, 0.2), transparent),
    radial-gradient(1px 1px at 33% 80%, rgba(242, 214, 129, 0.3), transparent),
    radial-gradient(2px 2px at 10% 90%, rgba(242, 214, 129, 0.2), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: particles-float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particles-float {

  0%,
  100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 50% 100%, 0% 50%;
    opacity: 0.4;
  }

  50% {
    background-position: 100% 100%, 0% 0%, 100% 0%, 50% 0%, 0% 100%, 100% 50%, 50% 0%;
    opacity: 0.7;
  }
}

/* Ambient glow effect */
.new-side::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(242, 214, 129, 0.1) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}

/* Ensure content is above particles */
.premium-content {
  position: relative;
  z-index: 2;
}


/* Sparkle effect on hover */
@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.premium-service-detail::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  opacity: 0;
  animation: sparkle 2s ease-in-out infinite;
}

.premium-service-detail:hover::after {
  animation: sparkle 1s ease-in-out infinite;
}

/* Enhanced text glow on hover */
.premium-service-number {
  transition: all 0.3s ease;
}

.premium-service-detail:hover .premium-service-number {
  text-shadow: 0 0 10px rgba(242, 214, 129, 0.6), 0 0 20px rgba(242, 214, 129, 0.4);
}

/* Responsive adjustments for premium panel */
@media (max-width:980px) {
  .premium-service-detail {
    padding: 20px;
  }

  .premium-icon {
    font-size: 28px;
  }

  .premium-box-title {
    font-size: 28px;
  }
}

@media (max-width:560px) {
  .premium-title {
    font-size: 32px;
  }

  .premium-service-detail {
    padding: 18px;
    margin-bottom: 20px;
  }

  .premium-icon {
    font-size: 24px;
  }

  .premium-service-number {
    font-size: 18px;
  }
}


/* Premium content enhancements */
.premium-highlight {
  color: #f2d681;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-note {
  margin-top: 12px;
  font-style: italic;
  color: #d4af37;
  font-size: 14px;
  border-left: 2px solid #f2d681;
  padding-left: 12px;
}

.premium-service-content strong {
  color: #f2d681;
  font-weight: 700;
}


/* Premium Tagline Section */
.premium-tagline {
  margin: 50px 0 30px;
  padding: 35px;
  background: linear-gradient(135deg, rgba(242, 214, 129, 0.08), rgba(21, 21, 26, 0.9));
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.premium-tagline::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242, 214, 129, 0.1) 0%, transparent 70%);
  animation: rotate-glow 8s linear infinite;
}

@keyframes rotate-glow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.tagline-main {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #f2d681;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.mas-highlight {
  font-size: 42px;
  background: linear-gradient(135deg, #f2d681, #d4af37, #f2d681);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(242, 214, 129, 0.5);
  animation: pulse-mas 2s ease-in-out infinite;
}

@keyframes pulse-mas {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.tagline-sub {
  font-size: 18px;
  color: #e7e7ea;
  margin: 0 0 15px;
  position: relative;
  z-index: 1;
}

.tagline-sub strong {
  color: #f2d681;
  font-weight: 700;
}

.tagline-cta {
  font-size: 16px;
  color: #d4af37;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Center left panel title */
.basic-side .panel-title {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Two-line title for premium panel */
.premium-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.title-main {
  display: block;
  font-size: 52px;
  /* Reduced from 72px to prevent wrapping */
  white-space: nowrap;
  /* Force single line */
}

.title-sub {
  display: block;
  font-size: 36px;
  /* Reduced from 48px to balance */
  margin-top: 5px;
}

/* Enhanced animations */
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

.basic-side .service-detail {
  animation: slide-in-left 0.6s ease-out backwards;
}

.basic-side .service-detail:nth-child(2) {
  animation-delay: 0.1s;
}

.basic-side .service-detail:nth-child(3) {
  animation-delay: 0.2s;
}

.basic-side .service-detail:nth-child(4) {
  animation-delay: 0.3s;
}

.premium-service-detail {
  animation: slide-in-right 0.6s ease-out backwards;
}

.premium-service-detail:nth-child(2) {
  animation-delay: 0.1s;
}

.premium-service-detail:nth-child(3) {
  animation-delay: 0.2s;
}

.premium-service-detail:nth-child(4) {
  animation-delay: 0.3s;
}

.premium-service-detail:nth-child(5) {
  animation-delay: 0.4s;
}

/* Smooth transitions on panel switch */
.split-panel {
  will-change: flex;
}

.panel-content {
  will-change: opacity, transform;
}


/* Additional fluid animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.panel-box-title {
  animation: fade-in-up 0.8s ease-out 0.3s backwards;
}

.premium-tagline {
  animation: fade-in-up 0.8s ease-out 0.6s backwards;
}

.premium-video-container {
  animation: fade-in-up 0.8s ease-out 0.8s backwards;
}

/* Enhance icon float animation */
.premium-icon {
  animation: float-icon 3s ease-in-out infinite, fade-in-up 0.5s ease-out backwards;
}

/* Stagger icon animations */
.premium-service-detail:nth-child(2) .premium-icon {
  animation-delay: 0.1s, 0.1s;
}

.premium-service-detail:nth-child(3) .premium-icon {
  animation-delay: 0.2s, 0.2s;
}

.premium-service-detail:nth-child(4) .premium-icon {
  animation-delay: 0.3s, 0.3s;
}

.premium-service-detail:nth-child(5) .premium-icon {
  animation-delay: 0.4s, 0.4s;
}

/* Smooth scale on panel content */
.panel-content {
  animation: fade-in-up 0.6s ease-out backwards;
}

/* Add subtle border animation to service boxes */
@keyframes border-glow {

  0%,
  100% {
    border-color: rgba(0, 0, 0, 0.05);
  }

  50% {
    border-color: rgba(0, 0, 0, 0.15);
  }
}

.service-detail {
  animation: slide-in-left 0.6s ease-out backwards, border-glow 3s ease-in-out infinite;
}

/* Premium border glow */
@keyframes premium-border-glow {

  0%,
  100% {
    border-color: rgba(242, 214, 129, 0.2);
    box-shadow: 0 4px 15px rgba(242, 214, 129, 0.1);
  }

  50% {
    border-color: rgba(242, 214, 129, 0.4);
    box-shadow: 0 4px 20px rgba(242, 214, 129, 0.2);
  }
}

.premium-service-detail {
  animation: slide-in-right 0.6s ease-out backwards, premium-border-glow 3s ease-in-out infinite;
}

/* Responsive title sizes */
@media (max-width:980px) {
  .title-main {
    font-size: 42px;
  }

  .title-sub {
    font-size: 28px;
  }

  .basic-side .panel-title {
    font-size: 36px;
  }
}

@media (max-width:560px) {
  .title-main {
    font-size: 28px;
    white-space: normal;
    /* Allow wrap on very small screens */
  }

  .title-sub {
    font-size: 20px;
  }

  .basic-side .panel-title {
    font-size: 28px;
  }
}

/* Video Placeholder Styles */
.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder img.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover img.video-thumb {
  opacity: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(242, 214, 129, 0.8);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(242, 214, 129, 0.4);
}

.video-placeholder:hover .play-button {
  background: rgba(242, 214, 129, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(242, 214, 129, 0.6);
}

.premium-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Custom Video Player Styles */
.custom-player {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

#premiumVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.3);
  pointer-events: none;
  /* Allow click through to video container/overlay */
}

.custom-player:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: #d4af37;
  box-shadow: 0 0 0 15px rgba(212, 175, 55, 0.4);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 5;
}

.custom-player:hover .video-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

/* Video Glow Animation */
.video-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #d4af37, #f2d681, #d4af37);
  z-index: -1;
  border-radius: 18px;
  filter: blur(10px);
  opacity: 0.6;
  animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.5;
    filter: blur(10px);
  }

  50% {
    opacity: 0.8;
    filter: blur(15px);
  }
}



/* Advanced Custom Video Player Styles */
.video-placeholder.custom-player-wrapper {
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: 20px;
}

.custom-video-interface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.play-icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.custom-player-wrapper:hover .play-icon-circle {
  transform: scale(1.1);
  background: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.custom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 6;
}

.custom-player-wrapper:hover .custom-controls,
.video-element:not([paused])~.custom-controls {
  opacity: 1;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.control-btn:hover {
  color: #d4af37;
  transform: scale(1.1);
}

.progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #d4af37;
  width: 0%;
  border-radius: 3px;
  transition: width 0.1s linear;
}

.time-display {
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  min-width: 80px;
  text-align: center;
}

/* Fullscreen overrides */
:fullscreen .custom-video-interface {
  background: #000;
}

:fullscreen .video-placeholder {
  padding-bottom: 0;
  height: 100vh;
}

:fullscreen .video-element {
  height: 100vh;
}

/* Image Container for Basic Side */
.service-image-container {
  width: 100%;
  height: auto;
  /* Use aspect-ratio instead */
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-image-container:hover img {
  transform: scale(1.05);
}

/* Products Triangle Section */
.products-triangle {
  padding: 140px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.05) 0%, transparent 40%),
    radial-gradient(circle at center, #1a1a24 0%, #08080a 100%);
  position: relative;
  overflow: hidden;
}

.star-field-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star-field-bg::before,
.star-field-bg::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(1.5px 1.5px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 150px 150px, #fff, transparent),
    radial-gradient(1px 1px at 300px 100px, #fff, transparent);
  background-size: 400px 400px;
}

.star-field-bg::before {
  opacity: 0.2;
  animation: starRotate 150s linear infinite;
}

.star-field-bg::after {
  opacity: 0.1;
  background-size: 600px 600px;
  animation: starRotate 250s linear reverse infinite;
}

@keyframes starRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

.triangle-header .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  background: linear-gradient(to right, #d4af37, #fcf6ba, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.triangle-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.triangle-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 650px;
  margin: 0 auto;
}

.triangle-main-shape {
  position: relative;
  width: 550px;
  height: 480px;
  margin: 50px auto;
}

.triangle-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

.triangle-border-svg {
  fill: rgba(18, 18, 23, 0.4);
  stroke: url(#gold-border);
  stroke-width: 8;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
  transition: all 0.5s ease;
}

.triangle-main-shape:hover .triangle-border-svg {
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
  stroke-width: 10;
}

/* Vertex Styling */
.vertex-v {
  position: absolute;
  width: 220px;
  z-index: 20;
}

.top-v {
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.left-v {
  bottom: -40px;
  left: -110px;
}

.right-v {
  bottom: -40px;
  right: -110px;
}

.v-box {
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.v-box:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.v-inner {
  background: #111116;
  padding: 20px 15px;
  border-radius: 14px;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

/* Glow colors for vertices */
.green-v {
  border: 2px solid #2ecc71;
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.4);
}

.blue-v {
  border: 2px solid #3498db;
  box-shadow: 0 0 30px rgba(52, 152, 219, 0.4);
}

.red-v {
  border: 2px solid #e74c3c;
  box-shadow: 0 0 30px rgba(231, 76, 60, 0.4);
}

.green-v:hover {
  box-shadow: 0 0 50px rgba(46, 204, 113, 0.6);
}

.blue-v:hover {
  box-shadow: 0 0 50px rgba(52, 152, 219, 0.6);
}

.red-v:hover {
  box-shadow: 0 0 50px rgba(231, 76, 60, 0.6);
}

/* Edge Labels */
.edge-label {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 8px;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.left-edge {
  top: 45%;
  left: -180px;
  transform: translateY(-50%) rotate(-60deg);
}

.right-edge {
  top: 45%;
  right: -200px;
  transform: translateY(-50%) rotate(60deg);
}

.bottom-edge {
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(212, 175, 55, 0.45);
  font-size: 72px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Background World Map Effect */
.products-triangle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'%3E%3Cpath fill='rgba(255,255,255,0.02)' d='M50,100 Q150,50 250,100 T450,100 T650,100 T750,150 L750,250 Q650,300 550,250 T350,250 T150,250 T50,200 Z' /%3E%3C/svg%3E");
  background-size: 150% auto;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

.triangle-wrapper {
  z-index: 2;
}


/* Connecting Arrows & Text */
.arrow-set {
  position: absolute;
  text-align: center;
  color: #d4af37;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  z-index: 5;
}

.top-left {
  top: 120px;
  left: 80px;
  transform: rotate(-60deg);
}

.top-right {
  top: 120px;
  right: 80px;
  transform: rotate(60deg);
}

.bottom-center {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.arrow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin-bottom: 8px;
  position: relative;
  width: 140px;
  margin: 0 auto 5px;
}

.arrow-line::before,
.arrow-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 10px #d4af37;
  animation: pulseNode 2s infinite;
}

.arrow-line::before {
  left: 0;
}

.arrow-line::after {
  right: 0;
}

@keyframes pulseNode {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 15px #fcf6ba;
  }
}

.arrow-text {
  padding: 8px 15px;
  background: rgba(11, 11, 14, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  white-space: nowrap;
}



/* Central Atom Implementation */
.atom-center {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
}

.atom-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atom-orbit {
  position: absolute;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  width: 170px;
  height: 65px;
  border-radius: 50%;
  animation: atomRotate 5s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.electron {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px #d4af37;
  offset-path: ellipse(85px 32.5px at center);
  animation: orbitParticle 3s linear infinite;
}

.orbit-2 .electron {
  animation-delay: -1s;
}

.orbit-3 .electron {
  animation-delay: -2s;
}

@keyframes orbitParticle {
  from {
    offset-distance: 0%;
  }

  to {
    offset-distance: 100%;
  }
}

.orbit-1 {
  transform: rotate(0deg);
}

.orbit-2 {
  transform: rotate(60deg);
  animation-delay: -1.66s;
}

.orbit-3 {
  transform: rotate(-60deg);
  animation-delay: -3.33s;
}

@keyframes atomRotate {

  0%,
  100% {
    border-color: rgba(212, 175, 55, 0.2);
    transform: rotate(var(--r, 0deg)) scale(1);
  }

  50% {
    border-color: rgba(212, 175, 55, 0.8);
    transform: rotate(var(--r, 0deg)) scale(1.05);
  }
}

.orbit-1 {
  --r: 0deg;
}

.orbit-2 {
  --r: 60deg;
}

.orbit-3 {
  --r: -60deg;
}

.atom-core {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, #fff, #d4af37, #bf953f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px #d4af37, 0 0 60px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 15;
}

.star-sparkle {
  font-size: 28px;
  color: #fff;
  text-shadow: 0 0 15px #fff, 0 0 30px #d4af37;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@media (max-width: 1000px) {
  .triangle-wrapper {
    transform: scale(0.85);
    height: 500px;
  }
}

@media (max-width: 768px) {
  .triangle-wrapper {
    transform: scale(0.7);
    height: 450px;
  }

  .edge-label {
    font-size: 32px;
  }

  .bottom-edge {
    font-size: 42px;
    bottom: -80px;
  }

  .left-v,
  .right-v {
    bottom: -60px;
  }
}

@media (max-width: 480px) {
  .triangle-wrapper {
    transform: scale(0.5);
    height: 350px;
  }

  .triangle-header .section-title {
    font-size: 32px;
  }
}

/* Product Details Section */
.product-details-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #08080a 0%, #0f0f14 50%, #08080a 100%);
  position: relative;
}

.product-detail-card {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-detail-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.card-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4af37, #bf953f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: #000;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  animation: numberPulse 3s ease-in-out infinite;
}

@keyframes numberPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
  }
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(to right, #d4af37, #fcf6ba, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  flex: 1;
}

.atom-icon-small {
  font-size: 32px;
  opacity: 0.3;
  animation: atomSpin 10s linear infinite;
}

@keyframes atomSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.card-content {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: center;
}

.card-content.reverse {
  grid-template-columns: 1fr 450px;
}

.card-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.card-visual:hover {
  transform: scale(1.05) rotate(2deg);
}

.pillar-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.card-visual:hover .pillar-image {
  transform: scale(1.1);
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.card-text {
  color: #e7e7ea;
  line-height: 1.8;
}

.card-intro {
  font-size: 18px;
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 17px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  margin: 25px 0;
}

.gold-text {
  color: #d4af37;
  font-weight: 700;
}

.methodology-box {
  background: linear-gradient(135deg, rgba(18, 18, 23, 0.8), rgba(26, 26, 32, 0.8));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.methodology-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.methodology-box:hover::before {
  left: 100%;
}

.methodology-box:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  transform: translateX(10px);
}

.method-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #d4af37;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.progression-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.prog-item {
  padding: 12px 24px;
  background: linear-gradient(135deg, #d4af37, #bf953f);
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  animation: progFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
}

.prog-item:nth-child(1) {
  --i: 0;
}

.prog-item:nth-child(3) {
  --i: 1;
}

.prog-item:nth-child(5) {
  --i: 2;
}

.prog-item:nth-child(7) {
  --i: 3;
}

@keyframes progFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.arrow {
  font-size: 24px;
  color: #d4af37;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.tools-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tools-list li {
  padding: 10px 15px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid #d4af37;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tools-list li:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(5px);
}

.card-conclusion {
  font-style: italic;
  color: #b8b8c3;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {

  .card-content,
  .card-content.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .card-title {
    font-size: 32px;
  }

  .card-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .progression-chain {
    flex-direction: column;
  }

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

/* ========================================
   EXCELENCIA GARANTIZADA - PREMIUM SECTION
   ======================================== */

.excellence-section {
  padding: 120px 0 140px;
  background:
    linear-gradient(180deg, #0a0a0f 0%, #121218 50%, #0a0a0f 100%);
  position: relative;
  overflow: hidden;
}

.excellence-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.02) 35px, rgba(212, 175, 55, 0.02) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.015) 35px, rgba(212, 175, 55, 0.015) 70px),
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  background-size: 100px 100px, 100px 100px, 600px 600px, 600px 600px;
  animation: patternMove 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.excellence-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
  animation: dotsFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0, 0 0, 100% 0;
  }

  100% {
    background-position: 100px 100px, -100px 100px, 50px 50px, 0 100%;
  }
}

@keyframes dotsFloat {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-20px);
  }
}

.excellence-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.golden-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.3), transparent);
  background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px;
  animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 200px 200px, -300px 300px, 250px -250px, -350px 350px;
  }
}

.radial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.excellence-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.premium-tag {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: tagFloat 3s ease-in-out infinite;
}

@keyframes tagFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.excellence-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #fcf6ba, #d4af37, #bf953f);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 15px 0;
  animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.excellence-subtitle {
  font-size: 18px;
  color: #b8b8c3;
  margin: 0;
}

/* Central Badge */
.central-badge-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto 100px;
}

.badge-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      rgba(212, 175, 55, 0.3),
      rgba(212, 175, 55, 0) 50%,
      rgba(212, 175, 55, 0.3) 100%);
  animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.badge-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(212, 175, 55, 0.5),
    0 0 120px rgba(212, 175, 55, 0.3),
    0 30px 80px rgba(0, 0, 0, 0.6);
  animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-15px) scale(1.05);
  }
}

.badge-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 60%,
      transparent 100%);
  animation: shineMove 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineMove {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

  100% {
    transform: translateX(100%) translateY(100%);
  }
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: linear-gradient(135deg, rgba(18, 18, 23, 0.95), rgba(26, 26, 32, 0.95));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: statFloat 4s ease-in-out infinite;
}

.stat-1 {
  top: 5%;
  left: -8%;
  animation-delay: 0s;
}

.stat-2 {
  top: 5%;
  right: -8%;
  animation-delay: 0.5s;
}

.stat-3 {
  bottom: 10%;
  left: -8%;
  animation-delay: 1s;
}

.stat-4 {
  bottom: 10%;
  right: -8%;
  animation-delay: 1.5s;
}

@keyframes statFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #fcf6ba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #b8b8c3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Guarantee Cards Grid */
.guarantee-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.guarantee-card {
  position: relative;
  background: linear-gradient(135deg, rgba(18, 18, 23, 0.8), rgba(26, 26, 32, 0.8));
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.card-border-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #d4af37, transparent, #d4af37);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.guarantee-card:hover .card-border-animation {
  opacity: 1;
  animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.guarantee-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.card-icon-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  position: relative;
}

.card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.roi-chart-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.chart-bar {
  width: 20px;
  background: linear-gradient(to top, #d4af37, #fcf6ba);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  animation: barGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) {
  animation-delay: 0s;
}

.chart-bar:nth-child(2) {
  animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes barGrow {

  0%,
  100% {
    transform: scaleY(0.8);
  }

  50% {
    transform: scaleY(1);
  }
}

.chart-arrow {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 40px;
  color: #d4af37;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5px, -5px);
  }
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 15px 0;
}

.card-description {
  font-size: 15px;
  color: #b8b8c3;
  line-height: 1.6;
  margin: 0;
}

.card-hover-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}

.guarantee-card:hover .card-hover-glow {
  width: 300px;
  height: 300px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .guarantee-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .central-badge-container {
    width: 300px;
    height: 300px;
  }

  .badge-main {
    width: 250px;
    height: 250px;
  }

  .floating-stat {
    position: static;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .excellence-title {
    font-size: 40px;
  }

  .guarantee-cards-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   EMPRESAS TRANSFORMADAS - PREMIUM SECTION
   ======================================== */

.transformed-companies-section {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, #0a0a0f 0%, #16161d 50%, #0a0a0f 100%);
  position: relative;
  overflow: hidden;
}

.companies-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.golden-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
  background-size: 200px 100%, 100% 200px;
  background-position: 0 0, 0 0;
  animation: raysMove 25s ease-in-out infinite;
}

@keyframes raysMove {
  0% {
    background-position: 0 0, 0 0;
  }

  50% {
    background-position: 200px 0, 0 200px;
  }

  100% {
    background-position: 400px 0, 0 400px;
  }
}

.floating-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    radial-gradient(circle, rgba(212, 175, 55, 0.04) 2px, transparent 2px);
  background-size: 60px 60px, 100px 100px, 150px 150px;
  background-position: 0 0, 30px 30px, 75px 75px;
  animation: sparklesTwinkle 8s ease-in-out infinite;
}

@keyframes sparklesTwinkle {

  0%,
  100% {
    opacity: 0.4;
    background-position: 0 0, 30px 30px, 75px 75px;
  }

  50% {
    opacity: 0.7;
    background-position: 10px 10px, 40px 40px, 85px 85px;
  }
}

.companies-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.deco-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.deco-star {
  font-size: 24px;
  color: #d4af37;
  animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.companies-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #fcf6ba, #d4af37, #bf953f);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 15px 0;
  animation: goldShimmer 3s ease-in-out infinite;
}

.companies-subtitle {
  font-size: 20px;
  color: #b8b8c3;
  margin: 0;
}

.highlight-exxyto {
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Brands Showcase */
.brands-premium-showcase {
  position: relative;
  margin: 60px 0;
  padding: 60px 0;
}

.showcase-gradient-left,
.showcase-gradient-right {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.showcase-gradient-left {
  left: 0;
  background: linear-gradient(to right, #16161d, transparent);
}

.showcase-gradient-right {
  right: 0;
  background: linear-gradient(to left, #16161d, transparent);
}

.brands-carousel-container {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.brands-carousel {
  display: flex;
  gap: 40px;
  animation: carouselScroll 90s linear infinite;
  will-change: transform;
}

.brands-carousel:hover {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-260px * 29));
  }
}

.brand-item {
  flex-shrink: 0;
  width: 220px;
}

.brand-frame {
  position: relative;
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, rgba(18, 18, 23, 0.9), rgba(26, 26, 32, 0.9));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.brand-frame:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.3);
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  transition: filter 0.5s ease;
}

.brand-frame:hover .brand-logo {
  filter: grayscale(0%) brightness(1);
}

.frame-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(212, 175, 55, 0.2) 50%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.brand-frame:hover .frame-shine {
  opacity: 1;
  animation: frameShine 1.5s ease-in-out;
}

@keyframes frameShine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

  100% {
    transform: translateX(100%) translateY(100%);
  }
}

/* Footer */
.companies-footer {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.footer-ornament {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 0 auto 30px;
}

.legal-disclaimer {
  font-size: 13px;
  color: #6b6b7a;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .companies-title {
    font-size: 40px;
  }

  .brand-item {
    width: 180px;
  }

  .brand-frame {
    height: 120px;
  }
}

/* Certificate Icon - Card 1 */
.certificate-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cert-seal {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d4af37, #fcf6ba);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.6),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
  animation: certPulse 3s ease-in-out infinite;
}

@keyframes certPulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.2);
  }
}

.seal-ribbon {
  position: absolute;
  width: 30px;
  height: 60px;
  background: linear-gradient(to bottom, #bf953f, #d4af37);
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  animation: ribbonWave 2s ease-in-out infinite;
}

@keyframes ribbonWave {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

.seal-check {
  font-size: 48px;
  color: #000;
  font-weight: 900;
  animation: checkPop 3s ease-in-out infinite;
}

@keyframes checkPop {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Speed Gauge Icon - Card 2 */
.speed-gauge-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gauge-arc {
  width: 100px;
  height: 50px;
  border: 8px solid transparent;
  border-top-color: #d4af37;
  border-left-color: #d4af37;
  border-right-color: #d4af37;
  border-radius: 100px 100px 0 0;
  position: relative;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  animation: gaugeGlow 2s ease-in-out infinite;
}

@keyframes gaugeGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }

  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
  }
}

.gauge-needle {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 45px;
  background: linear-gradient(to top, #d4af37, #fcf6ba);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-45deg);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  animation: needleSwing 2s ease-in-out infinite;
}

@keyframes needleSwing {

  0%,
  100% {
    transform: translateX(-50%) rotate(-45deg);
  }

  50% {
    transform: translateX(-50%) rotate(45deg);
  }
}

.gauge-center {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #d4af37, #fcf6ba);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  z-index: 2;
}

/* Experience Icon - Card 3 */
.experience-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.exp-star {
  font-size: 64px;
  color: #d4af37;
  text-shadow:
    0 0 20px rgba(212, 175, 55, 0.8),
    0 0 40px rgba(212, 175, 55, 0.4);
  animation: starShine 3s ease-in-out infinite;
}

@keyframes starShine {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    text-shadow:
      0 0 20px rgba(212, 175, 55, 0.8),
      0 0 40px rgba(212, 175, 55, 0.4);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
    text-shadow:
      0 0 30px rgba(212, 175, 55, 1),
      0 0 60px rgba(212, 175, 55, 0.6);
  }
}

.exp-years {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #fcf6ba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: yearsGlow 3s ease-in-out infinite;
}

@keyframes yearsGlow {

  0%,
  100% {
    opacity: 0.8;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}