﻿:root {
  --paper: #f8f0e8;
  --paper-deep: #efe0d3;
  --white: #fffaf5;
  --gold: #ba7a33;
  --gold-light: #e0bd72;
  --rose: #cfa09a;
  --rose-deep: #a96772;
  --clay: #8b5948;
  --ink: #654c40;
  --ink-soft: #86695b;
  --dark: #100b08;
  --dark-panel: #1f1711;
  --line: rgba(139, 89, 72, 0.18);
  --shadow: 0 26px 70px rgba(120, 72, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 4%, rgba(207, 160, 154, 0.3), transparent 22rem),
    linear-gradient(180deg, #fff8f1 0%, var(--paper) 48%, #fbf3ec 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 248, 241, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-nav,
.section,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.nav-links,
.nav-cta,
.section-label,
.button-primary,
.button-secondary,
.button-small,
.program-level,
.price,
.footer-inner,
table,
.text-link {
  font-family: Arial, Helvetica, sans-serif;
}

.brand {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  color: rgba(101, 76, 64, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-cta:hover,
.text-link:hover {
  color: var(--gold);
}

.nav-cta,
.button-primary,
.button-secondary,
.button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.nav-cta,
.button-primary,
.button-small {
  background: var(--gold);
  color: #fffaf5;
  border-color: var(--gold);
}

.button-secondary {
  background: rgba(255, 250, 245, 0.72);
  color: var(--ink);
  border-color: rgba(255, 250, 245, 0.58);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.68rem;
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-small:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 20px 92px;
  text-align: center;
}

.programas-hero {
  min-height: 82svh;
}

.hero-cover,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cover {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.76), rgba(248, 240, 232, 0.48) 50%, rgba(248, 240, 232, 0.82)),
    radial-gradient(circle at center, rgba(255, 250, 245, 0.1), rgba(101, 76, 64, 0.14));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero p {
  width: min(690px, 100%);
  margin: 28px auto 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.section {
  padding: 96px 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-label {
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1.15;
}

p,
li {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.section-copy p {
  margin: 0 0 18px;
}

.accent-text {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-style: italic;
  line-height: 1.45;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img,
.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame img {
  aspect-ratio: 4 / 5;
}

.soft-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: rgba(239, 224, 211, 0.58);
  border-block: 1px solid var(--line);
}

.mirror-grid,
.program-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

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

.mirror-card,
.program-card,
blockquote,
.faq-list article,
.detail-card {
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(139, 89, 72, 0.08);
}

.mirror-card {
  padding: clamp(28px, 4vw, 46px);
}

.mirror-card.muted {
  background: rgba(248, 240, 232, 0.82);
}

.check-list,
.x-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
}

.x-list li::before {
  content: "×";
  color: var(--rose-deep);
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.program-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.program-card img {
  aspect-ratio: 4 / 3;
}

.program-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.program-body .button-small {
  margin-top: auto;
}

.program-level,
.price {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price {
  color: var(--rose-deep);
}

.featured {
  transform: translateY(-18px);
  border-color: rgba(186, 122, 51, 0.5);
  box-shadow: 0 30px 84px rgba(186, 122, 51, 0.22);
}

.dark-card,
.dark-detail {
  background: var(--dark-panel);
  color: var(--white);
  border-color: rgba(224, 189, 114, 0.3);
}

.dark-card p,
.dark-card li,
.dark-detail p,
.dark-detail li {
  color: rgba(255, 250, 245, 0.78);
}

.dark-card h3,
.dark-detail h3 {
  color: var(--white);
}

.center-action {
  margin-top: 28px;
  text-align: center;
}

.text-link {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.9), rgba(16, 11, 8, 0.96)),
    url("assets/salto-cuantico-expansion-dinero-liderazgo-portada.webp") center / cover;
}

.testimonial-band h2,
.testimonial-band .section-label {
  color: var(--white);
}

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

blockquote {
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
}

blockquote p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-list,
.faq-list,
.detail-stack {
  display: grid;
  gap: 16px;
}

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

.blog-card {
  padding: 28px;
  background: rgba(255, 250, 245, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(139, 89, 72, 0.08);
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.blog-card p {
  margin: 0;
}

.linked-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.linked-card .text-link,
.blog-post-card .text-link {
  margin-top: auto;
}

.closing-cta {
  padding: 96px 20px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 11, 8, 0.84), rgba(16, 11, 8, 0.92)),
    url("assets/reinventate-mentoria-uno-a-uno-alta-identidad.webp") center / cover;
}

.closing-cta h2 {
  color: var(--white);
}

.closing-cta p {
  width: min(620px, 100%);
  margin: 0 auto;
  color: rgba(255, 250, 245, 0.82);
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 250, 245, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 34px 0;
  font-size: 0.8rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 250, 245, 0.78);
  font-size: 0.8rem;
}

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

.footer-inner a:hover {
  color: var(--gold-light);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.7);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

caption {
  padding: 18px;
  color: var(--ink-soft);
  text-align: left;
}

th,
td {
  padding: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

tbody th {
  color: var(--ink);
}

td a {
  color: var(--gold);
  font-weight: 700;
}

.detail-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}

.detail-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.featured-detail {
  border-color: rgba(186, 122, 51, 0.48);
}

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

.faq-list article {
  padding: 28px;
}

.blog-hero {
  min-height: 78svh;
}

.blog-post-card {
  min-height: 100%;
}

.article-page {
  padding-top: 132px;
  padding-bottom: 88px;
}

.article-hero,
.article-layout,
.article-cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin-bottom: 64px;
}

.article-hero-media {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.article-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
}

.article-intro {
  margin: 0;
  font-size: 1.08rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body h2 {
  margin-top: 44px;
}

.article-body h3 {
  margin-top: 30px;
}

.article-body ul {
  margin: 18px 0 20px;
}

.article-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.aside-card {
  padding: 28px;
  background: rgba(255, 250, 245, 0.84);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(139, 89, 72, 0.08);
}

.aside-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.aside-card .text-link {
  display: block;
  margin-top: 12px;
}

.article-cta-band {
  margin-top: 72px;
  padding: 52px;
  text-align: center;
  background: rgba(239, 224, 211, 0.56);
  border: 1px solid var(--line);
}

.article-cta-band p {
  width: min(700px, 100%);
  margin: 0 auto;
}

@media (max-width: 920px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 178px;
  }

  .section-split,
  .mirror-grid,
  .program-grid,
  .testimonial-grid,
  .blog-grid,
  .faq-list,
  .article-hero,
  .article-layout,
  .detail-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .featured {
    transform: none;
  }

  .footer-inner {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-nav,
  .section,
  .footer-inner,
  .article-hero,
  .article-layout,
  .article-cta-band {
    width: min(100% - 28px, 1180px);
  }

  .nav-cta {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .hero-actions,
  .footer-inner nav {
    flex-direction: column;
    align-items: stretch;
  }

  .button-primary,
  .button-secondary,
  .button-small {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .soft-band,
  .testimonial-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .program-body,
  .mirror-card,
  .faq-list article,
  .aside-card,
  .article-cta-band {
    padding: 24px;
  }
}
