:root {
  --ink: #111827;
  --muted: #5d6675;
  --line: #d9e0e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --navy: #102a31;
  --blue: #176d77;
  --cyan: #16a7b8;
  --green: #0c8f78;
  --gold: #c59425;
  --shadow: 0 18px 48px rgba(16, 36, 63, .14);
}

@keyframes latinovaPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(12, 143, 120, 0); }
  50% { box-shadow: 0 0 0 7px rgba(12, 143, 120, .12); }
}

@keyframes latinovaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes latinovaButtonGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

@keyframes latinovaNudge {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.015); }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a,
button {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, opacity .18s ease;
}

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 600;
}

.top-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  padding: 9px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 86px;
}

.brand {
  flex: 0 0 270px;
}

.brand img {
  width: 270px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #293545;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 32px 0;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.main-nav a:focus-visible {
  color: var(--blue);
  outline: 2px solid rgba(23, 109, 119, .35);
  outline-offset: 5px;
}

.nav-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  animation: latinovaButtonGlow 4s ease-in-out infinite;
}

.nav-action::after,
.btn::after,
.article-more::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26), transparent);
  transition: transform .55s ease;
}

.nav-action:hover::after,
.nav-action:focus-visible::after,
.btn:hover::after,
.btn:focus-visible::after,
.article-more:hover::after,
.article-more:focus-visible::after {
  transform: translateX(120%);
}

.nav-action,
.btn--primary {
  color: var(--white);
  background: var(--green);
}

.nav-action:hover,
.nav-action:focus-visible,
.btn--primary:hover,
.btn--primary:focus-visible {
  color: var(--white);
  background: #0aa087;
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 16px 30px rgba(12, 143, 120, .3);
}

.btn--secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(16, 36, 63, .18);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 12px 24px rgba(23, 109, 119, .24);
}

.btn--download {
  min-height: 48px;
  white-space: nowrap;
  animation: latinovaPulse 2.6s ease-in-out infinite, latinovaNudge 3.8s ease-in-out infinite;
}

.nav-action:active,
.btn:active,
.article-more:active {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(16, 36, 63, .08);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(16, 42, 49, .97), rgba(15, 58, 63, .92)),
    url("https://latinova.lat/public/site/images/admin/portada-67419b71958007ab263d078290756fb5.jpg") center/cover;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold));
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
  min-height: 610px;
  padding: 70px 0 76px;
}

.country-flags {
  position: absolute;
  left: 0;
  top: 70px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
}

.country-flags span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #90f2df;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(58px, 8vw, 104px);
  line-height: .92;
  letter-spacing: 0;
}

.hero__subtitle {
  margin: -4px 0 18px;
  color: #90f2df;
  font-size: 26px;
  font-weight: 800;
}

.hero__lead {
  max-width: 690px;
  color: rgba(255, 255, 255, .84);
  font-size: 21px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 38px;
}

.hero__actions .btn {
  min-height: 50px;
  padding: 0 22px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
}

.metrics div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 23px;
}

.metrics span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 700;
}

.issue-feature {
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.issue-feature:hover {
  transform: translateY(-4px);
}

.issue-feature__media {
  background: transparent;
}

.issue-feature__media img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.issue-feature__body {
  padding: 20px;
  background: var(--white);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
}

.magazine-mockup {
  max-width: 430px;
  justify-self: center;
}

.magazine-cover {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 18px 24px 42px rgba(0, 0, 0, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.magazine-mockup:hover .magazine-cover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 22px 30px 58px rgba(0, 0, 0, .24);
}

.tag {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag--call {
  color: var(--navy);
  background: var(--gold);
}

.issue-feature h2 {
  margin-bottom: 12px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px;
  line-height: 1.12;
}

.issue-feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -34px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow);
}

.quick-links a {
  min-height: 148px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.quick-links a:hover,
.quick-links a:focus-visible {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 42, 49, .14);
}

.quick-links a:hover strong,
.quick-links a:focus-visible strong {
  color: var(--green);
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links span,
.quick-links strong,
.quick-links small {
  display: block;
}

.quick-links span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.quick-links strong {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 17px;
}

.quick-links small {
  color: var(--muted);
  font-size: 13px;
}

.current-focus {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
  padding: 82px 0 0;
}

.current-focus__intro {
  padding-right: 20px;
}

.current-focus h2 {
  margin: 10px 0 16px;
  color: var(--navy);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 42px;
  line-height: 1.08;
}

.current-focus p {
  color: var(--muted);
  font-size: 17px;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px;
  background: var(--white);
  border-top: 4px solid var(--green);
  box-shadow: 0 8px 26px rgba(16, 36, 63, .07);
}

.topic-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--navy);
  background: #eef7f5;
  border: 1px solid rgba(12, 143, 120, .2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.topic-list span:hover {
  transform: translateY(-2px);
  background: #e1f3ef;
  border-color: rgba(12, 143, 120, .42);
}

.submission-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 54px;
  padding: 28px 32px;
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.submission-module h2 {
  margin: 8px 0 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
}

.submission-module p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.section--current {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.section-heading h2,
.editorial-band h2 {
  margin: 10px 0 16px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 42px;
  line-height: 1.08;
}

.section-heading p,
.editorial-band p {
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.text-link:hover,
.text-link:focus-visible,
.article-link:hover,
.article-link:focus-visible {
  color: var(--green);
  transform: translateX(4px) scale(1.015);
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border-left: 5px solid var(--cyan);
  box-shadow: 0 8px 26px rgba(16, 36, 63, .08);
}

.article-list span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-list h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.22;
}

.article-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.article-list .article-authors {
  margin-bottom: 10px;
  color: #2d5f93;
  font-size: 13px;
  font-weight: 800;
}

.article-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
  position: relative;
}

.article-link::after {
  content: "→";
  margin-left: 6px;
  transition: transform .18s ease;
}

.article-link:hover::after,
.article-link:focus-visible::after {
  transform: translateX(4px);
}

.article-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  animation: latinovaButtonGlow 4.4s ease-in-out infinite;
}

.article-more:hover,
.article-more:focus-visible {
  color: var(--white);
  background: var(--green);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 12px 24px rgba(12, 143, 120, .24);
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 48px;
  color: var(--white);
  background: var(--navy);
}

.editorial-band p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 70px 0 88px;
}

.indexacion-priority {
  padding: 58px 0 10px;
}

.info-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 70px 0 0;
}

.info-panels article {
  min-height: 300px;
  padding: 30px;
  background: var(--white);
  border-top: 4px solid var(--cyan);
  box-shadow: 0 8px 26px rgba(16, 36, 63, .07);
}

.info-panels h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 32px;
  line-height: 1.08;
}

.info-panels p {
  color: var(--muted);
  font-size: 14px;
}

.trust-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--blue);
  box-shadow: 0 8px 26px rgba(16, 36, 63, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(16, 42, 49, .14);
}

.trust-card h3 {
  color: var(--navy);
  font-size: 21px;
}

.trust-card p {
  color: var(--muted);
  font-size: 14px;
}

.trust-card--featured {
  border-top-color: var(--gold);
  background: linear-gradient(180deg, #ffffff, #f2fbf8);
  box-shadow: 0 18px 42px rgba(16, 42, 49, .16);
}

.trust-card--featured h3 {
  font-size: 26px;
}

.indexation-intro {
  max-width: 360px;
  margin: 0 0 20px;
}

.logos {
  display: grid;
  gap: 16px;
  align-items: center;
}

.logos img {
  max-height: 54px;
  width: auto;
}

.indexation-logos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.indexation-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 14px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(16, 42, 49, .08);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(16, 42, 49, .06);
}

.indexation-logos a:hover,
.indexation-logos a:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(12, 143, 120, .28);
  box-shadow: 0 16px 28px rgba(16, 42, 49, .14);
}

.indexation-logos img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.indexation-logos a:nth-child(3) img,
.indexation-logos a:nth-child(4) img {
  max-height: 44px;
}

.trust-card--accent {
  color: var(--white);
  background: var(--green);
  border-top-color: var(--gold);
}

.trust-card--accent h3,
.trust-card--accent p {
  color: var(--white);
}

.trust-card--accent a {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 13px;
  color: var(--navy);
  background: var(--white);
  border-radius: 5px;
  font-weight: 900;
}

.trust-card--accent a:hover,
.trust-card--accent a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 42, 49, .18);
}

.editorial-team {
  padding: 0 0 86px;
}

.team-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.team-heading h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 42px;
  line-height: 1.08;
}

.team-heading p {
  color: var(--muted);
  font-size: 15px;
}

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

.team-grid article {
  min-height: 172px;
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--green);
  box-shadow: 0 8px 26px rgba(16, 36, 63, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.team-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(16, 42, 49, .14);
}

.team-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.team-grid p {
  color: var(--muted);
  font-size: 13px;
}

.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.team-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--navy);
  background: #eef7f5;
  border: 1px solid rgba(12, 143, 120, .22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.team-links a:hover,
.team-links a:focus-visible {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.footer {
  color: rgba(255, 255, 255, .78);
  background: #102a31;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 38px 0;
}

.footer strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 18px;
}

.footer__editorial {
  color: #90f2df;
  font-size: 14px;
  font-weight: 800;
}

.footer p {
  max-width: 460px;
  margin-bottom: 0;
}

.footer span {
  display: block;
  margin-bottom: 7px;
}

.footer__partner img {
  width: 150px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer__partner a {
  display: inline-block;
}

.footer__partner a:hover,
.footer__partner a:focus-visible {
  transform: translateY(-2px);
  opacity: .9;
}

.footer__partner span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  color: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
  animation: latinovaFloat 1.2s ease-in-out infinite;
}

@media (max-width: 980px) {
  .nav-shell {
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 16px 0;
  }

  .brand {
    flex-basis: 240px;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 8px 0 14px;
    white-space: nowrap;
  }

  .nav-action {
    margin-left: auto;
  }

  .hero__grid,
  .split,
  .submission-module,
  .current-focus,
  .editorial-band,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .issue-feature {
    max-width: 520px;
  }

  .current-focus__intro {
    padding-right: 0;
  }

  .country-flags {
    position: static;
    justify-self: start;
    margin-bottom: -28px;
  }

  .quick-links,
  .info-panels,
  .team-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .top-strip__inner {
    justify-content: flex-start;
  }

  .brand,
  .brand img {
    width: 220px;
    flex-basis: 220px;
  }

  .nav-action {
    width: 100%;
  }

  .main-nav {
    gap: 20px;
    padding-right: 18px;
  }

  .hero__grid {
    padding: 48px 0 62px;
  }

  .country-flags {
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: -18px;
    border-radius: 8px;
  }

  h1 {
    font-size: 58px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .metrics,
  .quick-links,
  .team-grid,
  .info-panels,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .submission-module {
    padding: 24px;
  }

  .submission-module .btn {
    width: 100%;
  }

  .magazine-mockup {
    max-width: 100%;
  }

  .magazine-cover {
    transform: none;
  }

  .quick-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-list article {
    grid-template-columns: 1fr;
  }

  .editorial-band {
    padding: 30px 24px;
  }
}
