:root {
  --background: #ffffff;
  --foreground: #141414;
  --muted: #666666;
  --soft: #f6f6f6;
  --border: #e8e8e8;
  --dark: #111111;
  --whatsapp: #25d366;
  --whatsapp-hover: #1fbd5b;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-body);
  line-height: 1.65;
}

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

a:hover,
a:focus-visible {
  color: var(--muted);
}

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

.seo-header {
  position: fixed;
  top: 31px;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 232, 232, 0.6);
  background: var(--background);
  transition: background-color 500ms ease, border-color 500ms ease;
}

.seo-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

.seo-topbar__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: seo-marquee 26s linear infinite;
}

.seo-topbar__track span {
  padding: 8px 28px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@keyframes seo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.seo-header__inner {
  display: flex;
  max-width: 1280px;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 16px 24px;
}

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

.seo-brand img,
.seo-footer img {
  width: 116px;
  height: auto;
  filter: brightness(0) opacity(0.65);
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.seo-nav a[aria-current="page"] {
  color: var(--foreground);
}

.seo-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: color 200ms ease;
}

.seo-menu-toggle:hover,
.seo-menu-toggle:focus-visible {
  color: var(--muted);
}

.seo-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-mobile-panel {
  display: none;
}

.seo-main {
  padding-top: 128px;
}

.seo-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--foreground);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seo-button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.seo-button--whatsapp {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
  color: #ffffff;
}

.seo-button--whatsapp:hover,
.seo-button--whatsapp:focus-visible {
  border-color: var(--whatsapp-hover);
  background: var(--whatsapp-hover);
  color: #ffffff;
}

.seo-button--ghost {
  background: transparent;
  color: var(--foreground);
}

.seo-button--ghost:hover,
.seo-button--ghost:focus-visible {
  background: var(--foreground);
  color: #ffffff;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px clamp(20px, 5vw, 56px) 0;
  color: var(--muted);
  font-size: 12px;
}

.seo-breadcrumbs span:last-child {
  color: var(--foreground);
}

.seo-hero {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px);
  gap: clamp(28px, 5vw, 72px);
}

.seo-hero__image {
  min-height: 420px;
  overflow: hidden;
  background: var(--soft);
}

.seo-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-hero__content {
  align-self: center;
  max-width: 720px;
}

.seo-eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 8vw, 82px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 5vw, 48px);
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 4vw, 34px);
}

p {
  margin: 0;
}

p + p {
  margin-top: 18px;
}

.seo-hero p:not(.seo-eyebrow) {
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.seo-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-block: 1px solid var(--border);
  background: var(--soft);
}

.seo-trust div {
  min-width: 0;
  padding: 26px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--border);
}

.seo-trust div:last-child {
  border-right: 0;
}

.seo-trust dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.seo-trust dd {
  margin: 0;
  font-size: 14px;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(36px, 6vw, 76px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 56px);
}

.seo-content {
  min-width: 0;
}

.seo-main-link {
  margin-bottom: 34px;
  padding: 18px 20px;
  border-left: 3px solid var(--foreground);
  background: var(--soft);
  color: var(--muted);
}

.seo-main-link a,
.seo-section a,
.seo-aside-card a {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.seo-section {
  padding: clamp(34px, 5.5vw, 62px) 0;
  border-bottom: 1px solid var(--border);
}

.seo-section:first-child {
  padding-top: 0;
}

.seo-section > p,
.seo-section > ul,
.seo-section details {
  max-width: 760px;
}

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

.seo-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.seo-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--foreground);
}

.seo-aside {
  position: sticky;
  top: 102px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.seo-aside-card {
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--soft);
}

.seo-aside-card h2 {
  font-size: 30px;
}

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

.seo-aside-card .seo-button {
  width: 100%;
  margin-top: 24px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.seo-card-link {
  min-height: 178px;
  padding: 24px;
  background: #ffffff;
  transition: background 180ms ease, color 180ms ease;
}

.seo-card-link:hover,
.seo-card-link:focus-visible {
  background: var(--soft);
  color: var(--foreground);
}

.seo-card-link span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.seo-card-link strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.seo-card-link small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.seo-cluster + .seo-cluster {
  margin-top: 44px;
}

.seo-faq details {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.seo-faq details:last-child {
  border-bottom: 1px solid var(--border);
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.seo-faq details p {
  margin-top: 14px;
  color: var(--muted);
}

.seo-sources ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.seo-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.seo-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 56px);
}

.seo-footer p,
.seo-footer li {
  color: var(--muted);
  font-size: 14px;
}

.seo-footer h2 {
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.seo-footer ul {
  columns: 2;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-footer__copy {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--border);
}

.seo-floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.seo-floating-whatsapp img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.seo-not-found {
  min-height: 62vh;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 130px) clamp(20px, 5vw, 56px);
}

.home-seo-links {
  border-top: 1px solid var(--border, #e8e8e8);
  background: #f6f6f6;
  color: #141414;
  font-family: var(--font-body, "Inter", Arial, sans-serif);
}

#root:empty + .home-seo-links {
  display: none;
}

.home-seo-links__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px clamp(20px, 5vw, 56px);
}

.home-seo-links__eyebrow {
  margin: 0 0 14px;
  color: #666666;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.home-seo-links h2 {
  max-width: 680px;
  margin: 0 0 24px;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.home-seo-links p {
  max-width: 720px;
  margin: 0;
  color: #666666;
}

.home-seo-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid #e8e8e8;
  background: #e8e8e8;
}

.home-seo-links__grid a {
  min-height: 88px;
  padding: 18px;
  background: #ffffff;
  color: #141414;
  font-size: 14px;
}

.home-seo-links__grid a:first-child {
  background: #141414;
  color: #ffffff;
}

@media (max-width: 1023px) {
  .seo-nav {
    display: none;
  }

  .seo-menu-toggle {
    display: inline-flex;
  }

  .seo-mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: var(--background);
    transition: max-height 500ms ease;
  }

  .seo-mobile-panel[data-open="true"] {
    max-height: 384px;
  }

  .seo-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .seo-mobile-nav a {
    border-bottom: 1px solid rgba(232, 232, 232, 0.75);
    padding: 16px 0;
  }

  .seo-hero,
  .seo-layout,
  .seo-footer__inner {
    grid-template-columns: 1fr;
  }

  .seo-hero__image {
    min-height: 300px;
    order: 2;
  }

  .seo-hero__content {
    order: 1;
    text-align: center;
  }

  .seo-actions {
    justify-content: center;
  }

  .seo-trust,
  .seo-two-columns,
  .seo-card-grid,
  .home-seo-links__grid {
    grid-template-columns: 1fr;
  }

  .seo-trust div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }

  .seo-aside {
    position: static;
  }

  .seo-section,
  .seo-section > p,
  .seo-section > ul,
  .seo-section details {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .seo-header__inner {
    padding: 16px 24px;
  }

  .seo-topbar__track span {
    padding-right: 24px;
    padding-left: 24px;
  }

  .seo-hero {
    padding: 28px 18px;
  }

  h1 {
    font-size: 40px;
  }

  .seo-button,
  .seo-aside .seo-button {
    width: 100%;
  }

  .seo-floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
