:root {
  --rh-primary: #0a2b57;
  --rh-accent: #e8a020;
  --rh-accent-hover: #d18e15;
  --rh-bg: #f6f9fe;
  --rh-bg-hero: linear-gradient(135deg,#0a2b57 0%,#163d6f 100%);
  --rh-text: #1a2a3a;
  --rh-text-light: #5a6a7a;
  --rh-border: #dfe6f2;
  --rh-radius: 12px;
  --rh-radius-sm: 8px;
  --rh-shadow: 0 2px 8px rgba(10,43,87,0.08);
  --rh-shadow-hover: 0 4px 16px rgba(10,43,87,0.12);
  --rh-max-w: 1200px;
  --rh-gap: 20px;
}
html {
  scroll-behavior: smooth;
}
#categorias {
  scroll-margin-top: 96px;
}
.rh-topbar,
.rh-hero,
.rh-callout,
.rh-featured,
.rh-cats,
.rh-benefits,
.rh-starthere,
.rh-top-comparativas,
.rh-intent-cards,
.rh-affiliate-notice {
  box-sizing: border-box;
}
.rh-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--rh-border);
  padding: 8px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rh-topbar .wrap {
  max-width: var(--rh-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.rh-topbar .left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rh-topbar .eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--rh-text-light);
}
.rh-topbar .right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: var(--rh-bg);
  color: var(--rh-primary);
  border: 1px solid var(--rh-border);
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.rh-chip:hover,
.rh-chip:focus-visible {
  background: var(--rh-primary);
  color: #fff;
  border-color: var(--rh-primary);
  outline: none;
}
.rh-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.rh-btn--accent {
  background: var(--rh-accent);
  color: #fff;
  border-color: var(--rh-accent);
}
.rh-btn--accent:hover,
.rh-btn--accent:focus-visible {
  background: var(--rh-accent-hover);
  border-color: var(--rh-accent-hover);
}
.rh-btn--ghost {
  background: transparent;
  color: var(--rh-primary);
  border-color: var(--rh-border);
}
.rh-btn--ghost:hover,
.rh-btn--ghost:focus-visible {
  background: var(--rh-bg);
}
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 14px;
  background: var(--rh-bg);
  color: var(--rh-primary);
  border: 1px solid var(--rh-border);
  font-size: 13px;
  transition: all .2s ease;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--rh-primary);
  color: #fff;
}
.rh-hero {
  background: var(--rh-bg-hero);
  color: #fff;
  padding: 40px 16px 32px;
  border-radius: 0 0 var(--rh-radius) var(--rh-radius);
}
.rh-hero .wrap {
  max-width: var(--rh-max-w);
  margin: 0 auto;
  position: relative;
}
.rh-hero .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
  margin: 0 0 6px;
}
.rh-hero h1 {
  font-size: clamp(26px,5vw,42px);
  font-weight: 900;
  margin: 0 0 10px;
  line-height: 1.15;
}
.rh-hero .lead {
  font-size: 16px;
  opacity: .92;
  max-width: 680px;
  margin: 0 0 16px;
  line-height: 1.5;
}
.rh-search {
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  max-width: 720px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.rh-search input[type="search"] {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--rh-text);
  outline: none;
  min-width: 0;
}
.rh-search button {
  background: var(--rh-accent);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}
.rh-search button:hover {
  background: var(--rh-accent-hover);
}
.rh-quick-intents {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  max-width: 720px;
}
.rh-quick-intents .rh-chip {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  font-size: 12px;
  padding: 6px 12px;
}
.rh-quick-intents .rh-chip:hover {
  background: rgba(255,255,255,0.26);
  border-color: rgba(255,255,255,0.35);
}
.rh-hero .actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.rh-hero .actions .btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}
.rh-hero .actions .btn--ghost:hover {
  background: rgba(255,255,255,0.22);
}
.rh-hero .badges {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
  opacity: .9;
  flex-wrap: wrap;
}
.rh-starthere {
  max-width: var(--rh-max-w);
  margin: 28px auto 0;
  padding: 0 16px;
}
.rh-starthere h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--rh-primary);
  margin: 0 0 14px;
}
.rh-starthere .grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--rh-gap);
}
.rh-starthere .path-card {
  background: #fff;
  border: 2px solid var(--rh-border);
  border-radius: var(--rh-radius);
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--rh-text);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rh-starthere .path-card:hover {
  border-color: var(--rh-accent);
  box-shadow: var(--rh-shadow-hover);
  transform: translateY(-2px);
}
.rh-starthere .path-card .ico {
  font-size: 32px;
}
.rh-starthere .path-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  color: var(--rh-primary);
}
.rh-starthere .path-card p {
  font-size: 13px;
  color: var(--rh-text-light);
  margin: 0;
  line-height: 1.4;
}
.rh-featured {
  max-width: var(--rh-max-w);
  margin: 32px auto 0;
  padding: 0 16px;
}
.rh-featured h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--rh-primary);
  margin: 0 0 14px;
}
.rh-featured .wp-block-post-template {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rh-featured .wp-block-post-template>li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--rh-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--rh-shadow);
}
.rh-featured .wp-block-post-featured-image {
  margin: 0;
}
.rh-featured .wp-block-post-featured-image img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}
.rh-featured .wp-block-post-title {
  margin: 0 0 4px;
}
.rh-featured .wp-block-post-title a {
  font-size: 17px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rh-featured .wp-block-post-excerpt {
  margin: 0;
}
.rh-featured .wp-block-post-excerpt__excerpt {
  font-size: 13px;
  color: #475569;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rh-cats {
  max-width: var(--rh-max-w);
  margin: 32px auto 0;
  padding: 0 16px;
}
.rh-cats h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--rh-primary);
  margin: 0 0 14px;
}
.rh-cats .grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.rh-cats .card {
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--rh-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rh-cats h3 {
  margin: .2rem 0 .4rem;
  font-size: 20px;
}
.rh-cats .btn-ghost {
  align-self: flex-start;
}
@media (max-width: 960px) {
  .rh-cats .grid {
    grid-template-columns: 1fr;
  }
}
.rh-top-comparativas {
  max-width: var(--rh-max-w);
  margin: 32px auto 0;
  padding: 0 16px;
}
.rh-top-comparativas h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--rh-primary);
  margin: 0 0 14px;
}
.rh-top-comparativas ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toplist;
}
.rh-top-comparativas li {
  counter-increment: toplist;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 12px;
  margin-bottom: 8px;
  box-shadow: var(--rh-shadow);
}
.rh-top-comparativas li:before {
  content: counter(toplist);
  font-size: 20px;
  font-weight: 900;
  color: var(--rh-accent);
  min-width: 26px;
}
.rh-top-comparativas a {
  font-weight: 900;
  color: var(--rh-primary);
  text-decoration: none;
}
.rh-top-comparativas a:hover {
  text-decoration: underline;
}
.rh-top-comparativas .cat-tag {
  margin-left: auto;
  font-size: 11px;
  background: var(--rh-bg);
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--rh-text-light);
}
.rh-intent-cards {
  max-width: var(--rh-max-w);
  margin: 32px auto 0;
  padding: 0 16px;
}
.rh-intent-cards h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--rh-primary);
  margin: 0 0 14px;
}
.rh-intent-cards .grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--rh-gap);
}
.rh-intent-cards .i-card {
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  color: var(--rh-text);
  transition: all .25s;
  display: block;
  box-shadow: var(--rh-shadow);
}
.rh-intent-cards .i-card:hover {
  border-color: var(--rh-accent);
  box-shadow: var(--rh-shadow-hover);
  transform: translateY(-2px);
}
.rh-intent-cards .ico {
  font-size: 28px;
  margin-bottom: 8px;
}
.rh-intent-cards h3 {
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--rh-primary);
}
.rh-intent-cards p {
  font-size: 13px;
  color: var(--rh-text-light);
  margin: 0;
  line-height: 1.4;
}
.rh-benefits {
  max-width: var(--rh-max-w);
  margin: 32px auto 0;
  padding: 0 16px;
}
.rh-benefits h2 {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  color: var(--rh-primary);
  margin: 0 0 14px;
}
.rh-benefits .grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.rh-benefits .b-card {
  background: var(--rh-bg);
  border: 1px solid var(--rh-border);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.rh-benefits .b-ico {
  font-size: 28px;
  margin-bottom: 6px;
}
.rh-benefits h3 {
  margin: .25rem 0 .35rem;
  font-size: 16px;
}
.rh-benefits p {
  margin: 0;
  color: var(--rh-text-light);
  font-size: 13px;
}
.rh-callout {
  max-width: var(--rh-max-w);
  margin: 32px auto 0;
  padding: 0 16px;
}
.rh-callout .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--rh-bg);
  border: 1px solid var(--rh-border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--rh-shadow);
}
.rh-callout .steps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rh-callout .chip {
  background: #fff;
  border: 1px solid var(--rh-border);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
}
.rh-callout .cta a {
  display: inline-block;
  background: var(--rh-accent);
  color: #fff;
  border: 1px solid var(--rh-accent);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  text-decoration: none;
  transition: filter .12s ease;
}
.rh-callout .cta a:hover {
  filter: brightness(1.05);
}
.rh-affiliate-notice {
  max-width: var(--rh-max-w);
  margin: 28px auto 0;
  padding: 16px;
  font-size: 12.5px;
  color: var(--rh-text-light);
  text-align: center;
  line-height: 1.5;
  border-top: 1px solid var(--rh-border);
}
.latest-list .wp-block-post-featured-image {
  margin: 0;
}
.latest-list .wp-block-post-featured-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}
.latest-list .wp-block-post-title {
  margin: 6px 0 4px;
}
.latest-list .wp-block-post-title a {
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .rh-topbar .right {
    display: none;
  }
  .rh-search {
    flex-direction: column;
    border-radius: 16px;
  }
  .rh-search button {
    border-radius: 0 0 16px 16px;
  }
  .rh-starthere .grid {
    grid-template-columns: 1fr;
  }
  .rh-intent-cards .grid {
    grid-template-columns: repeat(2,1fr);
  }
  .rh-benefits .grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .rh-intent-cards .grid {
    grid-template-columns: 1fr;
  }
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rh-accent);
  outline-offset: 2px;
}
