:root {
  --navy-950: #121d35;
  --navy-900: #1a2b4c;
  --navy-800: #233a63;
  --violet-700: #6a5acd;
  --violet-600: #7b68ee;
  --violet-500: #8a2be2;
  --violet-400: #9400d3;
  --violet-300: #9932cc;
  --violet-200: #ba55d3;
  --violet-100: #dda0dd;
  --violet-900: #4b0082;
  --violet-950: #eae0f1;
  --cyan-900: #0a4d63;
  --cyan-800: #0d6a88;
  --cyan-700: #1187ad;
  --cyan-600: #1da8ce;
  --cyan-500: #26bde5;
  --cyan-400: #2fcdf7;
  --cyan-300: #66ddff;
  --cyan-200: #9beaff;
  --cyan-100: #cff6ff;
  --text-100: #f4f7ff;
  --text-300: #c8d4f3;
  --glass: rgba(196, 212, 255, 0.12);
  --glass-border: rgba(236, 241, 255, 0.24);
  --shadow-soft: 0 20px 60px rgba(6, 12, 34, 0.45);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1160px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-100);
  background:
    radial-gradient(circle at 12% 10%, rgba(106, 90, 205, 0.25), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(77, 217, 255, 0.15), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(75, 0, 130, 0.24), transparent 34%),
    linear-gradient(145deg, #101a2f 0%, var(--navy-900) 52%, #1e1a3c 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 42vw;
  height: 42vw;
  right: -10vw;
  top: -12vw;
  border-radius: 45% 55% 50% 50%;
  background: radial-gradient(circle at 40% 35%, rgba(106, 90, 205, 0.5), rgba(26, 43, 76, 0));
  filter: blur(24px);
  animation: floatBlob 16s ease-in-out infinite alternate;
}

body::after {
  width: 46vw;
  height: 46vw;
  left: -12vw;
  bottom: -18vw;
  border-radius: 40% 60% 58% 42%;
  background: radial-gradient(circle at 65% 45%, rgba(77, 217, 255, 0.2), rgba(75, 0, 130, 0));
  filter: blur(20px);
  animation: floatBlob 20s ease-in-out infinite;
}

@keyframes floatBlob {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(20px) rotate(7deg);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: background 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.45);
  padding: 0.2rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img.logo {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(106, 90, 205, 0.32);
  border-radius: 12px;
  background: rgba(233, 228, 255, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #3b2a63;
}

.mobile-nav-backdrop {
  display: none;
}

.mobile-nav-drawer {
  display: none;
}

.header-actions .btn,
.header-actions .btn-secondary {
  position: relative;
  overflow: hidden;
}

.header-actions .btn::before,
.header-actions .btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.header-actions .btn:hover,
.header-actions .btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
}

.header-actions .btn:hover {
  box-shadow:
    0 16px 30px rgba(72, 12, 129, 0.3),
    0 0 18px rgba(143, 98, 240, 0.2);
}

.header-actions .btn-secondary {
  color: var(--violet-900);
  border: 1px solid rgba(106, 90, 205, 0.3);
  background: #e9e4ff;
  box-shadow: 0 2px 8px rgba(106, 90, 205, 0.1);
}

.header-actions .btn-secondary:hover {
  background: #f0edff;
  border-color: var(--violet-700);
  color: var(--violet-900);
  transform: translateY(-2px);
}

.header-actions .btn:hover::before,
.header-actions .btn-secondary:hover::before {
  transform: translateX(130%);
}

.nav a {
  padding: 0.58rem 0.35rem;
  border-radius: 10px;
  color: #333;
  font-weight: 700;
  font-size: 0.90rem;
  transition: 220ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--violet-700);
  background: rgba(106, 90, 205, 0.08);
}

.btn {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-900));
  color: #fff;
}

.btn,
.btn-secondary {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.86rem 1.25rem;
  border-radius: 14px;
}


.btn {
  color: #fff;
  background: linear-gradient(110deg, var(--violet-700), #7f59d8 48%, var(--violet-900));
  box-shadow:
    inset 1px 1px 3px rgba(255, 255, 255, 0.2),
    inset -4px -6px 14px rgba(19, 6, 42, 0.45),
    0 12px 26px rgba(66, 14, 123, 0.45);
}

.btn:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(106, 90, 205, 0.55),
      inset 1px 1px 3px rgba(255, 255, 255, 0.2),
      inset -4px -6px 14px rgba(19, 6, 42, 0.45);
  }
  70% {
    box-shadow:
      0 0 0 16px rgba(106, 90, 205, 0),
      inset 1px 1px 3px rgba(255, 255, 255, 0.2),
      inset -4px -6px 14px rgba(19, 6, 42, 0.45);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(106, 90, 205, 0),
      inset 1px 1px 3px rgba(255, 255, 255, 0.2),
      inset -4px -6px 14px rgba(19, 6, 42, 0.45);
  }
}

.btn-secondary {
  color: #d8e4ff;
  background: linear-gradient(140deg, rgba(43, 70, 118, 0.72), rgba(34, 33, 73, 0.76));
  border: 1px solid rgba(217, 228, 255, 0.28);
}

main {
  padding-bottom: 3.2rem;
}

.hero,
.section {
  position: relative;
  padding: 6vh 0;
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-immersive {
  min-height: 84vh;
  padding-top: 8vh;
  padding-bottom: 8vh;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: 0;
}

.hero-copy {
  max-width: 640px;
}

.hero-headline {
  max-width: 15ch;
  margin-bottom: 1rem;
}

.headline-top {
  font-size: 3rem;
  font-weight: 500;
}

.headline-mid {
  font-size: 3.2rem;
  font-weight: 700;
}

.headline-mid-accent {
  white-space: nowrap;
}

.headline-resalt {
  font-size: 4rem;
  font-weight: 700;
  color: var(--cyan-200);
}

.hero-headline i {
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
}

.hero-copy b {
  color: var(--cyan-200);
}

.hero-copy .lead {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 2rem;
  font-weight: 400;
  color: var(--text-300);
  width: 80%;
}

.hero-copy .lead span{
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan-200);
}

.highlight-action {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(90deg, #4dd9ff, #6a5acd, #ff4dff, #4dd9ff);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  letter-spacing: 1px;
}

@keyframes shine {
  to { background-position: 300% center; }
}

.hero-cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-cta-row .btn,
.hero-cta-row .btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.65rem;
  border-radius: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.hero-cta-row .btn {
  box-shadow: 0 14px 34px rgba(110, 44, 201, 0.42), 0 0 18px rgba(148, 99, 241, 0.24);
}

.hero-cta-row .btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 42px rgba(110, 44, 201, 0.52), 0 0 26px rgba(148, 99, 241, 0.34);
}

.hero-cta-row .btn-secondary {
  border: 1px solid rgba(184, 200, 255, 0.35);
  background: linear-gradient(140deg, rgba(45, 34, 94, 0.72), rgba(27, 25, 62, 0.82));
  color: #dbe6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 10px 26px rgba(10, 12, 40, 0.35);
}

.hero-cta-row .btn-secondary:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(112, 214, 255, 0.58);
  color: #f4f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 34px rgba(10, 12, 40, 0.45), 0 0 18px rgba(77, 217, 255, 0.2);
}

.hero-cta-row .btn i {
  margin-left: 0.5rem;
  font-size: 0.78rem;
  transition: transform 0.24s ease;
}

.hero-cta-row .btn:hover i {
  transform: translateX(2px);
}

.hero-inline-points {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.inline-point {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.58rem 0.8rem;
  border-radius: 25px;
  color: #dce7ff;
  font-weight: 600;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 225, 255, 0.12);
}

.inline-point::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #62d7ff, #8b65f5);
  box-shadow: 0 0 12px rgba(98, 215, 255, 0.5);
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 120%;
}

.hero-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(215, 228, 255, 0.14);
  background: rgba(6, 12, 28, 0.55);
  box-shadow: 0 20px 48px rgba(8, 14, 37, 0.42);
}

.video-frame {
  position: relative;
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.glass {
  background: linear-gradient(140deg, rgba(239, 246, 255, 0.15), rgba(118, 137, 189, 0.08));
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.grid-2 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.title-xl,
.title-lg,
.title-md {
  letter-spacing: -0.05em;
  margin: 0 0 0.8rem;
  line-height: 1.06;
}

.title-xl {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
}

.title-lg {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.title-md {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.lead {
  color: #d8e2ff;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  max-width: 65ch;
}

.kicker {
  color: var(--cyan-200);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(238, 244, 255, 0.14);
  background: linear-gradient(135deg, rgba(33, 53, 89, 0.88), rgba(35, 26, 68, 0.75));
}

.card p {
  color: #ced9f8;
}

.stats-bar {
  background: #f8faff;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(106, 90, 205, 0.1);
  border-bottom: 1px solid rgba(106, 90, 205, 0.1);
  position: relative;
  z-index: 2;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--violet-700);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  max-width: 24ch;
  margin: 0 auto;
}

/* Rediseño de Bento Plus */
.bento-plus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--glass);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  align-items: center;
}

.bento-figure {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bento-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.bento-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.badge {
  background: rgba(106, 90, 205, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.bento-headline {
  margin: 1rem 0;
  line-height: 1.1;
}

.text-violet {
  color: var(--violet-100);
}

.text-cyan-200 {
  color: var(--cyan-200);
}

.bento-lead {
  font-size: 1.1rem;
  color: var(--text-300);
  margin-bottom: 2rem;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.bento-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-100);
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--violet-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.bento-footer-cta {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-900));
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-message p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-message strong {
  font-size: 1.1rem;
}

.btn-white {
  background: #fff;
  color: var(--violet-900) !important;
  white-space: nowrap;
}

@media (max-width: 968px) {
  .bento-plus {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .bento-img {
    height: 300px;
  }
  .bento-footer-cta {
    flex-direction: column;
    text-align: center;
  }
}

.mesh-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(at 90% 12%, rgba(106, 90, 205, 0.5) 0, transparent 45%),
    radial-gradient(at 0% 80%, rgba(77, 217, 255, 0.25) 0, transparent 36%),
    radial-gradient(at 70% 70%, rgba(75, 0, 130, 0.33) 0, transparent 44%),
    linear-gradient(180deg, rgba(21, 35, 63, 0.95) 0%, rgba(18, 24, 45, 0.96) 72%, #0b1430 100%);
}

.mesh-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(11, 20, 48, 0), #0b1430 88%);
  pointer-events: none;
}

.hero-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.bento .item {
  min-height: 140px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216, 228, 255, 0.18);
  background: linear-gradient(145deg, rgba(47, 72, 121, 0.92), rgba(42, 29, 81, 0.85));
}

.bento .item:nth-child(1) {
  grid-column: span 5;
}

.bento .item:nth-child(2) {
  grid-column: span 4;
}

.bento .item:nth-child(3) {
  grid-column: span 3;
}

.bento .item:nth-child(4) {
  grid-column: span 7;
}

.bento .item:nth-child(5) {
  grid-column: span 5;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(227, 237, 255, 0.2);
  filter: saturate(0.85) hue-rotate(180deg) brightness(0.78);
}

.plus-theme {
  background:
    radial-gradient(circle at 10% 15%, rgba(137, 96, 234, 0.38), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(106, 90, 205, 0.42), transparent 40%),
    radial-gradient(circle at 62% 82%, rgba(75, 0, 130, 0.45), transparent 42%),
    linear-gradient(125deg, #160f30, #27164f 52%, #1c123f);
}

.plus-benefit {
  position: relative;
  border-radius: 20px;
  padding: 1.4rem;
  background: linear-gradient(140deg, rgba(151, 122, 255, 0.16), rgba(71, 33, 128, 0.16));
  border: 1px solid rgba(219, 205, 255, 0.3);
  box-shadow: 0 0 0 1px rgba(179, 146, 255, 0.16), 0 0 30px rgba(103, 50, 173, 0.42);
}

.directory-card {
  min-height: 290px;
  background: linear-gradient(145deg, rgba(52, 82, 131, 0.86), rgba(39, 35, 77, 0.84));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(214, 229, 255, 0.16);
}

.directory-card .bio {
  padding: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-card {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(31, 48, 81, 0.94), rgba(61, 35, 96, 0.88));
  border: 1px solid rgba(220, 230, 255, 0.16);
}

.blog-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.blog-card .content {
  padding: 1rem;
}

.alt-band {
  background:
    radial-gradient(circle at 85% 20%, rgba(106, 90, 205, 0.3), transparent 36%),
    linear-gradient(145deg, #181f3d, #211443 48%, #101a30);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form {
  padding: 1.4rem;
}

.contacto-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contacto-stats {
  border-top: 1px solid rgba(183, 200, 235, 0.14);
}

.contacto-main {
  padding-top: 0;
  margin-top: -1px;
  background: #0b1430;
}

.contacto-info-card,
.contacto-form-card {
  border-radius: 22px;
  border: 1px solid rgba(208, 225, 255, 0.22);
  background: linear-gradient(150deg, rgba(26, 45, 81, 0.86), rgba(33, 27, 73, 0.86));
}

.contacto-info-card {
  padding: 1.7rem;
}

.contacto-title {
  margin: 0.45rem 0 0.9rem;
  max-width: 15ch;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.08;
}

.contacto-lead {
  margin: 0;
  max-width: 48ch;
  color: var(--text-300);
  font-size: 1.08rem;
  line-height: 1.66;
}

.contacto-points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contacto-points li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contacto-points h3 {
  margin: 0;
  font-size: 1rem;
}

.contacto-points p {
  margin: 0.25rem 0 0;
  color: #c4d3f3;
  line-height: 1.5;
  font-size: 0.95rem;
}

.contacto-point-icon {
  margin-top: 0.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-300);
}

.contacto-form-title {
  margin: 0.3rem 0 0;
}

.contacto-form-copy {
  margin: 0.45rem 0 1rem;
  color: var(--text-300);
}

.contacto-alert {
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contacto-alert-error {
  color: #ffd9dd;
  background: rgba(191, 43, 75, 0.25);
  border: 1px solid rgba(255, 168, 185, 0.35);
}

.contacto-form-grid {
  display: grid;
  gap: 0.2rem;
}

.contacto-form-grid textarea {
  min-height: 120px;
}

.contacto-recaptcha-wrap {
  margin: 0.4rem 0 0.8rem;
  display: flex;
  justify-content: center;
}

.contacto-privacy-note {
  margin: 0.35rem 0 0;
  color: #b7c8e9;
  font-size: 0.88rem;
  line-height: 1.5;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  color: #d5e3ff;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  color: #f0f5ff;
  background: rgba(19, 30, 54, 0.55);
  border: 1px solid rgba(221, 232, 255, 0.25);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-family: inherit;
  margin-bottom: 0.9rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  padding: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(180, 142, 255, 0.16);
}

.footer-col {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.footer-about {
  margin: 0;
  max-width: 44ch;
  color: #b6c4e0;
  line-height: 1.65;
  font-size: 0.98rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(146, 111, 221, 0.28);
  background: rgba(28, 19, 59, 0.35);
  color: #dce7ff;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 217, 255, 0.45);
  background: rgba(77, 217, 255, 0.08);
  color: var(--cyan-400);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link i {
  font-size: 1rem;
  line-height: 1;
}

.footer-social-link[aria-label="Facebook"] svg,
.footer-social-link[aria-label="TikTok"] svg,
.footer-social-link[aria-label="YouTube"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #eef4ff;
}

.footer-policy-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-policy-text {
  margin: 0 0 1rem;
  color: #c7d4f1;
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 34ch;
}

.footer-policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-policy-list a {
  display: flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(146, 111, 221, 0.18);
  background: rgba(28, 19, 59, 0.3);
  color: #d2dcef;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  font-size: 0.92rem;
  line-height: 1.2;
}

.footer-policy-list a:hover {
  transform: translateX(4px);
  border-color: rgba(77, 217, 255, 0.38);
  background: rgba(77, 217, 255, 0.08);
  color: #ecf7ff;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
}

.footer-notice {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: rgba(28, 19, 59, 0.42);
  border: 1px solid rgba(146, 111, 221, 0.24);
  color: #c7d4f1;
  line-height: 1.75;
  font-size: 0.96rem;
  max-width: 36ch;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.footer-links a,
.footer-contact-list a {
  color: #b8c5df;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: var(--cyan-400);
}

.footer-contact-list li {
  color: #b8c5df;
  font-size: 0.95rem;
}

.footer-contact-list li span {
  color: #e7edff;
  font-weight: 700;
}

.footer-credits {
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: #9faed1;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .site-footer {
    padding-top: 3.4rem;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-socials {
    margin-top: 1rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- Section Pillars (Ecosistema) --- */
.pillars-section {
  padding: 2rem 0;
  background: linear-gradient(to bottom, #0b1430 0%, #0b1430 16%, #090d18 58%, #05070a 100%);
  position: relative;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(11, 20, 48, 0.75) 0%, rgba(11, 20, 48, 0) 120px),
    radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--cyan-400));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-lead {
  font-size: 1.25rem;
  color: var(--text-300);
  line-height: 1.6;
  margin-top: 1.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pillar-card {
  position: relative;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* Colores por tarjeta para recuperar la identidad de la imagen */
.pillar-card:nth-child(1) { background: linear-gradient(145deg, rgba(26, 43, 76, 0.9), rgba(18, 29, 53, 0.95)); }
.pillar-card:nth-child(2) { 
  background: linear-gradient(145deg, rgba(106, 90, 205, 0.25), rgba(75, 0, 130, 0.45)); 
  border: 1px solid rgba(162, 142, 255, 0.4);
}
.pillar-card:nth-child(3) { background: linear-gradient(145deg, rgba(18, 29, 53, 0.9), rgba(26, 43, 76, 0.95)); }
.pillar-card:nth-child(4) { background: linear-gradient(145deg, rgba(20, 35, 60, 0.9), rgba(15, 25, 45, 0.95)); }

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.pillar-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.12; /* Aumentado para que sea legible pero no invasivo */
  line-height: 1;
  color: #fff;
  pointer-events: none;
  z-index: 1;
  font-family: inherit;
  letter-spacing: -5px;
}

.pillar-icon {
  flex-shrink: 0;
  color: var(--cyan-400);
  background: rgba(77, 217, 255, 0.15);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.pillar-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.pillar-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-300);
  margin-bottom: 2rem;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.pillar-badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  width: fit-content;
  color: #fff;
}

.badge-primary {
  background: var(--cyan-400);
  color: var(--navy-950);
  border: none;
}

/* --- Section Subscription Flow (Bento style) --- */
.subscription-flow {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, #05070a, var(--navy-950));
}

.bento-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-flow-card {
  position: relative;
  padding: 3rem 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.bento-flow-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.flow-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  opacity: 0.1;
  line-height: 1;
  letter-spacing: -2px;
}

.flow-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}

.flow-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #fff;
  max-width: 15ch;
  position: relative;
  z-index: 2;
}

.flow-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-300);
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 968px) {
  .bento-flow-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Section Testimonials (Bento style) --- */
.testimonials-section {
  background: linear-gradient(to bottom, var(--navy-950) 0%, #0b1129 68%, #0b1129 100%);
  padding-bottom: 0;
  position: relative;
}

.testimonials-section::after {
  content: none;
}

.testimonials-slider-container {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  cursor: grab;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTestimonials 60s linear infinite;
  padding-left: 2rem; /* Pequeño padding para que no pegue al borde inicial */
}

.testimonials-slider-container:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 400px;
  flex-shrink: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Features Bento (Rediseño con Color) --- */
.features-checklist-section {
  background:
    radial-gradient(circle at 50% -8%, rgba(124, 77, 255, 0.09), transparent 48%),
    linear-gradient(to bottom, #0b1129 0%, #0a0e21 40%, #060912 100%);
  padding: 4rem 0 3rem 0;
}

.features-bento-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-bento-item {
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.main-feature {
  grid-row: span 1;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.2), rgba(20, 10, 40, 0.8));
  border: 1px solid rgba(124, 77, 255, 0.3);
}

.main-feature::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(124, 77, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.feature-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyan-400);
  background: rgba(77, 217, 255, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.feature-icon-float {
  position: absolute;
  bottom: -10px;
  right: -10px;
  opacity: 0.15;
  color: var(--cyan-400);
  font-size: 120px;
  transform: rotate(-15deg);
}

.features-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-card {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.mini-card:hover {
  background: rgba(124, 77, 255, 0.1);
  border-color: rgba(124, 77, 255, 0.3);
  transform: translateY(-3px);
}

.mini-check {
  color: var(--cyan-400);
  font-weight: 800;
  filter: drop-shadow(0 0 5px var(--cyan-400));
}

.wide-feature {
  grid-column: span 2;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, rgba(77, 217, 255, 0.1), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(77, 217, 255, 0.2);
}

.wide-feature .feature-content {
  flex: 1;
}

.check-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(77, 217, 255, 0.1);
  border: 2px solid var(--cyan-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  font-size: 1.8rem;
  box-shadow: 0 0 30px rgba(77, 217, 255, 0.3);
  margin-left: 2rem;
}

.feature-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, var(--cyan-400));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-desc {
  color: var(--text-200);
  max-width: 45ch;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .features-bento-layout {
    grid-template-columns: 1fr;
  }
  .features-mini-grid {
    grid-column: span 1;
  }
  .wide-feature {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .wide-feature .check-large {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .features-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .features-bento-layout {
    grid-template-columns: 1fr;
  }
  .features-mini-grid {
    grid-column: span 1;
  }
  .wide-feature {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .features-mini-grid {
    grid-template-columns: 1fr;
  }
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-100);
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: auto;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.user-info strong {
  font-size: 1.1rem;
  color: #f4f8ff;
}

.user-info span {
  font-size: 0.85rem;
  color: #b7c4df;
  opacity: 0.95;
}

/* --- Section FAQ --- */
.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #060912 0%, #060912 30%, #0a0d1f 56%, rgba(20, 9, 47, 0.72) 84%, transparent 100%);
  padding: 2rem 0;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 77, 255, 0.07) 0%, rgba(124, 77, 255, 0.03) 24%, transparent 62%);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-header {
  margin-bottom: 3.2rem;
}

.faq-kicker {
  letter-spacing: 2.8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--cyan-400);
  opacity: 0.8;
}

.faq-title {
  line-height: 1.05;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: rgba(38, 18, 76, 0.42);
  border: 1px solid rgba(137, 95, 210, 0.24);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(154, 111, 233, 0.45);
}

.faq-trigger {
  width: 100%;
  padding: 1.2rem 1.45rem;
  border: 0;
  background: transparent;
  color: #f6f8ff;
  font: inherit;
  font-size: 1.16rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 0.9rem;
}

.faq-icon {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  flex-shrink: 0;
  margin-left: auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-content {
  padding: 0 1.45rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.faq-content p {
  margin: 0;
  padding-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #b8c5df;
  max-width: 74ch;
}

.faq-item:not(.is-open) {
  background: rgba(30, 16, 60, 0.35);
  border-color: rgba(120, 88, 184, 0.2);
}

.faq-item.is-open {
  border-color: rgba(168, 120, 255, 0.42);
  background: rgba(46, 18, 88, 0.45);
}

.faq-item.is-open .faq-content {
  opacity: 1;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

@media (max-width: 980px) {
  .faq-section {
    padding: 5.2rem 0;
  }

  .faq-trigger {
    font-size: 1.04rem;
    padding: 1.05rem 1rem;
  }

  .faq-content {
    padding: 0 1rem;
  }

  .faq-content p {
    padding-bottom: 1.4rem;
    font-size: 0.96rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .testimonials-bento {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 2rem;
  }
}

.pillar-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

.badge-primary {
  background: var(--cyan-400);
  color: var(--navy-950);
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card {
    min-height: auto;
    padding: 2.5rem 1.5rem;
  }
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(77, 217, 255, 0.18), transparent 44%),
    radial-gradient(circle at 82% 34%, rgba(106, 90, 205, 0.32), transparent 44%);
  pointer-events: none;
}

.mid-cta-section {
  padding-top: 5.5vh;
  padding-bottom: 6vh;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.mid-cta-content {
  text-align: center;
  color: #1a2b4c;
  padding: 0.6rem 0;
}

.mid-cta-kicker {
  margin: 0;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: #4936a5;
}

.mid-cta-title {
  margin: 0.8rem auto 0.75rem;
  max-width: 32ch;
  font-size: clamp(1.85rem, 3.1vw, 2.85rem);
  line-height: 1.08;
  color: #13284b;
}

.mid-cta-text {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.58;
  color: #405a84;
}

.mid-cta-actions {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mid-cta-button {
  min-width: min(100%, 330px);
  min-height: 56px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  box-shadow: 0 16px 32px rgba(94, 41, 171, 0.35);
}

.final-cta-section {
  padding-top: 5.2vh;
  padding-bottom: 6.4vh;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.final-cta-content {
  text-align: center;
  color: #1a2b4c;
  max-width: 900px;
  margin: 0 auto;
}

.final-cta-kicker {
  margin: 0;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  color: #4c3db0;
}

.final-cta-title {
  margin: 0.8rem auto 0.75rem;
  max-width: 34ch;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
  color: #14284b;
}

.final-cta-text {
  margin: 0 auto;
  max-width: 68ch;
  font-size: 1.06rem;
  line-height: 1.62;
  color: #445d87;
}

.final-cta-button {
  margin-top: 1.35rem;
  min-width: min(100%, 360px);
  min-height: 58px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(91, 40, 168, 0.35);
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
  }

  main {
    padding-top: 84px;
  }

  .grid-2,
  .grid-3,
  .story,
  .contact-shell,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .contacto-main {
    padding-top: 0;
  }

  .contacto-form-grid .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contacto-recaptcha-wrap {
    justify-content: flex-start;
  }

  .hero-immersive {
    min-height: auto;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .kicker {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .hero-headline {
    max-width: none;
    margin-bottom: 0.75rem;
    line-height: 1.02;
  }

  .headline-top {
    font-size: clamp(2rem, 11vw, 2rem);
  }

  .headline-mid {
    font-size: clamp(1.8rem, 10vw, 1.8rem);
    line-height: 1;
  }

  .headline-mid-accent {
    white-space: normal;
  }

  .headline-resalt {
    display: inline-block;
    font-size: clamp(2.55rem, 14vw, 2.55rem);
    line-height: 0.98;
  }

  .hero-copy .lead {
    width: 100%;
    font-size: clamp(1rem, 4.7vw, 1.35rem);
    line-height: 1.28;
    margin-bottom: 1.3rem;
  }

  .hero-copy .lead span {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .hero-cta-row .btn,
  .hero-cta-row .btn-secondary {
    width: 100%;
    min-height: 54px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
  }

  .hero-media {
    width: 100%;
    margin-top: 0.45rem;
  }

  .hero-player {
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(8, 14, 37, 0.34);
  }

  .mid-cta-content {
    padding: 0.3rem 0;
  }

  .mid-cta-title {
    max-width: 24ch;
  }

  .mid-cta-text {
    font-size: 0.98rem;
    margin: 0 auto;
  }

  .mid-cta-actions {
    justify-content: center;
  }

  .mid-cta-button {
    width: auto;
  }

  .final-cta-title {
    max-width: 25ch;
  }

  .final-cta-text {
    font-size: 0.98rem;
  }

  .final-cta-button {
    width: auto;
    min-width: min(100%, 330px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 84px;
    gap: 0.5rem;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .brand img.logo {
    height: 62px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(8, 10, 23, 0.55);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 39;
  }

  .mobile-nav-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    padding: 1.1rem 1.3rem 1.4rem;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.90)),
      radial-gradient(circle at 12% 10%, rgba(102, 221, 255, 0.2), transparent 42%),
      radial-gradient(circle at 88% 16%, rgba(106, 90, 205, 0.14), transparent 38%);
    border-left: 1px solid rgba(110, 133, 180, 0.35);
    box-shadow: -22px 0 46px rgba(9, 20, 46, 0.22);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(calc(100% + 24px), 0, 0);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 40;
  }

  .mobile-nav-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.45rem;
  }

  .mobile-nav-topbar-spacer {
    width: 44px;
    height: 44px;
  }

  .mobile-nav-brand {
    justify-self: center;
  }

  .mobile-nav-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
  }

  .mobile-nav-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(114, 138, 186, 0.32);
    border-radius: 12px;
    background: var(--violet-950);
    color: #2e3d5f;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }

  .mobile-nav-close:hover {
    transform: translateY(-1px);
    background: #efd8ff;
    border-color: rgba(105, 132, 189, 0.5);
  }

  .mobile-nav-links {
    display: grid;
    gap: 0.55rem;
  }

  .mobile-nav-links a {
    padding: 0.95rem 1rem;
    border-radius: 12px;
    color: #1f2e4a;
    font-weight: 700;
    background: var(--violet-950);
    border: 1px solid rgba(116, 142, 196, 0.26);
  }

  .mobile-nav-links a:hover {
    background: #efd8ff;
  }

  .mobile-nav-links a.active {
    color: #111a2b;
    background: linear-gradient(140deg, var(--cyan-300), var(--cyan-400));
    border-color: transparent;
  }

  .mobile-nav-actions {
    display: grid;
    gap: 0.75rem;
  }

  .mobile-nav-actions .btn,
  .mobile-nav-actions .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .mobile-nav-actions .btn-secondary {
    color: #213253;
    background: var(--violet-950);
    border-color: rgba(106, 127, 173, 0.45);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .mobile-nav-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .mobile-nav-drawer {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .bento .item,
  .bento .item:nth-child(1),
  .bento .item:nth-child(2),
  .bento .item:nth-child(3),
  .bento .item:nth-child(4),
  .bento .item:nth-child(5) {
    grid-column: span 12;
  }
}

.metodo-step-card {
  padding: 1.3rem;
}

.metodo-alt-band {
  background: transparent;
}

.metodo-page {
  background: transparent;
}

.metodo-kicker {
  color: var(--violet-100);
  margin-bottom: 0.8rem;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

.metodo-hero {
  min-height: 48vh;
  padding-top: 6vh;
  padding-bottom: 5vh;
}

.metodo-hero-inner {
  text-align: center;
  max-width: 980px;
}

.metodo-hero-lead {
  margin: 1rem auto 0;
  max-width: 64ch;
  text-align: center;
}

.metodo-hero-accent {
  color: var(--cyan-200);
  font-weight: 800;
}

.metodo-title-accent {
  color: var(--violet-200);
  font-weight: 800;
}

.metodo-stats-section {
  padding-top: 2vh;
  padding-bottom: 5vh;
}

.metodo-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metodo-stat-card {
  padding: 1.4rem;
  border-radius: 18px;
  text-align: center;
}

.metodo-stat-value {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--violet-100);
}

.metodo-stat-text {
  margin: 0.5rem 0 0;
  color: var(--text-300);
  line-height: 1.45;
}

.metodo-section-head {
  max-width: 900px;
  margin: 0 auto 1.4rem;
  text-align: center;
}

.metodo-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.metodo-bento-card {
  padding: 1.35rem;
  border-radius: 20px;
  grid-column: span 4;
}

.metodo-bento-card .title-md {
  color: var(--cyan-100);
  margin-top: 0.7rem;
}

.metodo-bento-card .lead {
  margin: 0;
  max-width: none;
}

.metodo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(169, 209, 255, 0.42);
  background: rgba(17, 63, 104, 0.35);
  color: #d5ebff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metodo-bento-card-lg {
  grid-column: span 7;
}

.metodo-bento-card-image {
  grid-column: span 7;
  padding: 0;
  overflow: hidden;
}

.metodo-bento-card-image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.metodo-bento-card-phase-two,
.metodo-bento-card-phase-three {
  grid-column: span 5;
}

.metodo-bento-card-cta {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1rem;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  padding-right: 1.35rem;
  background: linear-gradient(145deg, rgba(106, 90, 205, 0.36), rgba(36, 83, 130, 0.34));
}

.metodo-bento-card-cta .btn {
  min-height: 52px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.metodo-mini-title {
  margin: 0;
  flex: 0 1 auto;
  max-width: 68ch;
  white-space: nowrap;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #eef3ff;
  font-weight: 700;
}

.metodo-validation-section {
  padding-top: 4vh;
}

.metodo-validation-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
}

.metodo-validation-copy,
.metodo-validation-brand {
  padding: 1.45rem;
  border-radius: 20px;
}

.metodo-list-check {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.metodo-list-check li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-300);
  line-height: 1.4;
}

.metodo-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-300), var(--violet-600));
}

.metodo-validation-brand {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  background:
    linear-gradient(145deg, rgba(221, 160, 221, 0.24), rgba(221, 160, 221, 0.12)),
    linear-gradient(140deg, rgba(239, 246, 255, 0.15), rgba(118, 137, 189, 0.08));
}

.metodo-validation-brand img {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.metodo-validation-brand p {
  margin: 0;
  color: var(--text-300);
}

.metodo-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metodo-result-card {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}

.metodo-result-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.metodo-result-card .title-md,
.metodo-result-card .lead {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.metodo-result-card .title-md {
  margin-top: 1rem;
}

.metodo-result-card .lead {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.metodo-founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.metodo-founder-image,
.metodo-founder-copy {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.metodo-founder-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.metodo-founder-copy {
  padding: 1.4rem;
}

.metodo-founder-paragraph {
  margin: 0.8rem 0 0;
  max-width: none;
  line-height: 1.58;
  color: var(--text-300);
}

.metodo-founder-intro-quote {
  position: relative;
  margin: 0.5rem 0 0.85rem;
  padding: 1.1rem 1.2rem 1rem 2.2rem;
  border: 1px solid rgba(155, 234, 255, 0.38);
  border-radius: 18px 18px 18px 6px;
  background:
    linear-gradient(125deg, rgba(7, 39, 74, 0.62), rgba(36, 73, 124, 0.28));
  box-shadow: inset 0 1px 0 rgba(220, 247, 255, 0.16), 0 10px 26px rgba(7, 21, 45, 0.32);
  color: var(--cyan-100);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.42;
}

.metodo-founder-intro-quote::before {
  content: "\201C";
  position: absolute;
  left: 0.8rem;
  top: 0.22rem;
  color: rgba(155, 234, 255, 0.85);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.metodo-founder-closing-quote {
  position: relative;
  margin: 1rem 0 0;
  padding: 0.9rem 2.1rem 0.9rem 1rem;
  border: 1px solid rgba(191, 160, 255, 0.35);
  border-radius: 6px 18px 18px 18px;
  background: linear-gradient(135deg, rgba(83, 53, 145, 0.3), rgba(28, 61, 108, 0.24));
  color: #eff5ff;
  font-size: 1.04rem;
  line-height: 1.45;
  font-style: italic;
}

.metodo-founder-closing-quote::after {
  content: "\201D";
  position: absolute;
  right: 0.8rem;
  bottom: 0.15rem;
  color: rgba(219, 199, 255, 0.82);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
}

.metodo-founder-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.metodo-final-cta {
  background: #ffffff;
}

@media (max-width: 1100px) {
  .metodo-bento-card-lg {
    grid-column: span 12;
  }

  .metodo-bento-card-image,
  .metodo-bento-card-phase-two,
  .metodo-bento-card-phase-three {
    grid-column: span 6;
  }

  .metodo-bento-card-cta {
    grid-column: span 12;
  }

  .metodo-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .metodo-hero {
    min-height: auto;
    padding-top: 4vh;
    padding-bottom: 2vh;
  }

  .metodo-stats-grid,
  .metodo-validation-grid,
  .metodo-founder-grid,
  .metodo-results-grid {
    grid-template-columns: 1fr;
  }

  .metodo-bento-card,
  .metodo-bento-card-lg,
  .metodo-bento-card-image,
  .metodo-bento-card-phase-two,
  .metodo-bento-card-phase-three,
  .metodo-bento-card-cta,
  .metodo-bento-card:not(.metodo-bento-card-lg):not(.metodo-bento-card-image):not(.metodo-bento-card-cta) {
    grid-column: span 12;
  }

  .metodo-bento-card-cta {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .metodo-mini-title {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .metodo-founder-image img {
    min-height: 320px;
  }
}

/* --- Page Psicovivir Plus --- */
.plus-page {
  background: transparent;
}

.plus-page .kicker {
  color: var(--violet-100);
}

.plus-hero {
  padding-top: 7vh;
  padding-bottom: 6vh;
}

.plus-hero-headline {
  max-width: 13ch;
}

.plus-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  min-height: 320px;
}

.plus-hero-video {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  min-height: 320px;
}

.plus-page .stats-bar {
  background: linear-gradient(180deg, rgba(11, 17, 41, 0.86), rgba(11, 20, 48, 0.92));
  border-top: 1px solid rgba(124, 77, 255, 0.18);
  border-bottom: 1px solid rgba(77, 217, 255, 0.14);
}

.plus-page .testimonials-slider-container {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 1.4rem 0 2rem;
}

.plus-page .testimonials-track {
  padding-left: max(1rem, calc((100vw - var(--container)) / 2));
}

.plus-page .stat-number {
  color: var(--cyan-300);
}

.plus-page .stat-desc {
  color: #d0ddfb;
}

.plus-pricing-section {
  background: linear-gradient(to bottom, #060912 0%, #0a0d1f 48%, #0b1430 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.plus-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.plus-plan-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: clamp(25rem, 49vw, 30rem);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease;
}

.plus-plan-card:hover,
.plus-plan-card:focus-within {
  transform: translateY(-8px);
}

.plus-plan-featured {
  border: 1px solid rgba(143, 112, 227, 0.52);
  box-shadow: 0 18px 44px rgba(35, 22, 82, 0.42), 0 0 0 1px rgba(161, 127, 255, 0.26);
  transform: translateY(-8px);
}

.plus-plan-sales {
  background:
    radial-gradient(circle at 12% 10%, rgba(112, 214, 255, 0.18), transparent 45%),
    radial-gradient(circle at 86% 4%, rgba(158, 108, 255, 0.26), transparent 42%),
    linear-gradient(145deg, rgba(35, 45, 84, 0.95), rgba(43, 27, 91, 0.92));
  border-color: rgba(133, 210, 255, 0.56);
  min-height: clamp(31rem, 59vw, 31rem);
  box-shadow:
    0 24px 52px rgba(18, 16, 52, 0.58),
    0 0 0 1px rgba(123, 217, 255, 0.36),
    0 0 42px rgba(103, 88, 224, 0.34);
  transform: translateY(-14px) scale(1.01);
}

.plus-plan-sales:hover,
.plus-plan-sales:focus-within {
  transform: translateY(-18px) scale(1.018);
  border-color: rgba(153, 231, 255, 0.82);
  box-shadow:
    0 30px 62px rgba(16, 14, 54, 0.66),
    0 0 0 1px rgba(162, 238, 255, 0.56),
    0 0 56px rgba(113, 210, 255, 0.42),
    0 0 92px rgba(145, 98, 255, 0.26);
}

.plus-plan-sales .plus-plan-price span {
  color: var(--cyan-100);
  text-shadow: 0 0 18px rgba(121, 224, 255, 0.22);
}

.plus-plan-sales .btn {
  box-shadow: 0 18px 36px rgba(96, 32, 177, 0.46), 0 0 20px rgba(127, 229, 255, 0.2);
}

.plus-plan-sales small {
  color: #d2ebff;
}

.plus-plan-badge {
  margin: 0;
  width: fit-content;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #081627;
  background: linear-gradient(120deg, var(--cyan-400), #99ecff);
}

.plus-plan-label {
  margin: 0;
  color: #e5efff;
  font-size: 1rem;
  font-weight: 700;
}

.plus-plan-price {
  margin: 0;
  font-size: 1rem;
  color: #c9d8fb;
}

.plus-plan-price span {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f6f9ff;
}

.plus-plan-copy {
  margin: 0;
  color: var(--text-300);
  line-height: 1.55;
}

.plus-plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.plus-plan-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #dce8ff;
  font-size: 0.95rem;
  line-height: 1.45;
}

.plus-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-300), var(--violet-600));
}

.plus-plan-card small {
  display: block;
  width: 100%;
  text-align: center;
  color: #abc0e8;
}

.plus-plan-card .btn {
  margin-top: auto;
  min-height: 52px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.flow-icon-violet {
  background: linear-gradient(135deg, #6a5acd, #4b0082);
}

.flow-icon-cyan {
  background: linear-gradient(135deg, #1da8ce, #0d6a88);
}

.flow-icon-mix {
  background: linear-gradient(135deg, #8a2be2, #6a5acd);
}

.avatar-violet {
  background: linear-gradient(135deg, #6a5acd, #4b0082);
}

.avatar-cyan {
  background: linear-gradient(135deg, #1da8ce, #0d6a88);
}

.avatar-mix {
  background: linear-gradient(135deg, #8a2be2, #6a5acd);
}

.avatar-dual {
  background: linear-gradient(135deg, #7351dd, #1c9bc3);
}

.plus-final-cta {
  background: linear-gradient(180deg, #f9fbff 0%, #f0f6ff 100%);
}

@media (max-width: 1100px) {
  .plus-pricing-grid {
    grid-template-columns: 1fr;
  }

  .plus-plan-card,
  .plus-plan-sales {
    min-height: auto;
  }

  .plus-plan-featured,
  .plus-plan-sales {
    transform: none;
  }

  .plus-plan-card:hover,
  .plus-plan-card:focus-within,
  .plus-plan-sales:hover,
  .plus-plan-sales:focus-within {
    transform: none;
  }
}

@media (max-width: 980px) {
  .plus-hero {
    padding-top: 4vh;
    padding-bottom: 3vh;
  }

  .plus-hero-image {
    min-height: 240px;
  }

  .plus-hero-video {
    min-height: 240px;
  }
}

/* --- Page Especialistas --- */
.especialistas-page {
  background: transparent;
}

.especialistas-page .kicker {
  color: var(--violet-100);
}

.especialistas-hero {
  min-height: 56vh;
  padding-top: 7vh;
  padding-bottom: 6vh;
}

.especialistas-hero-inner {
  text-align: center;
  max-width: 980px;
}

.especialistas-hero-inner .kicker {
  margin-bottom: 0.95rem;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.especialistas-hero-headline {
  max-width: 26ch;
  margin-bottom: 1rem;
  line-height: 1.02;
  margin-left: auto;
  margin-right: auto;
}

.especialistas-hero-headline .headline-mid-accent {
  white-space: normal;
}

.especialistas-hero-headline .headline-top {
  font-size: clamp(3rem, 5.4vw, 4.25rem);
  font-weight: 500;
}

.especialistas-hero-headline .headline-mid {
  font-size: clamp(3.3rem, 6vw, 4.7rem);
  line-height: 0.98;
  font-weight: 800;
}

.especialistas-hero-lead {
  margin: 1rem auto 0;
  max-width: 64ch;
  text-align: center;
  font-size: clamp(1.2rem, 2.05vw, 1.72rem);
  line-height: 1.34;
}

.especialistas-hero-cta {
  margin-top: 1.55rem;
  justify-content: center;
  gap: 0.95rem;
}

.especialistas-hero-cta .btn,
.especialistas-hero-cta .btn-secondary {
  min-height: 60px;
  padding: 1rem 1.8rem;
  font-size: 1.02rem;
}

.especialistas-hero-points {
  margin-top: 1.6rem;
  justify-content: center;
}

.especialistas-hero-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
}

.especialistas-hero-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.especialistas-stats-section {
  padding-top: 0;
  padding-bottom: 4.5vh;
  background: transparent;
}

.especialistas-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.especialistas-stat-card {
  padding: 1.35rem;
  border-radius: 18px;
  text-align: center;
}

.especialistas-stat-value {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cyan-300);
  line-height: 1;
}

.especialistas-stat-text {
  margin: 0.65rem 0 0;
  color: #d0ddfb;
  line-height: 1.42;
  font-size: 1.02rem;
}

.especialistas-directory {
  background:
    radial-gradient(circle at 50% -10%, rgba(124, 77, 255, 0.12), transparent 50%),
    linear-gradient(to bottom, #0b1430 0%, #0a1128 52%, #060b19 100%);
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.especialistas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.especialista-card {
  overflow: hidden;
  border-radius: 20px;
  padding: 0;
  aspect-ratio: 4 / 5;
  display: grid;
  grid-template-rows: 1.35fr auto;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.especialista-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 223, 255, 0.32);
  box-shadow: 0 16px 36px rgba(6, 16, 42, 0.45);
}

.especialista-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.especialista-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 320ms ease;
}

.especialista-card:hover .especialista-media img {
  transform: scale(1.04);
}

.especialista-body {
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.especialista-name {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #f4f8ff;
}

.especialista-role {
  margin: 0;
  font-size: 0.86rem;
  color: #b8c9ec;
}

.especialista-link {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-300);
}

.especialistas-benefits {
  background: linear-gradient(to bottom, #060b19 0%, #090f22 54%, #0b1430 100%);
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.especialistas-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.especialistas-benefit-card {
  padding: 1.25rem;
  border-radius: 20px;
}

.benefit-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(178, 196, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 30px rgba(7, 16, 42, 0.35);
}

.benefit-icon i {
  font-size: 2rem;
  color: #d6e8ff;
  filter: drop-shadow(0 8px 18px rgba(113, 167, 255, 0.4));
}

.benefit-icon-results {
  background: linear-gradient(145deg, rgba(92, 157, 255, 0.26), rgba(66, 84, 185, 0.22));
}

.benefit-icon-education {
  background: linear-gradient(145deg, rgba(92, 216, 255, 0.2), rgba(106, 90, 205, 0.26));
}

.benefit-icon-support {
  background: linear-gradient(145deg, rgba(151, 111, 255, 0.24), rgba(82, 145, 255, 0.22));
}

.especialistas-benefit-card .title-md {
  margin-bottom: 0.55rem;
  color: var(--cyan-100);
}

.especialistas-benefit-card .lead {
  margin: 0;
  max-width: none;
}

.especialistas-mid-cta {
  margin-top: 1.1rem;
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 20px;
}

.especialistas-mid-cta-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #eef4ff;
}

.especialistas-mid-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.especialistas-mid-cta .btn,
.especialistas-mid-cta .btn-secondary {
  min-height: 50px;
}

.especialistas-pro-section {
  background: linear-gradient(to bottom, #0b1430 0%, #0f1a37 100%);
  padding-top: 2.8rem;
  padding-bottom: 3.6rem;
}

.especialistas-pro-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.especialistas-pro-copy,
.especialistas-pro-media {
  margin: 0;
  padding: 1.35rem;
  border-radius: 20px;
}

.especialistas-pro-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.6rem 2.3rem;
}

.especialistas-pro-copy .lead {
  margin: 0.9rem 0 0;
  max-width: 42ch;
}

.especialistas-pro-copy .btn {
  margin-top: 1.35rem;
}

.especialistas-pro-media {
  padding: 0;
  overflow: hidden;
}

.especialistas-pro-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .especialistas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .especialistas-hero {
    min-height: auto;
    padding-top: 4vh;
    padding-bottom: 3vh;
  }

  .especialistas-hero-inner .kicker {
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
  }

  .especialistas-hero-headline {
    max-width: 12.5ch;
    margin-bottom: 0.75rem;
  }

  .especialistas-hero-headline .headline-top {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .especialistas-hero-headline .headline-mid {
    font-size: clamp(2.75rem, 13vw, 3.4rem);
  }

  .especialistas-hero-lead {
    font-size: clamp(1.05rem, 4.5vw, 1.32rem);
    line-height: 1.3;
  }

  .especialistas-hero-cta {
    margin-top: 1rem;
  }

  .especialistas-hero-cta .btn,
  .especialistas-hero-cta .btn-secondary {
    min-height: 55px;
    font-size: 1rem;
  }

  .especialistas-hero-points {
    margin-top: 1.2rem;
  }

  .especialistas-hero-image {
    min-height: 0;
  }

  .especialistas-grid,
  .especialistas-stats-grid,
  .especialistas-benefits-grid,
  .especialistas-pro-shell {
    grid-template-columns: 1fr;
  }

  .especialistas-mid-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .especialistas-mid-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .benefit-icon {
    width: 78px;
    height: 78px;
    border-radius: 20px;
  }

  .benefit-icon i {
    font-size: 1.75rem;
  }
}

/* --- Page Servicios --- */
.servicios-page {
  background: transparent;
}

.servicios-page .kicker {
  color: var(--violet-100);
}

.servicios-hero {
  padding-top: 7vh;
  padding-bottom: 6vh;
}

.servicios-hero-headline {
  max-width: 14ch;
}

.servicios-hero-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  background: rgba(8, 16, 38, 0.55);
}

.servicios-hero-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.servicios-stats {
  background: linear-gradient(180deg, rgba(11, 17, 41, 0.88), rgba(11, 20, 48, 0.94));
  border-top: 1px solid rgba(124, 77, 255, 0.18);
  border-bottom: 1px solid rgba(77, 217, 255, 0.14);
}

.servicios-stats .stat-number {
  color: var(--cyan-300);
}

.servicios-stats .stat-desc {
  color: #d0ddfb;
}

.servicios-catalog {
  background:
    radial-gradient(circle at 50% -10%, rgba(124, 77, 255, 0.12), transparent 50%),
    linear-gradient(to bottom, #0b1430 0%, #0a1128 52%, #060b19 100%);
  padding-top: 4rem;
  padding-bottom: 3.6rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.servicios-card {
  padding: 1.4rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.servicios-card .title-md {
  margin-bottom: 0.55rem;
  color: var(--cyan-100);
}

.servicios-card .lead {
  margin-top: 0;
  margin-bottom: 0.8rem;
  max-width: none;
}

.servicios-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.servicios-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #dbe7ff;
  line-height: 1.45;
  font-size: 0.95rem;
}

.servicios-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-300), var(--violet-600));
}

.servicios-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(169, 209, 255, 0.42);
  background: rgba(17, 63, 104, 0.35);
  color: #d5ebff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.servicios-chip-highlight {
  background: linear-gradient(120deg, var(--cyan-400), #99ecff);
  border-color: transparent;
  color: #0c1b32;
}

.servicios-card .btn,
.servicios-card .btn-secondary {
  margin-top: auto;
  width: 100%;
  min-height: 50px;
  text-align: center;
  justify-content: center;
}

.servicios-card-empresas {
  background:
    radial-gradient(circle at 12% 10%, rgba(112, 214, 255, 0.18), transparent 45%),
    radial-gradient(circle at 86% 4%, rgba(158, 108, 255, 0.26), transparent 42%),
    linear-gradient(145deg, rgba(35, 45, 84, 0.95), rgba(43, 27, 91, 0.92));
  border-color: rgba(133, 210, 255, 0.56);
  box-shadow:
    0 18px 42px rgba(18, 16, 52, 0.58),
    0 0 0 1px rgba(123, 217, 255, 0.26);
}

.servicios-flow {
  padding-top: 2.4rem;
  padding-bottom: 3rem;
}

.servicios-cta-band {
  background: linear-gradient(to bottom, #0b1430 0%, #101d3b 100%);
  padding-top: 0.6rem;
  padding-bottom: 3.2rem;
}

.servicios-cta-shell {
  border-radius: 22px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.servicios-cta-kicker {
  margin-bottom: 0.45rem;
}

.servicios-cta-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
}

.servicios-cta-text {
  margin: 0.7rem 0 0;
  max-width: 52ch;
}

.servicios-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: min(100%, 320px);
}

.servicios-cta-actions .btn,
.servicios-cta-actions .btn-secondary {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 980px) {
  .servicios-hero {
    padding-top: 4vh;
    padding-bottom: 3vh;
  }

  .servicios-hero-image {
    min-height: 0;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicios-cta-shell {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .servicios-cta-text {
    max-width: 100%;
  }

  .servicios-cta-actions {
    min-width: 100%;
  }
}

/* --- Page Blog --- */
.blog-page {
  background: transparent;
}

.blog-page .kicker {
  color: var(--violet-100);
}

.blog-hero {
  padding-top: 7vh;
  padding-bottom: 6vh;
}

.blog-hero-stage {
  align-items: stretch;
}

.blog-hero-headline {
  max-width: 12ch;
}

.blog-hero-copy .lead {
  width: min(100%, 38rem);
}

.blog-featured-preview {
  width: 100%;
}

.blog-featured-card {
  height: 100%;
  display: grid;
  grid-template-rows: minmax(260px, 320px) 1fr;
  overflow: hidden;
}

.blog-featured-image-wrap {
  margin: 0;
  position: relative;
}

.blog-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10, 16, 38, 0.5), rgba(10, 16, 38, 0));
  pointer-events: none;
}

.blog-featured-body {
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.blog-card-tag,
.blog-card-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0.24rem 0.72rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #081627;
  background: linear-gradient(120deg, var(--cyan-400), #99ecff);
}

.blog-featured-title {
  margin: 0;
  color: #f4f8ff;
}

.blog-featured-text,
.blog-card-excerpt {
  margin: 0;
  color: #cdd8f5;
  line-height: 1.62;
}

.blog-inline-link,
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-weight: 800;
}

.blog-inline-link::after,
.blog-card-link::after {
  content: ">";
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.blog-inline-link:hover::after,
.blog-card-link:hover::after {
  transform: translateX(3px);
}

.blog-stats {
  background: linear-gradient(180deg, rgba(11, 17, 41, 0.88), rgba(11, 20, 48, 0.94));
  border-top: 1px solid rgba(124, 77, 255, 0.18);
  border-bottom: 1px solid rgba(77, 217, 255, 0.14);
}

.blog-stats .stat-number {
  color: var(--cyan-300);
}

.blog-stats .stat-desc {
  color: #d0ddfb;
}

.blog-editorial-section {
  background:
    radial-gradient(circle at 50% -10%, rgba(124, 77, 255, 0.12), transparent 52%),
    linear-gradient(to bottom, #0b1430 0%, #0b122a 45%, #070d1d 100%);
  padding-top: 3.8rem;
  padding-bottom: 3rem;
}

.blog-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-pillar-card {
  padding: 1.35rem;
  border-radius: 20px;
}

.blog-pillar-card .title-md {
  margin-bottom: 0.55rem;
  color: var(--cyan-100);
}

.blog-pillar-card .lead {
  margin: 0;
  max-width: none;
}

.blog-category-cloud {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.blog-category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(160, 191, 255, 0.25);
  background: rgba(18, 34, 65, 0.46);
  color: #d9e6ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-list-section {
  background: linear-gradient(to bottom, #070d1d 0%, #0b1430 52%, #101b36 100%);
  padding-top: 3.2rem;
  padding-bottom: 3.8rem;
}

.blog-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 223, 255, 0.3);
  box-shadow: 0 18px 38px rgba(7, 16, 42, 0.42);
}

.blog-card-content {
  display: grid;
  gap: 0.8rem;
  height: 100%;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.blog-card-time {
  color: #adc2ea;
  font-size: 0.84rem;
  font-weight: 700;
}

.blog-card-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
  color: #f5f8ff;
}

.blog-card-link {
  margin-top: auto;
  color: var(--cyan-300);
}

.blog-cta-section {
  background: linear-gradient(to bottom, #101b36 0%, #0f1a37 100%);
  padding-top: 0.8rem;
  padding-bottom: 3.5rem;
}

.blog-cta-shell {
  padding: 1.5rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.blog-cta-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
}

.blog-cta-kicker {
  margin-bottom: 0.5rem;
}

.blog-cta-text {
  margin: 0.8rem 0 0;
  max-width: 54ch;
}

.blog-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: min(100%, 320px);
}

.blog-cta-actions .btn,
.blog-cta-actions .btn-secondary {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .blog-pillars-grid,
  .blog-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .blog-hero {
    padding-top: 4vh;
    padding-bottom: 3vh;
  }

  .blog-featured-card {
    grid-template-rows: minmax(220px, 280px) 1fr;
  }

  .blog-pillars-grid,
  .blog-grid-expanded {
    grid-template-columns: 1fr;
  }

  .blog-cta-shell {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .blog-cta-text {
    max-width: 100%;
  }

  .blog-cta-actions {
    min-width: 100%;
  }
}

/* --- Page Blog Detail --- */
.blog-info-page {
  background: transparent;
}

.blog-info-page .kicker {
  color: var(--violet-100);
}

.blog-info-hero {
  padding-top: 7vh;
  padding-bottom: 5vh;
}

.blog-info-hero .container {
  position: relative;
}

.blog-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(175, 201, 255, 0.2);
  background: rgba(16, 29, 58, 0.45);
  font-size: 0.82rem;
  font-weight: 700;
  color: #d4e3ff;
}

.blog-breadcrumb a {
  color: #eaf2ff;
  transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
  color: var(--cyan-300);
}

.blog-info-header {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

.blog-info-header .blog-card-tag {
  margin-inline: 0;
}

.blog-info-title {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0.8rem;
}

.blog-info-subtitle {
  margin: 0;
  max-width: none;
}


.blog-info-actions {
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}

.blog-return-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.72rem 1rem;
}

.blog-return-button i {
  font-size: 0.78rem;
}


.blog-info-hero-media {
  margin: 1.2rem 0 0;
  overflow: hidden;
}

.blog-info-hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.blog-info-content-section {
  background: linear-gradient(to bottom, #091226 0%, #0b1430 48%, #0f1b36 100%);
  padding-top: 3.2rem;
  padding-bottom: 3.4rem;
}

.blog-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.blog-article-body {
  padding: 1.5rem;
  border-radius: 24px;
}

.blog-article-body h2 {
  margin: 1.8rem 0 0.75rem;
  color: #f5f8ff;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.2;
}

.blog-article-body p {
  margin: 0;
  color: #d1def9;
  font-size: 1.06rem;
  line-height: 1.72;
}

.blog-article-body p + p {
  margin-top: 1rem;
}

.blog-rich-text {
  color: #d1def9;
}

.blog-rich-text p,
.blog-rich-text li {
  color: #d1def9;
  font-size: 1.06rem;
  line-height: 1.72;
}

.blog-rich-text h1,
.blog-rich-text h2,
.blog-rich-text h3,
.blog-rich-text h4 {
  margin: 1.6rem 0 0.8rem;
  color: #f5f8ff;
  line-height: 1.2;
}

.blog-rich-text ul,
.blog-rich-text ol {
  margin: 1rem 0;
  padding-left: 1.3rem;
}

.blog-rich-text img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 0.8rem 0;
}

.blog-intro {
  font-size: 1.14rem;
}

.blog-quote {
  margin: 1.45rem 0;
  padding: 1.2rem 1.2rem 1.15rem 3rem;
  border-radius: 16px;
  border: 1px solid rgba(175, 208, 255, 0.24);
  background: linear-gradient(125deg, rgba(13, 29, 57, 0.72), rgba(27, 49, 88, 0.4));
  position: relative;
}

.blog-quote::before {
  content: "\201C";
  position: absolute;
  left: 1rem;
  top: 0.35rem;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(131, 225, 255, 0.9);
  text-shadow: 0 0 12px rgba(105, 206, 255, 0.3);
}

.blog-quote p {
  margin: 0;
  color: #eef5ff;
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  line-height: 1.6;
  font-style: normal;
  font-weight: 600;
}

.blog-number-list,
.blog-bullet-list {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.blog-number-list {
  counter-reset: blog-step;
  list-style: none;
}

.blog-number-list li {
  position: relative;
  padding: 0.75rem 0.8rem 0.75rem 3rem;
  border: 1px solid rgba(182, 210, 255, 0.16);
  border-radius: 14px;
  background: rgba(17, 34, 67, 0.36);
}

.blog-number-list li::before {
  counter-increment: blog-step;
  content: counter(blog-step);
  position: absolute;
  left: 0.95rem;
  top: 0.85rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--cyan-400), #95ecff);
  color: #09172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-number-list strong {
  color: #f4f8ff;
  display: block;
  margin-bottom: 0.35rem;
}

.blog-number-list p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

.blog-bullet-list {
  list-style: none;
}

.blog-bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #d5e4ff;
  line-height: 1.6;
}

.blog-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-300), var(--violet-600));
}

.blog-article-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 110px;
}

.blog-author-card,
.blog-side-cta {
  padding: 1.25rem;
  border-radius: 20px;
}

.blog-author-card .title-md,
.blog-side-cta .title-md {
  color: #f3f8ff;
  margin-bottom: 0.5rem;
}

.blog-author-name {
  margin: 0;
  font-weight: 800;
  color: var(--cyan-200);
}

.blog-author-role,
.blog-author-text {
  margin: 0.45rem 0 0;
  color: #c8d8f7;
  line-height: 1.6;
  font-size: 0.95rem;
}

.blog-ad-media {
  margin: 0.25rem 0 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(177, 207, 255, 0.22);
  background: rgba(12, 25, 50, 0.4);
}

.blog-ad-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-side-cta .lead {
  margin: 0;
  max-width: none;
}

.blog-side-actions {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.blog-side-actions .btn,
.blog-side-actions .btn-secondary {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  text-align: center;
}

.blog-post-nav-section {
  background: linear-gradient(to bottom, #0f1b36 0%, #101d3a 100%);
  padding-top: 0.8rem;
  padding-bottom: 2.6rem;
}

.blog-post-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-post-nav-card {
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-post-nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 223, 255, 0.32);
}

.blog-post-nav-kicker {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan-300);
  text-transform: uppercase;
}

.blog-post-nav-card strong {
  color: #edf4ff;
  line-height: 1.45;
}

.blog-related-section {
  background: linear-gradient(to bottom, #101d3a 0%, #0b1430 56%, #0a1126 100%);
  padding-top: 2.8rem;
  padding-bottom: 3.4rem;
}

@media (max-width: 1100px) {
  .blog-info-layout {
    grid-template-columns: 1fr;
  }

  .blog-article-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .blog-info-hero {
    padding-top: 4vh;
    padding-bottom: 3vh;
  }

  .blog-info-title {
    max-width: none;
  }

  .blog-info-subtitle {
    max-width: 100%;
  }

  .blog-info-actions {
    position: static;
    margin-top: 0.95rem;
    justify-content: flex-start;
  }

  .blog-article-body {
    padding: 1.15rem;
  }

  .blog-intro {
    font-size: 1.04rem;
  }

  .blog-post-nav-grid {
    grid-template-columns: 1fr;
  }
}
