.seo-site {
  min-height: 100vh;
  color:
    var(--trazza-dark, #102030);
  background: #ffffff;
}

.seo-header {
  position: relative;
  z-index: 20;
  background:
    rgba(255, 255, 255, .96);
  border-bottom:
    1px solid rgba(16, 32, 48, .10);
}

.seo-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.seo-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.seo-header__brand img {
  display: block;
  width: auto;
  height: 42px;
}

.seo-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.seo-header__nav a {
  color:
    var(--trazza-dark, #102030);
  text-decoration: none;
  font-size: 13px;
  font-weight: 780;
}

.seo-header__nav a:hover {
  color:
    var(--trazza-green, #16943b);
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding:
    clamp(92px, 9vw, 150px)
    0
    clamp(84px, 8vw, 132px);
  background:
    linear-gradient(
      135deg,
      #f8fbf8 0%,
      #ffffff 56%,
      #f2f8ef 100%
    );
}

.seo-hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  top: -490px;
  right: -300px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(113, 185, 0, .14) 0%,
      rgba(113, 185, 0, 0) 70%
    );
}

.seo-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  color: #7d888e;
  font-size: 12px;
  font-weight: 700;
}

.seo-breadcrumb a {
  color:
    var(--trazza-green-strong, #0f7f31);
  text-decoration: none;
}

.seo-breadcrumb span {
  color: #a4abad;
}

.seo-hero__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color:
    var(--trazza-green-strong, #0f7f31);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.seo-hero__eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  background:
    var(--trazza-lime, #71b900);
}

.seo-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0;
  color:
    var(--trazza-dark, #102030);
  font-size:
    clamp(45px, 5.5vw, 76px);
  font-weight: 860;
  line-height: .99;
  letter-spacing: -.052em;
}

.seo-hero__lead {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin:
    clamp(28px, 3vw, 40px)
    0 0;
  color: #66747b;
  font-size:
    clamp(18px, 1.55vw, 22px);
  line-height: 1.67;
}

.seo-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.seo-primary-link,
.seo-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 820;
}

.seo-primary-link {
  color: #ffffff;
  background:
    var(--trazza-green, #16943b);
  box-shadow:
    0 12px 28px rgba(22, 148, 59, .16);
}

.seo-primary-link:hover {
  background:
    var(--trazza-green-strong, #0f7f31);
}

.seo-secondary-link {
  color:
    var(--trazza-dark, #102030);
  background: #ffffff;
  border:
    1px solid rgba(16, 32, 48, .14);
}

.seo-content {
  padding:
    clamp(84px, 8vw, 130px)
    0;
}

.seo-content__intro {
  display: grid;
  grid-template-columns:
    minmax(0, .72fr)
    minmax(0, 1fr);
  gap:
    clamp(45px, 7vw, 110px);
  align-items: start;
}

.seo-content__label {
  margin: 0;
  color:
    var(--trazza-green-strong, #0f7f31);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-content__intro h2,
.seo-section h2 {
  margin: 12px 0 0;
  color:
    var(--trazza-dark, #102030);
  font-size:
    clamp(31px, 3.3vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.seo-content__intro-text {
  display: grid;
  gap: 18px;
}

.seo-content__intro-text p,
.seo-section p {
  margin: 0;
  color: #65727a;
  font-size: 16px;
  line-height: 1.78;
}

.seo-section {
  margin-top:
    clamp(78px, 8vw, 120px);
  padding-top:
    clamp(60px, 6vw, 84px);
  border-top:
    1px solid rgba(16, 32, 48, .12);
}

.seo-section__layout {
  display: grid;
  grid-template-columns:
    minmax(260px, .62fr)
    minmax(0, 1fr);
  gap:
    clamp(45px, 7vw, 110px);
  align-items: start;
}

.seo-section__body {
  display: grid;
  gap: 18px;
}

.seo-points {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.seo-point {
  padding: 20px 21px;
  background: #f5f8f6;
  border:
    1px solid rgba(16, 32, 48, .08);
  border-radius: 13px;
  color:
    var(--trazza-dark-soft, #2b3740);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.seo-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.seo-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color:
    var(--trazza-green-strong, #0f7f31);
  background: #eff8ef;
  border:
    1px solid rgba(22, 148, 59, .13);
  font-size: 12px;
  font-weight: 800;
}

.seo-related {
  padding:
    clamp(80px, 7vw, 112px)
    0;
  background:
    #f3f7f4;
}

.seo-related__header {
  max-width: 780px;
}

.seo-related__header p {
  margin: 0 0 12px;
  color:
    var(--trazza-green-strong, #0f7f31);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-related__header h2 {
  margin: 0;
  color:
    var(--trazza-dark, #102030);
  font-size:
    clamp(30px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -.037em;
}

.seo-related__grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.seo-related__link {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  color:
    var(--trazza-dark, #102030);
  background: #ffffff;
  border:
    1px solid rgba(16, 32, 48, .10);
  border-radius: 14px;
  text-decoration: none;
}

.seo-related__link strong {
  font-size: 16px;
  line-height: 1.25;
}

.seo-related__link span {
  color:
    var(--trazza-green-strong, #0f7f31);
  font-size: 12px;
  font-weight: 800;
}

.seo-cta {
  padding:
    clamp(84px, 8vw, 126px)
    0;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #0d1e2a 0%,
      #102d2e 100%
    );
}

.seo-cta__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  gap: 40px;
  align-items: center;
}

.seo-cta h2 {
  max-width: 800px;
  margin: 0;
  color: #ffffff;
  font-size:
    clamp(34px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -.043em;
}

.seo-cta p {
  max-width: 720px;
  margin: 20px 0 0;
  color:
    rgba(255, 255, 255, .62);
  font-size: 16px;
  line-height: 1.7;
}

.seo-footer {
  padding: 30px 0;
  border-top:
    1px solid rgba(16, 32, 48, .10);
  background: #ffffff;
}

.seo-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  color: #7b858a;
  font-size: 12px;
}

.seo-footer a {
  color:
    var(--trazza-dark, #102030);
  text-decoration: none;
  font-weight: 780;
}


/* ==========================================================
   HOME - EXPLORAR POR NECESIDAD
   ========================================================== */

.seo-explore {
  padding:
    clamp(84px, 7vw, 110px)
    0;
  background:
    #102030;
  color: #ffffff;
}

.seo-explore__header {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(280px, .65fr);
  gap:
    clamp(40px, 7vw, 100px);
  align-items: end;
}

.seo-explore__eyebrow {
  margin: 0 0 16px;
  color: #92cc32;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-explore h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size:
    clamp(33px, 3.7vw, 50px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.seo-explore__lead {
  margin: 0;
  color:
    rgba(255, 255, 255, .58);
  font-size: 15px;
  line-height: 1.7;
}

.seo-explore__grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top:
    clamp(48px, 5vw, 70px);
  background:
    rgba(255, 255, 255, .12);
  border:
    1px solid rgba(255, 255, 255, .12);
}

.seo-explore__link {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 23px;
  color: #ffffff;
  background: #102030;
  text-decoration: none;
  transition:
    background .2s ease;
}

.seo-explore__link:hover {
  background: #142c38;
}

.seo-explore__link strong {
  max-width: 270px;
  font-size: 16px;
  line-height: 1.3;
}

.seo-explore__link span {
  color: #92cc32;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

  .seo-content__intro,
  .seo-section__layout,
  .seo-explore__header {
    grid-template-columns: 1fr;
  }

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

  .seo-cta__layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {

  .seo-header__inner {
    min-height: 72px;
  }

  .seo-header__brand img {
    height: 35px;
  }

  .seo-header__nav {
    gap: 14px;
  }

  .seo-header__nav a:first-child {
    display: none;
  }

  .seo-hero {
    padding:
      72px 0 82px;
  }

  .seo-points,
  .seo-related__grid,
  .seo-explore__grid {
    grid-template-columns: 1fr;
  }

  .seo-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

}
