:root {
  --rv-navy: #0B3558;
  --rv-blue: #1F6FB2;
  --rv-cta: #0066CC;
  --rv-soft: #EAF4FB;
  --rv-gray-bg: #F5F7FA;
  --rv-text: #5F6B76;
  --rv-white: #FFFFFF;
  --rv-radius: 12px;
  --rv-radius-sm: 8px;
  --rv-shadow: 0 10px 30px rgba(11, 53, 88, 0.08);
  --rv-font-heading: "Poppins", system-ui, sans-serif;
  --rv-font-body: "Inter", system-ui, sans-serif;
  --rv-header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rv-font-body);
  color: var(--rv-text);
  background: var(--rv-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rv-cta);
}

a:hover {
  text-decoration: underline;
}

.rv-skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rv-skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--rv-white);
  z-index: 10000;
}

.u-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.rv-container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.rv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Sin backdrop-filter: en varios navegadores crea bloque de contención y el <nav> position:fixed
     queda anclado al header (menú móvil recortado a un strip). */
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e6ecf2;
}

.rv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--rv-header-h);
}

@media (min-width: 961px) {
  .rv-header__inner {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(200px, 1fr);
    align-items: center;
  }

  .rv-logo {
    justify-self: start;
  }

  .rv-nav {
    justify-self: center;
    grid-column: 2;
  }

  .rv-header__end {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .rv-nav-toggle {
    display: none;
  }
}

.rv-header__end {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--rv-navy);
}

.rv-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.rv-logo__text--visible {
  display: flex !important;
}

.rv-logo__name {
  font-family: var(--rv-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}

.rv-logo__sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--rv-blue);
}

.rv-logo--light .rv-logo__name,
.rv-logo--light .rv-logo__sub {
  color: var(--rv-white);
}

.rv-logo--light .rv-logo__sub {
  color: #b8d4f5;
}

.rv-nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.rv-nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rv-navy);
  margin: 5px 0;
}

.rv-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.rv-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px 20px;
}

.rv-nav__link {
  text-decoration: none;
  color: var(--rv-navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.rv-nav__link:hover {
  color: var(--rv-cta);
}

.rv-nav__link--current {
  color: var(--rv-cta);
  font-weight: 700;
}

.rv-nav__chev {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
}

.rv-nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--rv-white);
  border-radius: var(--rv-radius-sm);
  box-shadow: var(--rv-shadow);
  list-style: none;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.rv-nav__item {
  position: relative;
}

.rv-nav__item--has-sub:hover .rv-nav__sub,
.rv-nav__item--has-sub:focus-within .rv-nav__sub,
.rv-nav__item--has-sub.is-open .rv-nav__sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.rv-nav__sublink {
  display: block;
  padding: 10px 16px;
  color: var(--rv-navy);
  text-decoration: none;
  font-size: 0.9rem;
}

.rv-nav__sublink:hover {
  background: var(--rv-soft);
  text-decoration: none;
}

.rv-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(4, 22, 40, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

body.rv-nav-open .rv-nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 961px) {
  body.rv-nav-open .rv-nav-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--rv-radius-sm);
  font-weight: 600;
  font-family: var(--rv-font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.rv-btn:active {
  transform: translateY(1px);
}

.rv-btn--primary {
  background: var(--rv-cta);
  color: var(--rv-white);
  border-color: var(--rv-cta);
}

.rv-btn--primary:hover {
  background: #0056b3;
  border-color: #0056b3;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.rv-btn--ghost {
  background: transparent;
  color: var(--rv-white);
  border-color: rgba(255, 255, 255, 0.85);
}

.rv-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.rv-btn--outline-dark {
  background: transparent;
  color: var(--rv-white);
  border-color: rgba(255, 255, 255, 0.85);
}

.rv-btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.rv-header__cta {
  white-space: nowrap;
}

.rv-hero {
  position: relative;
  min-height: clamp(480px, 72vh, 720px);
  display: flex;
  align-items: center;
  color: var(--rv-white);
  background: var(--rv-navy);
  overflow: hidden;
}

.rv-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(120deg, rgba(11, 53, 88, 0.92), rgba(11, 53, 88, 0.55)),
    linear-gradient(135deg, #0b3558, #1f6fb2);
}

.rv-hero__bg.has-image {
  background-image: linear-gradient(120deg, rgba(11, 53, 88, 0.88), rgba(11, 53, 88, 0.55)), var(--hero-img);
}

.rv-hero__inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 96px;
}

.rv-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #9ecbff;
  font-weight: 600;
  margin: 0 0 12px;
}

.rv-hero h1,
.rv-h1 {
  font-family: var(--rv-font-heading);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 22ch;
}

.rv-hero__lead {
  max-width: 52ch;
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0 0 28px;
}

.rv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* —— Home hero: copy left, visual right (mockup) —— */
.rv-hero--home {
  display: block;
  min-height: clamp(520px, 78vh, 780px);
  padding: calc(var(--rv-header-h) + 12px) 0 0;
  background: var(--rv-navy);
}

.rv-hero--home .rv-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: stretch;
  min-height: clamp(460px, calc(78vh - var(--rv-header-h)), 720px);
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.rv-hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 3vw, 8px) clamp(40px, 6vw, 88px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rv-hero--home .rv-h1 {
  max-width: 20ch;
}

.rv-hero__visual {
  position: relative;
  min-height: 280px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  margin-right: max(0px, calc((100vw - 1180px) / -2 + 20px));
}

.rv-hero__visual-layer {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: 68% center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.04);
}

.rv-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 53, 88, 0.55) 0%, rgba(11, 53, 88, 0.08) 42%, transparent 65%);
  pointer-events: none;
}

@media (max-width: 960px) {
  .rv-hero--home .rv-hero__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .rv-hero__visual {
    order: -1;
    margin-right: 0;
    border-radius: 0 0 20px 20px;
    min-height: clamp(220px, 38vw, 340px);
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .rv-hero__copy {
    padding: 28px 0 56px;
  }

  .rv-hero--home .rv-h1 {
    max-width: none;
  }
}

/* —— Hero SEO: imagen compuesta full-bleed + copy a la izquierda —— */
.rv-hero--seo {
  position: relative;
  display: block;
  min-height: clamp(440px, 72vh, 760px);
  padding: calc(var(--rv-header-h) + 8px) 0 40px;
  color: var(--rv-white);
  overflow: hidden;
  background: #001a35;
}

.rv-hero__seo-bg {
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0, 0) scale(1.03);
  will-change: transform;
}

.rv-hero__seo-bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.rv-hero__seo-bg .rv-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.rv-hero__seo-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 26, 53, 0.97) 0%,
    rgba(0, 26, 53, 0.92) 34%,
    rgba(0, 26, 53, 0.45) 52%,
    rgba(0, 26, 53, 0.08) 68%,
    transparent 82%
  );
}

.rv-hero__seo-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
}

.rv-hero__seo-aurora {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 18% 40%, rgba(0, 102, 204, 0.35), transparent 62%),
    radial-gradient(ellipse 40% 35% at 70% 20%, rgba(31, 111, 178, 0.22), transparent 55%);
  filter: blur(2px);
  opacity: 0.85;
  animation: rv-aurora-shift 14s ease-in-out infinite alternate;
}

.rv-hero__seo-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(380px, calc(68vh - var(--rv-header-h) - 40px), 640px);
  display: flex;
  align-items: center;
}

.rv-hero__seo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: clamp(380px, calc(68vh - var(--rv-header-h) - 40px), 640px);
  width: 100%;
  max-width: min(520px, 46vw);
}

.rv-breadcrumb--hero {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  margin: 0 0 12px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.rv-breadcrumb--hero [aria-current="page"] {
  font-weight: 600;
}

.rv-hero__seo-copy {
  max-width: min(520px, 46vw);
  padding: clamp(8px, 1.5vw, 16px) 0;
}

.rv-hero__seo-inner .rv-hero__seo-column .rv-hero__seo-copy {
  max-width: none;
  width: 100%;
  padding-top: 0;
}

.rv-hero--seo .rv-h1 {
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.rv-hero__kickerline {
  margin: 0 0 16px;
  max-width: 36ch;
  font-size: clamp(0.95rem, 1.45vw, 1.08rem);
  line-height: 1.5;
  opacity: 0.94;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.rv-hero__chips {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rv-hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #eaf4ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rv-hero__chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
}

.rv-hero__micro {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.rv-hero__micro a {
  color: #cfe6ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rv-hero__micro a:hover {
  color: #fff;
}

.rv-hero--seo .rv-hero__actions {
  margin-top: 4px;
}

.rv-hero__seo-copy--enter {
  animation: rv-hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rv-hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rv-aurora-shift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2%, -1.5%, 0) scale(1.04);
  }
}

@keyframes rv-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 102, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
  }
}

.rv-btn--pulse {
  animation: rv-pulse-ring 2.8s ease-out infinite;
}

@media (max-width: 960px) {
  .rv-hero--seo {
    min-height: 0;
    padding-bottom: 32px;
  }

  .rv-hero__seo-bg .rv-hero__image {
    object-position: 55% center;
  }

  .rv-hero__seo-inner {
    min-height: 0;
    align-items: flex-end;
    padding-top: min(42vh, 340px);
  }

  .rv-hero__seo-column {
    min-height: 0;
    justify-content: flex-end;
    max-width: none;
    width: 100%;
  }

  .rv-breadcrumb--hero {
    margin-bottom: 6px;
  }

  .rv-scroll-inline {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-right: -12px;
    padding-right: 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .rv-scroll-inline .rv-hero__chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .rv-scroll-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 12px;
    margin: 0 -8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .rv-scroll-cards .rv-glance,
  .rv-scroll-cards.rv-grid--seo4 > .rv-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
  }

  .rv-grid--seo4.rv-scroll-cards {
    display: flex;
  }

  .rv-hero__seo-copy {
    max-width: none;
    width: 100%;
    padding: 22px 16px 10px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, rgba(0, 26, 53, 0.05) 0%, rgba(0, 26, 53, 0.9) 22%, rgba(0, 26, 53, 0.96) 100%);
  }

  .rv-hero--seo .rv-h1 {
    max-width: none;
  }

  .rv-hero__chips {
    margin-bottom: 18px;
  }

  .rv-hero__chips.rv-scroll-inline {
    flex-wrap: nowrap;
  }
}

.rv-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(11, 53, 88, 0.1);
  border-bottom-color: #dde7f0;
}

.rv-breadcrumb {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0 0 16px;
}

.rv-breadcrumb a {
  color: inherit;
  text-decoration: underline;
}

.rv-intro-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: clamp(22px, 3vw, 36px);
  padding: 14px 18px;
  border-radius: var(--rv-radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 53, 88, 0.1);
  box-shadow: 0 8px 28px rgba(11, 53, 88, 0.06);
}

.rv-intro-meta__dates {
  margin: 0;
  font-size: 0.86rem;
  color: var(--rv-text);
  line-height: 1.45;
}

.rv-intro-meta__label {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rv-cta);
  background: rgba(0, 102, 204, 0.1);
  vertical-align: middle;
}

.rv-intro-meta__dates time {
  font-weight: 600;
  color: var(--rv-navy);
}

.rv-intro-meta__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.rv-intro-meta__nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--rv-cta);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 204, 0.25);
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.rv-intro-meta__nav a:hover {
  background: #eaf4fb;
  border-color: rgba(0, 102, 204, 0.45);
  text-decoration: none;
}

.rv-deflist {
  margin: 1.1rem 0 1.35rem;
  padding: 0;
  border: none;
  background: transparent;
}

.rv-deflist--inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

@media (max-width: 640px) {
  .rv-intro-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .rv-intro-meta__nav {
    justify-content: flex-start;
  }

  .rv-deflist--inline {
    grid-template-columns: 1fr;
  }
}

.rv-deflist__pair {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--rv-radius-sm);
  background: var(--rv-soft);
  border: 1px solid rgba(11, 53, 88, 0.08);
}

.rv-deflist__pair dt {
  margin: 0 0 6px;
  font-family: var(--rv-font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rv-navy);
}

.rv-deflist__pair dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--rv-text);
}

.rv-intro-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  margin-top: clamp(32px, 5vw, 48px);
}

@media (max-width: 960px) {
  .rv-intro-trust {
    grid-template-columns: 1fr;
  }
}

.rv-trust-card {
  padding: 22px 20px 20px;
  border-radius: var(--rv-radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 53, 88, 0.09);
  box-shadow: 0 14px 36px rgba(11, 53, 88, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

@media (hover: hover) {
  .rv-trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(11, 53, 88, 0.12);
  }
}

.rv-trust-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--rv-cta);
}

.rv-trust-card__title {
  margin: 0 0 12px;
  font-family: var(--rv-font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--rv-navy);
  line-height: 1.25;
}

.rv-trust-card__body {
  flex: 1;
}

.rv-trust-card__body p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--rv-text);
}

.rv-trust-card__body p:last-child {
  margin-bottom: 0;
}

.rv-trust-card__lede {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--rv-text);
  line-height: 1.45;
}

.rv-trust-kv {
  margin: 0;
  flex: 1;
}

.rv-trust-kv__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 53, 88, 0.08);
}

.rv-trust-kv__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rv-trust-kv__row dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rv-navy);
  opacity: 0.85;
}

.rv-trust-kv__row dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--rv-text);
  word-break: break-word;
}

@media (max-width: 400px) {
  .rv-trust-kv__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .rv-trust-kv__row dt {
    padding-bottom: 2px;
  }
}

.rv-trust-sources {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rv-trust-sources a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--rv-navy);
  background: rgba(234, 244, 251, 0.65);
  border: 1px solid rgba(11, 53, 88, 0.08);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.rv-trust-sources a:hover {
  background: #eaf4fb;
  border-color: rgba(0, 102, 204, 0.25);
  text-decoration: none;
}

.rv-trust-sources cite {
  font-style: normal;
  color: var(--rv-cta);
  margin-right: 4px;
}

.rv-home-faq {
  max-width: 760px;
  margin: 0 auto;
}

.rv-home-faq__item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 53, 88, 0.12);
}

.rv-home-faq__item:last-child {
  border-bottom: 0;
}

.rv-home-faq__q {
  margin: 0 0 10px;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-family: var(--rv-font-heading);
  color: var(--rv-navy);
  line-height: 1.35;
}

.rv-home-faq__a {
  margin: 0;
  color: var(--rv-text);
  line-height: 1.6;
}

.rv-media__caption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--rv-text);
  line-height: 1.45;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--rv-gray-bg);
}

.section--blue {
  background: var(--rv-soft);
}

.rv-prose {
  max-width: 72ch;
  margin-inline: auto;
}

.rv-prose > *:first-child {
  margin-top: 0;
}

.rv-prose p {
  margin: 0 0 1rem;
}

.rv-prose h2 {
  margin-bottom: 0.65rem;
}

.rv-prose a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rv-prose a:hover {
  text-decoration-thickness: 2px;
}

.rv-prose .rv-stats--home {
  margin-top: 2rem;
}

.rv-grid--seo4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rv-card__titlelink {
  color: inherit;
  text-decoration: none;
}

.rv-card__titlelink:hover {
  color: var(--rv-cta);
  text-decoration: underline;
}

.rv-list-check {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.rv-list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  line-height: 1.55;
}

.rv-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--rv-cta);
  font-weight: 800;
  font-size: 0.85rem;
}

.rv-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.rv-eyebrow {
  color: var(--rv-cta);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.rv-h2 {
  font-family: var(--rv-font-heading);
  color: var(--rv-navy);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 12px;
}

.rv-h3 {
  font-family: var(--rv-font-heading);
  color: var(--rv-navy);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.rv-grid {
  display: grid;
  gap: 22px;
}

.rv-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1100px) {
  .rv-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rv-card {
  background: var(--rv-white);
  border-radius: var(--rv-radius);
  padding: 24px 22px;
  box-shadow: var(--rv-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.rv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 53, 88, 0.14);
}

.rv-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.rv-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--rv-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rv-cta);
  font-weight: 700;
}

.rv-card__link {
  margin-top: auto;
  font-weight: 600;
  text-decoration: none;
}

.rv-card__link::after {
  content: " \2192";
}

.rv-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rv-split--tilt {
  perspective: 1200px;
  perspective-origin: 50% 40%;
}

@media (max-width: 900px) {
  .rv-split {
    grid-template-columns: 1fr;
  }
}

.rv-split__half {
  padding: 64px 48px;
  color: var(--rv-white);
  position: relative;
  overflow: hidden;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .rv-split--tilt .rv-split__half {
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out, box-shadow 0.45s ease;
    will-change: transform;
  }

  .rv-split--tilt .rv-split__half:hover {
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.28);
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-split--tilt .rv-split__half {
    transition: none;
  }
}

.rv-split__half a {
  color: #fff8e9;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.rv-split__half a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.rv-split__half--blue a {
  color: #fffef5;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.rv-split__half--blue a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 1);
}

.rv-split__half--navy {
  background: linear-gradient(165deg, #0e3d63 0%, #0B3558 45%, #071f35 100%);
}

.rv-split__half--blue {
  background: linear-gradient(165deg, #2a87d1 0%, #1F6FB2 50%, #155a97 100%);
}

.rv-split__half .rv-checklist {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.92);
}

.rv-split__half .rv-checklist li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--rv-navy);
  font-size: 0.55rem;
  font-weight: 800;
  border: none;
  box-shadow: none;
  top: 5px;
  line-height: 1;
}

.rv-split__deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  opacity: 0.5;
}

.rv-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.rv-stats--home {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 22px);
  align-items: start;
}

@media (min-width: 520px) {
  .rv-stats--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rv-stat__value {
  font-family: var(--rv-font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--rv-navy);
  line-height: 1.15;
  display: block;
}

.rv-stat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.rv-stat__body {
  flex: 1 1 0;
  min-width: 0;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .rv-stats--home .rv-stat {
    padding: 12px 10px;
    margin: -12px -10px;
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
  }

  .rv-stats--home .rv-stat:hover {
    transform: perspective(820px) translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(11, 53, 88, 0.14);
    background: rgba(255, 255, 255, 0.55);
  }
}

.rv-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eaf4fb, #ffffff);
  border: 1px solid #cfe0f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rv-cta);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(11, 53, 88, 0.06);
}

.rv-stat__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.rv-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--rv-text);
  line-height: 1.35;
}

.rv-stat__value--text {
  font-family: var(--rv-font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--rv-navy);
  line-height: 1.15;
}

.rv-stat__value--long {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.25;
  overflow-wrap: break-word;
  hyphens: auto;
}

.rv-counter {
  font-variant-numeric: tabular-nums;
}

.rv-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .rv-two-col {
    grid-template-columns: 1fr;
  }
}

.rv-media {
  border-radius: var(--rv-radius);
  overflow: hidden;
  box-shadow: var(--rv-shadow);
  min-height: 320px;
  background: linear-gradient(145deg, #dfe9f3, #c9d8e8);
}

.rv-media--experience {
  min-height: clamp(300px, 42vw, 420px);
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(145deg, rgba(11, 53, 88, 0.12), rgba(31, 111, 178, 0.08)), var(--exp-img, linear-gradient(145deg, #dfe9f3, #c9d8e8));
}

.rv-media--experience-photo {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(145deg, #dfe9f3, #c9d8e8);
  aspect-ratio: 16 / 9;
  min-height: clamp(260px, 34vw, 400px);
}

.rv-media--experience-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.rv-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.rv-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.rv-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--rv-cta);
  box-shadow: inset 0 0 0 3px #fff;
  background: var(--rv-cta);
}

.rv-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* Testimonios: slider (home) */
.rv-ts {
  position: relative;
  margin-top: 8px;
}

.rv-ts__viewport {
  overflow: hidden;
  margin: 0 -6px;
  padding: 8px 6px 4px;
}

.rv-ts__track {
  display: flex;
  gap: 20px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.rv-ts__slide {
  flex: 0 0 100%;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 720px) {
  .rv-ts__slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .rv-ts__slide {
    flex: 0 0 33.333%;
  }
}

.rv-ts__card {
  height: 100%;
}

.rv-ts__quote {
  font-style: italic;
  color: var(--rv-text);
  margin: 0 0 16px;
  line-height: 1.55;
}

.rv-ts__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.rv-ts__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rv-soft), #dbe8f5);
  border: 2px solid #e2ecf6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rv-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--rv-navy);
  flex-shrink: 0;
}

.rv-ts__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.rv-ts__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #c5d2e0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rv-ts__dot[aria-current="true"] {
  background: var(--rv-cta);
  transform: scale(1.15);
}

.rv-ts__dot:hover {
  background: var(--rv-blue);
}

.rv-stars {
  color: #f5b301;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.rv-cta-band {
  background: transparent;
  padding: 0 0 96px;
  color: var(--rv-white);
}

.rv-cta-box {
  background: linear-gradient(125deg, #082a45 0%, #0b3558 38%, #174f86 72%, #1f6fb2 100%);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px);
  box-shadow: 0 28px 60px rgba(11, 53, 88, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rv-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.rv-cta-box .rv-form .rv-btn[type="submit"] {
  background: #071f35;
  border-color: #071f35;
  color: var(--rv-white);
}

.rv-cta-box .rv-form .rv-btn[type="submit"]:hover {
  background: #051a2d;
  border-color: #051a2d;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

@media (max-width: 900px) {
  .rv-cta-grid {
    grid-template-columns: 1fr;
  }
}

.rv-form {
  background: var(--rv-white);
  color: var(--rv-text);
  padding: 28px;
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow);
}

.rv-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 700px) {
  .rv-form__row {
    grid-template-columns: 1fr;
  }
}

.rv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.rv-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rv-navy);
}

.rv-field input,
.rv-field select,
.rv-field textarea {
  border: 1px solid #d5deea;
  border-radius: var(--rv-radius-sm);
  padding: 12px 12px;
  font: inherit;
}

.rv-field textarea {
  min-height: 120px;
  resize: vertical;
}

.rv-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}

.rv-footer__brand {
  display: inline-block;
  text-decoration: none;
}

.rv-footer__brand .rv-logo__img--footer {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(240px, 100%);
  object-fit: contain;
}

/* Logo footer: sin invert hasta tener PNG/WebP en blanco (el filtro dejaba la marca invisible). */
.rv-footer__brand .rv-logo__img--footer-white {
  filter: none;
}

@media (max-width: 600px) {
  .rv-footer__brand .rv-logo__img--footer {
    height: 44px;
  }
}

.rv-footer {
  background: #071f35;
  color: #c9d6e2;
  padding-top: 64px;
}

.rv-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.9fr) 1.1fr;
  gap: 32px;
  padding-bottom: 48px;
}

@media (max-width: 1000px) {
  .rv-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .rv-footer__grid {
    grid-template-columns: 1fr;
  }
}

.rv-social__link svg {
  display: block;
}

.rv-footer__h {
  font-family: var(--rv-font-heading);
  color: var(--rv-white);
  font-size: 1rem;
  margin: 0 0 14px;
}

.rv-footer__links,
.rv-footer__nap {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rv-footer__links a,
.rv-footer__nap a {
  color: #dce6f0;
  text-decoration: none;
}

.rv-footer__links a:hover,
.rv-footer__nap a:hover {
  text-decoration: underline;
}

.rv-footer__links li,
.rv-footer__nap li {
  margin-bottom: 8px;
}

.rv-footer__text {
  margin: 12px 0 16px;
  font-size: 0.95rem;
}

.rv-social {
  display: flex;
  gap: 10px;
}

.rv-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rv-white);
  text-decoration: none;
  font-size: 0.75rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rv-social__link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
}

.rv-social__link svg {
  display: block;
}

.rv-map iframe {
  width: 100%;
  border-radius: var(--rv-radius-sm);
}

.rv-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 28px;
  font-size: 0.85rem;
}

.rv-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.rv-footer__legal {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.rv-footer__legal a {
  color: #dce6f0;
  text-decoration: none;
}

.rv-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.rv-related a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: var(--rv-navy);
}

.rv-related a span {
  color: var(--rv-cta);
}

.rv-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rv-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  body.rv-nav-open {
    overflow: hidden;
  }

  body.rv-nav-open .rv-header {
    z-index: 200;
  }

  .rv-nav-toggle {
    display: block;
  }

  .rv-nav {
    position: fixed;
    top: var(--rv-header-h);
    left: 0;
    height: calc(100vh - var(--rv-header-h));
    max-height: calc(100dvh - var(--rv-header-h));
    bottom: auto;
    right: auto;
    width: min(88vw, 320px);
    max-width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 55%, #eef5fb 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 22px 18px 32px;
    transform: translateX(-104%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 14px 0 42px rgba(4, 22, 40, 0.18);
    z-index: 210;
    border-right: 1px solid #dbe8f5;
  }

  .rv-nav.is-open {
    transform: translateX(0);
  }

  .rv-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .rv-nav__link {
    padding: 12px 6px;
    border-radius: 10px;
  }

  .rv-nav__link:hover {
    background: rgba(0, 102, 204, 0.06);
  }

  .rv-nav__sub {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-left: 2px solid var(--rv-soft);
    display: none;
    margin-top: 6px;
  }

  .rv-nav__item--has-sub.is-open .rv-nav__sub {
    display: block;
  }

  .rv-header__cta {
    white-space: nowrap;
    padding-inline: 16px;
    font-size: 0.88rem;
  }
}

.rv-legal h2 {
  font-family: var(--rv-font-heading);
  color: var(--rv-navy);
  margin-top: 32px;
}

.rv-legal {
  padding: 40px 0 80px;
}

.rv-alert {
  padding: 12px 16px;
  border-radius: var(--rv-radius-sm);
  margin-bottom: 16px;
}

.rv-alert--ok {
  background: #e6f6ea;
  color: #14532d;
}

.rv-alert--err {
  background: #fde8e8;
  color: #7f1d1d;
}

.rv-dark-cta {
  background: var(--rv-navy);
  color: var(--rv-white);
  padding: 72px 0;
}

.rv-dark-cta .rv-form {
  color: var(--rv-text);
}

/* —— Home: intro maquetado, editorial, beneficios, contacto full-bleed —— */
.section--intro {
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #f7fafd 0%, #fff 40%, #f3f7fb 100%);
}

.rv-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .rv-intro-split {
    grid-template-columns: 1fr;
  }
}

.rv-intro-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rv-glance {
  padding: 18px 18px 16px;
  border-radius: var(--rv-radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 53, 88, 0.08);
  box-shadow: 0 14px 36px rgba(11, 53, 88, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.rv-glance:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(11, 53, 88, 0.12);
}

.rv-glance--accent {
  border-color: rgba(0, 102, 204, 0.22);
  background: linear-gradient(145deg, #ffffff, #eaf4fb);
}

.rv-glance__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--rv-cta);
  margin-bottom: 8px;
}

.rv-glance__title {
  margin: 0 0 8px;
  font-family: var(--rv-font-heading);
  font-size: 1.05rem;
  color: var(--rv-navy);
  font-weight: 700;
}

.rv-glance__txt {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--rv-text);
}

.rv-intro-body {
  padding: 8px 4px 0;
}

.rv-editorial__head {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.rv-editorial__lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--rv-text);
  line-height: 1.6;
}

.rv-editorial__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

@media (max-width: 900px) {
  .rv-editorial__grid {
    grid-template-columns: 1fr;
  }
}

.rv-mini-points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rv-mini-points li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: var(--rv-radius-sm);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 53, 88, 0.08);
  font-weight: 600;
  color: var(--rv-navy);
}

.rv-mini-points li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rv-cta);
  font-weight: 800;
}

.rv-services-foot {
  margin-top: 32px;
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}

.rv-catalog-head {
  margin-top: 56px;
}

.rv-services-scroll {
  margin: 0;
  padding: 0;
}

.rv-services-scroll__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1100px) and (min-width: 961px) {
  .rv-services-scroll__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .rv-services-scroll {
    margin: 0 -10px;
    padding: 0 10px 4px;
  }

  .rv-services-scroll__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 14px;
    margin: 0 -6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .rv-card--scroll {
    flex: 0 0 min(78vw, 300px);
    max-width: min(78vw, 300px);
    scroll-snap-align: start;
    height: auto;
  }
}

.section.rv-benefit-parallax {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #041a2e;
  color: #eaf2fb;
}

.rv-benefit-parallax__bg {
  position: absolute;
  inset: -14%;
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1.05);
  will-change: transform;
  background:
    radial-gradient(ellipse 90% 60% at 10% 18%, rgba(0, 153, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 75% 55% at 92% 82%, rgba(31, 111, 178, 0.5), transparent 58%),
    linear-gradient(145deg, #031424 0%, #0b3558 38%, #123a5c 68%, #174a7c 100%);
}

.rv-benefit-parallax__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 3px 3px;
}

.rv-benefit-parallax .rv-container {
  position: relative;
  z-index: 2;
}

.rv-benefit-board--onbg .rv-h2 {
  color: #fff;
}

.rv-benefit-board--onbg .rv-benefit-board__intro p {
  color: rgba(234, 242, 251, 0.92);
}

.rv-benefit-board--onbg .rv-benefit-board__text,
.rv-benefit-board--onbg .rv-benefit-board__text p {
  color: rgba(234, 242, 251, 0.95);
}

.rv-benefit-board--onbg .rv-benefit-board__text a {
  color: #f0f9ff;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.rv-benefit-board--onbg .rv-benefit-board__text a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.rv-benefit-board__intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.rv-benefit-board__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

@media (max-width: 900px) {
  .rv-benefit-board__grid {
    grid-template-columns: 1fr;
  }
}

.rv-list-check--tiles li {
  padding: 14px 16px 14px 2.1rem;
  margin-bottom: 12px;
  border-radius: var(--rv-radius-sm);
  background: var(--rv-white);
  border: 1px solid #e6ecf2;
  box-shadow: 0 8px 22px rgba(11, 53, 88, 0.05);
}

.rv-list-check--tiles li::before {
  left: 14px;
  top: 1.05rem;
}

.rv-benefit-parallax .rv-list-check--tiles li {
  color: #0b1724;
  font-weight: 600;
  border-color: rgba(11, 53, 88, 0.14);
}

.rv-benefit-parallax .rv-list-check--tiles li::before {
  color: var(--rv-cta);
}

.rv-benefit-tiles-3d {
  perspective: 960px;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .rv-benefit-tiles-3d li {
    transform-style: preserve-3d;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease;
  }

  .rv-benefit-tiles-3d li:hover {
    transform: translateY(-10px) rotateX(4deg) translateZ(14px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
}

.rv-contact-strip {
  position: relative;
  padding: 72px 0 96px;
  color: var(--rv-white);
  overflow: hidden;
}

.rv-contact-strip__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #041a2e 0%, #0b3558 42%, #174a7c 72%, #1f6fb2 100%);
}

.rv-contact-strip__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  animation: rv-float-glow 12s ease-in-out infinite alternate;
}

.rv-contact-strip__glow--a {
  top: -220px;
  left: -120px;
  background: #2a8fe8;
}

.rv-contact-strip__glow--b {
  bottom: -260px;
  right: -140px;
  background: #00c6ff;
  animation-delay: -3s;
}

.rv-contact-strip .rv-container {
  position: relative;
  z-index: 2;
}

.rv-contact-strip__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.rv-eyebrow--light {
  color: #b9dcff;
}

.rv-contact-strip__title {
  font-family: var(--rv-font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  margin: 0 0 16px;
  line-height: 1.15;
}

.rv-contact-strip__copy {
  text-align: left;
  margin: 0 auto 22px;
  max-width: 68ch;
  opacity: 0.95;
  font-size: 1.02rem;
  line-height: 1.65;
}

.rv-contact-strip__copy p {
  margin: 0 0 12px;
}

.rv-contact-strip__copy a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rv-contact-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

.rv-contact-strip__panel {
  max-width: min(960px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 3vw, 40px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.rv-contact-strip__panel .rv-form {
  box-shadow: none;
  border: 1px solid #e3edf7;
}

.rv-contact-strip__panel .rv-form .rv-btn[type="submit"] {
  background: #071f35;
  border-color: #071f35;
  color: var(--rv-white);
}

.rv-contact-strip__panel .rv-form .rv-btn[type="submit"]:hover {
  background: #051a2d;
  border-color: #051a2d;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

@keyframes rv-float-glow {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(18px, 12px, 0);
  }
}

@media (max-width: 700px) {
  .rv-contact-strip__copy {
    font-size: 0.98rem;
  }

  .rv-contact-strip__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rv-contact-strip__actions .rv-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-hero__seo-aurora,
  .rv-contact-strip__glow,
  .rv-btn--pulse {
    animation: none !important;
  }

  .rv-hero__seo-copy--enter {
    animation: none !important;
  }

  .rv-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* —— Quiénes somos —— */
.rv-hero--about .rv-hero__bg--parallax {
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.04);
}

.rv-hero--about .rv-h1 {
  max-width: 38ch;
}

.rv-hero--about .rv-h1__accent {
  color: #b8e0ff;
  font-weight: 700;
}

.rv-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

@media (max-width: 960px) {
  .rv-about-intro {
    grid-template-columns: 1fr;
  }
}

.rv-prose--align-start {
  margin-inline: 0;
  max-width: none;
}

.rv-stats--about-intro {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 22px);
}

.rv-stats--about-intro--stack .rv-stat {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.rv-stats--about-intro--stack .rv-stat__body {
  flex: 0 1 auto;
}

.rv-stats--about-intro--stack .rv-stat__label {
  margin-top: 2px;
}

@media (max-width: 640px) {
  .rv-stats--about-intro--stack {
    gap: 4px 6px;
  }

  .rv-stats--about-intro--stack .rv-stat__icon {
    width: 38px;
    height: 38px;
  }

  .rv-stats--about-intro--stack .rv-stat__icon svg {
    width: 19px;
    height: 19px;
  }

  .rv-stats--about-intro--stack .rv-stat__value {
    font-size: clamp(0.78rem, 3.4vw, 1.02rem);
  }

  .rv-stats--about-intro--stack .rv-stat__value--text {
    font-size: clamp(0.78rem, 3.4vw, 1.02rem);
  }

  .rv-stats--about-intro--stack .rv-stat__label {
    font-size: clamp(0.52rem, 2.5vw, 0.72rem);
    line-height: 1.25;
  }
}

.rv-about-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rv-about-value-card {
  background: var(--rv-white);
  border-radius: var(--rv-radius);
  padding: 20px 18px 18px;
  border: 1px solid rgba(11, 53, 88, 0.08);
  box-shadow: 0 14px 36px rgba(11, 53, 88, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.rv-about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(11, 53, 88, 0.12);
}

.rv-about-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--rv-cta);
  color: var(--rv-cta);
  margin-bottom: 10px;
}

.rv-about-value-card__icon svg {
  width: 22px;
  height: 22px;
}

.rv-about-value-card .rv-h3 {
  margin-bottom: 8px;
}

.rv-about-value-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--rv-text);
}

.rv-grid--about-team {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .rv-grid--about-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .rv-grid--about-team {
    grid-template-columns: 1fr;
  }
}

/* —— Quiénes somos: tarjetas equipo (imagen + pin de icono) —— */
.rv-card--about-team {
  padding: 0;
  overflow: hidden;
}

.rv-card--about-team .rv-card__media {
  position: relative;
  aspect-ratio: 8 / 5;
  background: #e8eef5;
}

.rv-card--about-team .rv-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-card--about-team .rv-card__icon-badge {
  position: absolute;
  left: 16px;
  bottom: -22px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rv-white);
  box-shadow: 0 10px 28px rgba(11, 53, 88, 0.18);
  border: 2px solid var(--rv-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rv-cta);
}

.rv-card--about-team .rv-card__icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.rv-card--about-team .rv-card__body {
  padding: 32px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}

.rv-card--about-team .rv-card__body .rv-h3 {
  margin: 0;
}

.rv-card--about-team .rv-card__body > p {
  margin: 0;
  color: var(--rv-text);
  line-height: 1.55;
  font-size: 0.92rem;
}

.rv-card--about-team .rv-card__link {
  margin-top: auto;
}

.rv-card--about-team .rv-card__link-stack {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Área contable: en viewport estrecha (1 col) fila horizontal compacta */
@media (max-width: 560px) {
  .rv-card--about-team--cont-mobile {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px 12px;
  }

  .rv-card--about-team--cont-mobile .rv-card__media {
    flex: 0 0 clamp(88px, 28vw, 132px);
    width: clamp(88px, 28vw, 132px);
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    align-self: center;
  }

  .rv-card--about-team--cont-mobile .rv-card__icon-badge {
    left: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
  }

  .rv-card--about-team--cont-mobile .rv-card__icon-badge svg {
    width: 15px;
    height: 15px;
  }

  .rv-card--about-team--cont-mobile .rv-card__body {
    flex: 1 1 auto;
    padding: 6px 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px 8px;
    min-width: 0;
  }

  .rv-card--about-team--cont-mobile .rv-card__body .rv-h3 {
    margin: 0;
    font-size: clamp(0.62rem, 2.9vw, 0.78rem);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .rv-card--about-team--cont-mobile .rv-card__body > p {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: clamp(0.55rem, 2.5vw, 0.68rem);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rv-card--about-team--cont-mobile .rv-card__link {
    margin-top: 0;
    flex-shrink: 0;
    font-size: clamp(0.55rem, 2.5vw, 0.68rem);
    white-space: nowrap;
  }
}

.rv-section-foot {
  margin-top: 28px;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.rv-about-services-band {
  background: #eaf4fb;
}

.rv-about-service-links {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.rv-about-service-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--rv-radius-sm);
  background: var(--rv-white);
  border: 1px solid rgba(11, 53, 88, 0.1);
  font-weight: 600;
  color: var(--rv-navy);
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(11, 53, 88, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rv-about-service-links a::after {
  content: "\2192";
  color: var(--rv-cta);
  font-weight: 700;
}

.rv-about-service-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 204, 0.35);
  box-shadow: 0 12px 28px rgba(11, 53, 88, 0.1);
  text-decoration: none;
}

.rv-about-services-band__copy {
  max-width: 72ch;
  margin-inline: auto;
  text-align: center;
}

.rv-about-services-band__cta {
  text-align: center;
  margin-top: 8px;
}

.rv-about-commit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .rv-about-commit {
    grid-template-columns: 1fr;
  }

  .rv-about-commit__visual {
    order: -1;
  }
}

.rv-about-pills {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rv-about-pills li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.15);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--rv-navy);
}

.rv-grid--about-audience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .rv-grid--about-audience {
    grid-template-columns: 1fr;
  }
}

.rv-card .rv-card__link + .rv-card__link {
  margin-top: 4px;
}

.rv-about-evolution {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .rv-about-evolution {
    grid-template-columns: 1fr;
  }
}

.rv-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  border-left: 2px solid #cfe0f3;
}

.rv-timeline li {
  position: relative;
  padding: 0 0 28px 22px;
  margin: 0;
  color: var(--rv-navy);
}

.rv-timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rv-cta);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px #eaf4fb;
}

.rv-timeline li span {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--rv-text);
  line-height: 1.5;
}

.rv-list-check--about-why {
  max-width: 720px;
  margin-inline: auto;
}

.rv-about-stats-bar {
  background: var(--rv-gray-bg);
  padding: 48px 0;
  border-top: 1px solid #e6ecf2;
  border-bottom: 1px solid #e6ecf2;
}

.rv-about-stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}

@media (max-width: 900px) {
  .rv-about-stats-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .rv-about-stats-bar__inner {
    grid-template-columns: 1fr;
  }
}

.rv-about-stats-bar__item {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.rv-about-stats-bar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eaf4fb, #ffffff);
  border: 1px solid #cfe0f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rv-cta);
  box-shadow: 0 6px 16px rgba(11, 53, 88, 0.06);
}

.rv-about-stats-bar__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.rv-about-stats-bar__txt {
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--rv-text);
}

.rv-about-stats-bar__txt strong {
  display: block;
  font-family: var(--rv-font-heading);
  color: var(--rv-navy);
  font-size: 1.05rem;
}

/* --- Landing empresas Sevilla --- */
.rv-reveal.rv-reveal--d1 {
  transition-delay: 0.06s;
}

.rv-reveal.rv-reveal--d2 {
  transition-delay: 0.12s;
}

.rv-reveal.rv-reveal--d3 {
  transition-delay: 0.18s;
}

.rv-reveal.rv-reveal--d4 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .rv-reveal,
  .rv-reveal.rv-reveal--d1,
  .rv-reveal.rv-reveal--d2,
  .rv-reveal.rv-reveal--d3,
  .rv-reveal.rv-reveal--d4 {
    transition-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }

  .rv-emp-hero__photo-img {
    transform: none !important;
  }

  .rv-emp-value-card:hover,
  .rv-card--service-link:hover {
    transform: none !important;
  }

  .rv-emp-orbit__diagram.is-active .rv-emp-orbit__ring,
  .rv-emp-orbit__diagram.is-active .rv-emp-orbit__spokes .rv-emp-orbit__spoke {
    animation: none !important;
  }

  .rv-emp-orbit__diagram.is-active .rv-emp-orbit__spokes .rv-emp-orbit__spoke {
    stroke-dashoffset: 0 !important;
  }

  .rv-emp-orbit__hub {
    animation: none !important;
  }

  .rv-emp-orbit__panel {
    animation: none !important;
  }

  .rv-emp-orbit__node:hover .rv-emp-orbit__node-disc,
  .rv-emp-orbit__node:focus-visible .rv-emp-orbit__node-disc {
    transform: none !important;
  }

  .rv-emp-benefits__img-frame {
    animation: none !important;
  }

  .rv-emp-benefits__img {
    animation: none !important;
  }

  .rv-emp-pillar:hover {
    transform: none !important;
  }
}

.rv-emp-hero--fullphoto {
  position: relative;
  isolation: isolate;
  color: #fff;
  min-height: clamp(520px, 72vh, 780px);
  padding: clamp(88px, 12vh, 120px) 0 clamp(100px, 14vh, 140px);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.rv-emp-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.rv-emp-hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.rv-emp-hero--fullphoto .rv-emp-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  /* Misma sensación que el hero home: ~mitad de viewport para el copy (sin tope 480px). */
  grid-template-columns: minmax(0, min(680px, 50vw)) minmax(0, 1fr);
  column-gap: clamp(16px, 3.5vw, 44px);
  align-items: center;
  justify-items: start;
  min-height: clamp(420px, 58vh, 640px);
  width: 100%;
  pointer-events: auto;
  text-align: left;
}

.rv-emp-hero__text {
  grid-column: 1;
  width: 100%;
  min-width: 0;
  margin-inline: 0;
  padding: clamp(6px, 1vw, 12px) 0;
  padding-inline-start: clamp(16px, 4vw, 56px);
  padding-inline-end: clamp(20px, 3.5vw, 44px);
}

.rv-emp-hero--fullphoto .rv-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px 6px;
}

.rv-emp-hero--fullphoto .rv-hero__actions {
  justify-content: flex-start;
}

.rv-emp-hero--fullphoto .rv-breadcrumb a {
  color: #fff;
}

.rv-emp-hero--fullphoto .rv-kicker {
  display: block;
  color: #e6f1ff;
}

.rv-emp-hero--fullphoto .rv-breadcrumb {
  margin: 0 0 14px;
  font-size: 0.88rem;
  opacity: 0.95;
}

.rv-emp-hero--fullphoto .rv-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rv-emp-hero--fullphoto .rv-hero__actions {
  margin-top: 8px;
}

.rv-emp-hero--fullphoto .rv-emp-hero__h1,
.rv-emp-hero--fullphoto .rv-h1 {
  color: #fff;
  max-width: none;
  text-wrap: balance;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.35);
}

.rv-emp-hero--fullphoto .rv-emp-hero__lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  opacity: 0.98;
  max-width: none;
  margin: 0 0 26px;
  text-shadow:
    0 2px 22px rgba(0, 0, 0, 0.42),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

.rv-emp-hero--fullphoto .rv-emp-hero__answer {
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.65;
  opacity: 0.98;
  max-width: none;
  margin: 0 0 18px;
  text-shadow:
    0 2px 22px rgba(0, 0, 0, 0.42),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

.rv-emp-hero--fullphoto .rv-emp-hero__lead--secondary {
  margin-top: -14px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.rv-emp-hero__meta {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  opacity: 0.88;
  color: #e6eef8;
}

.rv-emp-hero--fullphoto .rv-emp-hero__meta {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.rv-emp-hero__meta time {
  font-weight: 600;
}

.rv-emp-hero--fullphoto .rv-breadcrumb,
.rv-emp-hero--fullphoto .rv-kicker {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .rv-emp-hero--fullphoto {
    min-height: unset;
    padding: calc(var(--rv-header-h, 64px) + 16px) 0 48px;
    flex-direction: column;
  }

  .rv-emp-hero--fullphoto .rv-emp-hero__inner {
    min-height: unset;
    align-items: flex-end;
    padding-bottom: 8px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .rv-emp-hero__text {
    grid-column: 1;
    width: 100%;
    max-width: none;
    padding-top: 20px;
    padding-inline-start: 0;
    padding-inline-end: 0;
  }

  .rv-emp-hero__photo-img {
    min-height: min(48vw, 320px);
    object-position: 50% 24%;
  }
}

.rv-btn--arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.rv-btn--arrow:hover {
  text-decoration: none;
}

.rv-btn--arrow svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.rv-btn--arrow:hover svg {
  transform: translateX(4px);
}

.rv-emp-value-wrap {
  position: relative;
  z-index: 2;
  margin-top: clamp(-3.25rem, -6vw, -2.25rem);
  margin-bottom: 0;
}

.rv-emp-value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rv-emp-value-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--rv-white);
  padding: 22px 20px;
  border-radius: var(--rv-radius);
  box-shadow: var(--rv-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rv-emp-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(11, 53, 88, 0.12);
}

.rv-emp-value-card__icon .rv-emp-ico {
  display: block;
}

.rv-emp-value-card__title {
  font-family: var(--rv-font-heading);
  color: var(--rv-navy);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.rv-emp-value-card__text {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .rv-emp-value-cards {
    grid-template-columns: 1fr;
  }
}

.rv-emp-howto {
  padding-top: 48px;
  padding-bottom: 8px;
}

.rv-emp-howto__intro {
  margin: 12px 0 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rv-text);
}

.rv-emp-howto__ol {
  margin: 20px 0 0;
  padding-left: 1.25rem;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #3d4f63;
}

.rv-emp-howto__ol li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.rv-emp-def {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.62;
  color: #2a3d52;
  max-width: 60ch;
  font-weight: 600;
}

.rv-emp-table-wrap {
  margin: 28px 0 0;
  overflow-x: auto;
  border-radius: var(--rv-radius);
  box-shadow: 0 8px 28px rgba(11, 53, 88, 0.08);
}

.rv-emp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #fff;
}

.rv-emp-table caption {
  caption-side: top;
  text-align: left;
  padding: 12px 14px 10px;
  font-weight: 700;
  font-family: var(--rv-font-heading);
  color: var(--rv-navy);
  font-size: 0.95rem;
}

.rv-emp-table th,
.rv-emp-table td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid #e2ebf4;
  vertical-align: top;
}

.rv-emp-table thead th {
  background: #f4f8fc;
  font-weight: 700;
  color: var(--rv-navy);
}

.rv-emp-table tbody tr:nth-child(even) {
  background: #fafcfe;
}

.rv-emp-integral-section {
  padding-top: 72px;
}

.rv-emp-integral {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

@media (max-width: 900px) {
  .rv-emp-integral {
    grid-template-columns: 1fr;
  }
}

.rv-emp-integral__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.rv-emp-integral__lead {
  margin: 0 0 18px;
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.62;
  color: #3d4f63;
  max-width: 56ch;
}

.rv-emp-integral__areas {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

@media (max-width: 600px) {
  .rv-emp-integral__areas {
    grid-template-columns: 1fr;
  }
}

.rv-emp-integral__area {
  background: var(--rv-white);
  border: 1px solid #e2ebf4;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 20px rgba(11, 53, 88, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rv-emp-integral__area:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 53, 88, 0.1);
}

.rv-emp-integral__area-label {
  display: block;
  font-family: var(--rv-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rv-navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.rv-emp-integral__area-text {
  display: block;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #52657a;
}

.rv-emp-integral__closing {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5d6f;
  max-width: 56ch;
}

.rv-emp-orbit {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.rv-emp-orbit__panel {
  border-radius: 22px;
  padding: clamp(20px, 3vw, 32px) clamp(14px, 2vw, 22px) clamp(26px, 3.5vw, 36px);
  background: radial-gradient(ellipse 92% 88% at 50% 38%, #1f5f8f 0%, #0f3d62 52%, #082a45 100%);
  box-shadow:
    0 26px 60px rgba(11, 53, 88, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
  .rv-emp-orbit__panel {
    animation: rv-emp-orbit-float 7s ease-in-out infinite;
  }
}

@keyframes rv-emp-orbit-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.rv-emp-orbit__diagram {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.rv-emp-orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rv-emp-orbit__ring {
  transform-origin: 200px 200px;
  opacity: 0.55;
}

.rv-emp-orbit__spokes {
  transform-origin: 200px 200px;
}

.rv-emp-orbit__spoke {
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 168;
  stroke-dashoffset: 168;
}

.rv-emp-orbit__diagram.is-active .rv-emp-orbit__spoke {
  animation: rv-emp-orbit-spoke 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.rv-emp-orbit__diagram.is-active .rv-emp-orbit__spokes .rv-emp-orbit__spoke:nth-child(1) {
  animation-delay: 0.05s;
}

.rv-emp-orbit__diagram.is-active .rv-emp-orbit__spokes .rv-emp-orbit__spoke:nth-child(2) {
  animation-delay: 0.15s;
}

.rv-emp-orbit__diagram.is-active .rv-emp-orbit__spokes .rv-emp-orbit__spoke:nth-child(3) {
  animation-delay: 0.25s;
}

.rv-emp-orbit__diagram.is-active .rv-emp-orbit__spokes .rv-emp-orbit__spoke:nth-child(4) {
  animation-delay: 0.35s;
}

@keyframes rv-emp-orbit-spoke {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .rv-emp-orbit__diagram.is-active .rv-emp-orbit__ring {
    animation: rv-emp-orbit-ring 22s ease-in-out infinite;
  }

  .rv-emp-orbit__hub {
    animation: rv-emp-orbit-hub 5.5s ease-in-out infinite;
  }
}

@keyframes rv-emp-orbit-ring {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.78;
  }
}

@keyframes rv-emp-orbit-hub {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  }
}

.rv-emp-orbit__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(5.5rem, 28vw, 7.25rem);
  height: clamp(5.5rem, 28vw, 7.25rem);
  border-radius: 50%;
  background: #0b3558;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  font-family: var(--rv-font-heading);
  font-weight: 700;
  font-size: clamp(0.62rem, 2.1vw, 0.78rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.rv-emp-orbit__hub-line {
  display: block;
}

.rv-emp-orbit__node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 5.5rem;
  cursor: default;
  outline: none;
}

.rv-emp-orbit__node:focus-visible {
  z-index: 5;
}

.rv-emp-orbit__node--fiscal {
  left: 50%;
  top: 0;
  transform: translate(-50%, -42%);
}

.rv-emp-orbit__node--laboral {
  right: 0;
  top: 50%;
  transform: translate(42%, -50%);
}

.rv-emp-orbit__node--contable {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 42%);
}

.rv-emp-orbit__node--mercantil {
  left: 0;
  top: 50%;
  transform: translate(-42%, -50%);
}

.rv-emp-orbit__node-disc {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.rv-emp-orbit__node:hover .rv-emp-orbit__node-disc,
.rv-emp-orbit__node:focus-visible .rv-emp-orbit__node-disc {
  transform: scale(1.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.rv-emp-orbit__node-disc .rv-emp-ico {
  width: 26px;
  height: 26px;
}

.rv-emp-orbit__node-disc .rv-emp-ico path,
.rv-emp-orbit__node-disc .rv-emp-ico circle {
  stroke: #0b3558;
}

.rv-emp-orbit__node-label {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.03em;
}

.rv-emp-orbit__node-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  top: calc(100% + 4px);
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  background: rgba(6, 26, 46, 0.94);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  z-index: 6;
}

.rv-emp-orbit__node--contable .rv-emp-orbit__node-hint {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(-6px);
}

.rv-emp-orbit__node:hover .rv-emp-orbit__node-hint,
.rv-emp-orbit__node:focus-visible .rv-emp-orbit__node-hint {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .rv-emp-integral {
    gap: 36px;
  }

  .rv-emp-orbit {
    max-width: 100%;
  }

  .rv-emp-orbit__diagram {
    width: min(400px, 92vw);
  }
}

.rv-emp-sublead {
  max-width: 58ch;
  margin-inline: auto;
  text-align: center;
}

.rv-emp-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1000px) {
  .rv-emp-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .rv-emp-includes-grid {
    grid-template-columns: 1fr;
  }
}

.rv-card__icon--svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
}

.rv-card__icon--svg .rv-emp-ico {
  width: 34px;
  height: 34px;
}

.rv-card--service-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rv-card--service-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 53, 88, 0.12);
}

.rv-emp-includes-foot {
  text-align: center;
  max-width: 880px;
  margin: 40px auto 0;
}

.rv-emp-includes-foot p {
  margin-bottom: 10px;
}

.rv-emp-benefits.rv-two-col {
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
}

.rv-emp-benefits__text .rv-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 18px 0 22px;
}

.rv-emp-benefits__text .rv-checklist li {
  flex: 0 1 auto;
  margin: 0;
  padding: 10px 18px 10px 40px;
  background: var(--rv-white);
  border-radius: 12px;
  border: 1px solid #e2ebf4;
  box-shadow: 0 4px 14px rgba(11, 53, 88, 0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rv-navy);
  line-height: 1.35;
}

.rv-emp-benefits__text .rv-checklist li::before {
  left: 14px;
  top: 50%;
  margin-top: -8px;
}

@media (min-width: 901px) {
  .rv-emp-benefits__media {
    position: sticky;
    top: 96px;
    justify-self: end;
    width: 100%;
    max-width: min(400px, 36vw);
  }

  .rv-emp-benefits__img-frame {
    margin-inline: 0;
    margin-left: auto;
  }
}

.rv-emp-benefits__img-frame {
  border-radius: var(--rv-radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11, 53, 88, 0.15);
  aspect-ratio: 3 / 4;
  max-height: min(82vh, 680px);
  margin-inline: auto;
}

@media (max-width: 900px) {
  .rv-emp-benefits.rv-two-col {
    gap: clamp(20px, 5vw, 32px);
  }

  .rv-emp-benefits__media {
    width: 100%;
    max-width: min(300px, 82vw);
    margin-inline: auto;
    justify-self: center;
  }

  .rv-emp-benefits__img-frame {
    max-height: min(42vh, 340px);
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .rv-emp-benefits__img-frame {
    animation: rv-emp-benefits-frame 9s ease-in-out infinite;
  }

  .rv-emp-benefits__img {
    animation: rv-emp-benefits-ken 18s ease-in-out infinite alternate;
    will-change: transform;
  }
}

@keyframes rv-emp-benefits-frame {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 50px rgba(11, 53, 88, 0.15);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 26px 58px rgba(11, 53, 88, 0.2);
  }
}

@keyframes rv-emp-benefits-ken {
  0% {
    transform: scale(1.03) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -0.6%);
  }
}

.rv-emp-benefits__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.rv-emp-inline-links {
  font-size: 0.95rem;
  margin-top: 18px;
}

.rv-emp-pillars {
  background: var(--rv-gray-bg);
}

.rv-emp-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

@media (max-width: 900px) {
  .rv-emp-pillars__grid {
    grid-template-columns: 1fr;
  }
}

.rv-emp-pillar {
  position: relative;
  background: var(--rv-white);
  border-radius: calc(var(--rv-radius) + 2px);
  padding: 0 0 26px;
  overflow: hidden;
  box-shadow: var(--rv-shadow);
  border: 1px solid #e8eef4;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.rv-emp-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11, 53, 88, 0.12);
}

.rv-emp-pillar__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--rv-cta), #1f6fb2);
}

.rv-emp-pillar__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 0;
}

.rv-emp-pillar__index {
  flex-shrink: 0;
  font-family: var(--rv-font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(11, 53, 88, 0.14);
  letter-spacing: -0.04em;
}

.rv-emp-pillar__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0;
  background: linear-gradient(145deg, #eaf4ff, #d4e8fc);
  border: 2px solid var(--rv-cta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rv-emp-pillar__icon .rv-emp-ico {
  width: 30px;
  height: 30px;
}

.rv-emp-pillar__title {
  font-family: var(--rv-font-heading);
  font-size: clamp(1.12rem, 1.8vw, 1.28rem);
  color: var(--rv-navy);
  margin: 0 22px 10px;
  line-height: 1.2;
}

.rv-emp-pillar__lead {
  margin: 0 22px 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3d4f63;
  font-weight: 500;
}

.rv-emp-pillar__points {
  list-style: none;
  margin: 0;
  padding: 0 18px 0 22px;
}

.rv-emp-pillar__points li {
  position: relative;
  padding: 10px 0 10px 1.1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4a5d6f;
  border-top: 1px solid #eef2f6;
}

.rv-emp-pillar__points li:first-child {
  border-top: none;
  padding-top: 4px;
}

.rv-emp-pillar__dot {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rv-cta);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.18);
}

.rv-emp-pillar__para {
  margin: 0 22px 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a5d6f;
}

.rv-emp-faq .rv-h2 {
  max-width: 22ch;
}

.rv-emp-faq__intro {
  margin: 12px 0 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rv-text);
}

.rv-emp-faq__list {
  margin: 28px 0 0;
  padding: 0;
}

.rv-emp-faq__q {
  margin: 0;
  padding: 18px 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rv-navy);
  font-family: var(--rv-font-heading);
}

.rv-emp-faq__a {
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #e2ebf4;
}

.rv-emp-faq__a p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--rv-text);
}

.rv-emp-final-cta-wrap {
  padding-bottom: 88px;
}

.rv-emp-final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
  background: linear-gradient(135deg, #0b3558 0%, #103e63 48%, #1a5f96 100%);
  color: #fff;
  padding: clamp(32px, 5vw, 56px);
  border-radius: calc(var(--rv-radius) + 4px);
  box-shadow: 0 22px 55px rgba(11, 53, 88, 0.24);
}

.rv-emp-final-cta__left {
  min-width: 0;
  padding-inline-end: clamp(12px, 3vw, 36px);
}

.rv-emp-final-cta__right {
  min-width: 0;
}

.rv-emp-final-cta__form-shell {
  height: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  background: rgba(255, 255, 255, 0.98);
  color: var(--rv-navy);
  border-radius: calc(var(--rv-radius) + 2px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

h3.rv-emp-final-cta__form-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rv-cta);
  line-height: 1.3;
}

.rv-emp-final-cta__form-lead {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3d4f63;
}

.rv-emp-final-cta__form-shell .rv-form {
  box-shadow: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.rv-emp-final-cta__form-shell .rv-form__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  align-items: end;
}

.rv-emp-final-cta__form-shell .rv-form__row > .rv-field {
  margin-bottom: 0;
}

.rv-emp-final-cta__form-shell .rv-field {
  margin-bottom: 12px;
}

.rv-emp-final-cta__form-shell .rv-field textarea {
  min-height: 88px;
}

.rv-emp-final-cta__form-shell .rv-field label {
  color: var(--rv-navy);
  font-size: 0.78rem;
}

.rv-emp-final-cta__form-shell .rv-btn--primary {
  margin-top: 4px;
}

.rv-emp-final-cta .rv-h2 {
  color: #fff;
}

.rv-emp-final-cta p {
  opacity: 0.94;
  margin: 0 0 12px;
}

@media (max-width: 900px) {
  .rv-emp-final-cta {
    grid-template-columns: 1fr;
  }

  .rv-emp-final-cta__left {
    padding-inline-end: 0;
  }

  .rv-emp-final-cta__form-shell .rv-form__row {
    grid-template-columns: 1fr;
  }
}

/* ——— Asesoría fiscal Sevilla (mockup + hero compuesto) ——— */

.rv-fis-hero-mockup--bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

body:has(.rv-fis-hero-mockup--bleed) {
  overflow-x: hidden;
}

.rv-fis-hero-mockup {
  position: relative;
  isolation: isolate;
  color: #fff;
  min-height: clamp(540px, 82vh, 880px);
  padding: calc(var(--rv-header-h, 72px) + 12px) 0 clamp(100px, 14vh, 150px);
  overflow: hidden;
}

.rv-fis-hero-mockup__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.rv-fis-hero-mockup__parallax {
  position: absolute;
  inset: -4% -2%;
  will-change: transform;
}

.rv-fis-hero-mockup__parallax picture {
  display: block;
  width: 100%;
  height: 100%;
}

.rv-fis-hero-mockup__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  display: block;
  transform-origin: 28% 50%;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes rv-fis-hero-drift {
    0% {
      transform: scale(1.04) translate(0, 0);
    }
    100% {
      transform: scale(1.07) translate(-0.6%, -0.35%);
    }
  }

  .rv-fis-hero-mockup__img--drift {
    animation: rv-fis-hero-drift 24s ease-in-out infinite alternate;
  }
}

.rv-fis-hero-mockup__black-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.rv-fis-hero-mockup__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    95deg,
    rgba(0, 20, 45, 0.06) 0%,
    rgba(0, 20, 45, 0.04) 40%,
    rgba(0, 20, 45, 0.18) 55%,
    rgba(0, 20, 45, 0.38) 100%
  );
  pointer-events: none;
}

.rv-fis-hero-mockup__shell {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.rv-fis-hero-mockup__wrap {
  position: relative;
  z-index: 2;
}

.rv-fis-hero-mockup__top {
  margin-bottom: clamp(14px, 2.5vh, 24px);
}

.rv-fis-hero-mockup__breadcrumb {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.95;
}

.rv-fis-hero-mockup__breadcrumb a {
  color: #fff;
}

.rv-fis-hero-mockup__breadcrumb a:hover {
  text-decoration: underline;
}

.rv-fis-hero-mockup__seo-copy {
  max-width: min(34rem, 100%);
  padding: 0 0 clamp(8px, 1.5vw, 12px);
}

.rv-fis-hero-mockup .rv-h1 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 2.5vw + 0.55rem, 2.55rem);
  line-height: 1.12;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.rv-fis-hero-mockup .rv-hero__kickerline {
  max-width: 40ch;
}

.rv-fis-hero-mockup .rv-hero__actions {
  margin-top: 6px;
}

.rv-fis-hero-mockup__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.rv-fis-hero-mockup__actions .rv-btn {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease, border-color 0.2s ease;
}

.rv-fis-hero-mockup__actions .rv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.rv-fis-hero-mockup__actions .rv-btn--ghost {
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
}

.rv-fis-hero-mockup__actions .rv-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.rv-fis-intro-panel {
  padding: clamp(48px, 6vw, 72px) 0;
  background: linear-gradient(180deg, #f5f8fb 0%, #fff 45%);
}

.rv-fis-intro-panel__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.rv-fis-intro-panel__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rv-cta);
}

.rv-fis-intro-panel__title {
  margin: 0;
  font-family: var(--rv-font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--rv-navy);
  line-height: 1.22;
}

.rv-fis-intro-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 24px);
}

.rv-fis-intro-card {
  position: relative;
  background: #fff;
  border-radius: calc(var(--rv-radius) + 4px);
  padding: clamp(20px, 2.5vw, 26px);
  border: 1px solid #e2ebf4;
  box-shadow: 0 12px 32px rgba(11, 53, 88, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.rv-fis-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(11, 53, 88, 0.1);
}

.rv-fis-intro-card__index {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(11, 53, 88, 0.18);
  font-variant-numeric: tabular-nums;
}

.rv-fis-intro-card__icon {
  display: block;
  margin-bottom: 12px;
}

.rv-fis-intro-card__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--rv-text);
}

@media (max-width: 720px) {
  .rv-fis-intro-panel__grid {
    grid-template-columns: 1fr;
  }
}

.rv-fis-svc-band {
  padding: clamp(52px, 7vw, 88px) 0;
  background: #fff;
}

.rv-fis-svc-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}

.rv-fis-svc-split__main .rv-h2 {
  margin: 0 0 1.25rem;
}

.rv-fis-svc-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.rv-fis-svc-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  padding: clamp(16px, 2vw, 22px) 0;
  border-bottom: 1px solid #e8eef5;
  align-items: start;
}

.rv-fis-svc-timeline__item:last-child {
  border-bottom: 0;
}

.rv-fis-svc-timeline__node {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #eaf4fb, #fff);
  border: 1px solid #d0e3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(11, 53, 88, 0.08);
}

.rv-fis-svc-timeline__node .rv-emp-ico {
  width: 26px;
  height: 26px;
}

.rv-fis-svc-timeline__text {
  margin: 0;
  color: var(--rv-text);
  line-height: 1.65;
  font-size: 0.96rem;
}

@media (prefers-reduced-motion: no-preference) {
  .rv-fis-svc-timeline__item {
    transition: transform 0.28s ease;
  }

  .rv-fis-svc-timeline__item:hover {
    transform: translateX(4px);
  }
}

.rv-fis-svc-split__diagram {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 960px) {
  /* Chips: sin carril horizontal ni barra de scroll en el hero fiscal */
  .rv-fis-hero-mockup .rv-hero__chips.rv-scroll-inline {
    flex-wrap: wrap;
    overflow-x: visible;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 0;
    scroll-snap-type: none;
    gap: 8px 10px;
  }
}

@media (max-width: 900px) {
  .rv-fis-hero-mockup {
    min-height: 0;
    padding-top: calc(var(--rv-header-h, 72px) + 6px);
    padding-bottom: clamp(22px, 6vw, 36px);
  }

  .rv-fis-hero-mockup__seo-copy {
    padding-bottom: 4px;
  }

  .rv-fis-hero-mockup .rv-hero__kickerline {
    margin-bottom: 12px;
  }

  .rv-fis-hero-mockup .rv-hero__chips {
    margin-bottom: 16px;
  }

  .rv-fis-hero-mockup__parallax {
    inset: -18% -12% -10% -12%;
  }

  .rv-fis-hero-mockup__img {
    object-fit: cover;
    object-position: 78% 70%;
    min-width: 100%;
    min-height: 100%;
  }

  .rv-fis-hero-mockup__shade {
    background: linear-gradient(
      165deg,
      rgba(0, 20, 45, 0.25) 0%,
      rgba(0, 20, 45, 0.18) 38%,
      rgba(0, 20, 45, 0.42) 72%,
      rgba(0, 20, 45, 0.58) 100%
    );
  }

  .rv-fis-hero-mockup + .rv-emp-value-wrap,
  .rv-fis-hero-mockup + .rv-fis-value-deck {
    margin-top: clamp(-22px, -3vw, -12px);
  }
}

@media (max-width: 480px) {
  .rv-fis-hero-mockup__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rv-fis-hero-mockup__actions .rv-btn {
    justify-content: center;
    text-align: center;
  }
}

.rv-fis-hub {
  position: relative;
  border-radius: 26px;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  max-width: 480px;
  min-height: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(7, 31, 53, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.rv-fis-hub--orbit {
  isolation: isolate;
}

.rv-fis-hub--vision {
  background: #061428;
}

.rv-fis-hub:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 32px 64px rgba(11, 53, 88, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.rv-fis-hub__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 85% at 18% 22%, rgba(94, 179, 255, 0.22), transparent 52%),
    radial-gradient(ellipse 90% 70% at 88% 78%, rgba(0, 102, 204, 0.35), transparent 48%),
    radial-gradient(ellipse 95% 80% at 50% 28%, rgba(255, 255, 255, 0.14), transparent 58%),
    linear-gradient(152deg, #030d1a 0%, #071f35 38%, #0b3558 62%, #1a6aab 100%);
  will-change: transform;
}

.rv-fis-hub__mesh {
  position: absolute;
  inset: -18%;
  z-index: 0;
  opacity: 0.92;
  background:
    radial-gradient(circle at 30% 40%, rgba(126, 207, 255, 0.2), transparent 42%),
    radial-gradient(circle at 72% 58%, rgba(0, 102, 204, 0.25), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.rv-fis-hub__pulse {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rv-fis-hub__pulse span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 42%;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(143, 212, 255, 0.35);
  transform: translate(-50%, -50%) scale(0.55);
  opacity: 0;
}

.rv-fis-hub__orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  transform-origin: 50% 50%;
}

.rv-fis-hub__spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.rv-fis-hub__wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(330px, 85vw);
  height: min(330px, 85vw);
  margin: calc(min(330px, 85vw) / -2) 0 0 calc(min(330px, 85vw) / -2);
  z-index: 4;
}

.rv-fis-hub__sat {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 5;
  transform: rotate(calc(var(--hub-i) * 72deg - 90deg)) translateY(calc(min(330px, 85vw) * -0.408));
}

.rv-fis-hub__sat-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(calc(90deg - var(--hub-i) * 72deg));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 100px;
  max-width: 144px;
  min-height: 100px;
  padding: 11px 11px 13px;
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(240, 248, 255, 0.82));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--rv-navy);
  font-size: clamp(0.62rem, 1.15vw, 0.78rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.16;
  box-shadow:
    0 14px 36px rgba(4, 24, 48, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(180, 215, 245, 0.55);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.rv-fis-hub__sat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, #9fdcff, #0066cc 75%);
  box-shadow: 0 0 12px rgba(0, 102, 204, 0.55);
}

.rv-fis-hub__sat-inner:hover {
  transform: translate(-50%, -50%) rotate(calc(90deg - var(--hub-i) * 72deg)) scale(1.07);
  border-color: rgba(0, 102, 204, 0.55);
  box-shadow:
    0 18px 46px rgba(0, 102, 204, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.rv-fis-hub__core-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 212, 255, 0.95), rgba(255, 255, 255, 0.35), rgba(0, 102, 204, 0.65));
  box-shadow: 0 0 40px rgba(0, 102, 204, 0.35);
}

.rv-fis-hub__core {
  position: relative;
  width: min(152px, 39vw);
  height: min(152px, 39vw);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(0, 102, 204, 0.35), transparent 55%),
    linear-gradient(165deg, #0f4a78 0%, #071f35 58%, #051525 100%);
  color: #fff;
  font-size: clamp(0.74rem, 1.45vw, 0.9rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.22;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 -18px 36px rgba(0, 0, 0, 0.35),
    0 18px 42px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes rv-fis-hub-pulse-ring {
    0% {
      transform: translate(-50%, -50%) scale(0.42);
      opacity: 0.55;
    }
    100% {
      transform: translate(-50%, -50%) scale(2.15);
      opacity: 0;
    }
  }

  .rv-fis-hub__pulse span {
    animation: rv-fis-hub-pulse-ring 5s ease-out infinite;
  }

  .rv-fis-hub__pulse span:nth-child(2) {
    animation-delay: 2.6s;
  }

  @keyframes rv-fis-hub-mesh-drift {
    from {
      transform: translate(-3%, -2%) rotate(0deg) scale(1);
    }
    to {
      transform: translate(4%, 3%) rotate(5deg) scale(1.06);
    }
  }

  @keyframes rv-fis-orbit-cw {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes rv-fis-orbit-ccw {
    to {
      transform: rotate(-360deg);
    }
  }

  @keyframes rv-fis-spoke-glow {
    0%,
    100% {
      opacity: 0.38;
    }
    50% {
      opacity: 1;
    }
  }

  @keyframes rv-fis-core-glow {
    0%,
    100% {
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        inset 0 -18px 36px rgba(0, 0, 0, 0.35),
        0 18px 42px rgba(0, 0, 0, 0.45);
    }
    50% {
      box-shadow:
        inset 0 0 0 1px rgba(159, 220, 255, 0.55),
        inset 0 -14px 32px rgba(0, 102, 204, 0.28),
        0 22px 54px rgba(0, 102, 204, 0.42);
    }
  }

  @keyframes rv-fis-core-wrap-glow {
    0%,
    100% {
      filter: brightness(1);
      box-shadow: 0 0 36px rgba(0, 102, 204, 0.38);
    }
    50% {
      filter: brightness(1.06);
      box-shadow: 0 0 52px rgba(126, 207, 255, 0.42);
    }
  }

  @keyframes rv-fis-sat-breathe {
    0%,
    100% {
      transform: translate(-50%, -50%) rotate(calc(90deg - var(--hub-i) * 72deg)) translateY(0);
    }
    50% {
      transform: translate(-50%, -50%) rotate(calc(90deg - var(--hub-i) * 72deg)) translateY(-4px);
    }
  }

  .rv-fis-hub--vision .rv-fis-hub__mesh {
    animation: rv-fis-hub-mesh-drift 22s ease-in-out infinite alternate;
  }

  .rv-fis-hub__orbit-svg {
    transform-box: fill-box;
    transform-origin: center center;
  }

  .rv-fis-hub__orbit-svg--a {
    animation: rv-fis-orbit-cw 85s linear infinite;
  }

  .rv-fis-hub__orbit-svg--b {
    animation: rv-fis-orbit-ccw 115s linear infinite;
  }

  .rv-fis-hub--orbit .rv-fis-hub__spokes--anim .rv-fis-hub__spoke {
    animation: rv-fis-spoke-glow 3s ease-in-out infinite;
  }

  .rv-fis-hub--orbit .rv-fis-hub__spokes--anim .rv-fis-hub__spoke:nth-child(1) {
    animation-delay: 0s;
  }

  .rv-fis-hub--orbit .rv-fis-hub__spokes--anim .rv-fis-hub__spoke:nth-child(2) {
    animation-delay: 0.22s;
  }

  .rv-fis-hub--orbit .rv-fis-hub__spokes--anim .rv-fis-hub__spoke:nth-child(3) {
    animation-delay: 0.44s;
  }

  .rv-fis-hub--orbit .rv-fis-hub__spokes--anim .rv-fis-hub__spoke:nth-child(4) {
    animation-delay: 0.66s;
  }

  .rv-fis-hub--orbit .rv-fis-hub__spokes--anim .rv-fis-hub__spoke:nth-child(5) {
    animation-delay: 0.88s;
  }

  .rv-fis-hub--orbit .rv-fis-hub__core-wrap {
    animation: rv-fis-core-wrap-glow 5s ease-in-out infinite alternate;
  }

  .rv-fis-hub--orbit .rv-fis-hub__core {
    animation: rv-fis-core-glow 4.5s ease-in-out infinite;
  }

  .rv-fis-hub--orbit .rv-fis-hub__sat-inner {
    animation: rv-fis-sat-breathe 5s ease-in-out infinite;
    animation-delay: calc(var(--hub-i) * 0.24s);
  }

  .rv-fis-hub--orbit .rv-fis-hub__sat-inner:hover {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-fis-hub__sat-inner:hover {
    transform: translate(-50%, -50%) rotate(calc(90deg - var(--hub-i) * 72deg));
  }

  .rv-fis-hero-mockup__img--drift {
    animation: none !important;
  }

  .rv-fis-hub {
    transition: none;
  }

  .rv-fis-hub:hover {
    transform: none;
  }

  .rv-fis-hub--orbit .rv-fis-hub__spokes--anim .rv-fis-hub__spoke,
  .rv-fis-hub--orbit .rv-fis-hub__core,
  .rv-fis-hub--orbit .rv-fis-hub__core-wrap,
  .rv-fis-hub--orbit .rv-fis-hub__sat-inner,
  .rv-fis-hub__orbit-svg--a,
  .rv-fis-hub__orbit-svg--b {
    animation: none !important;
  }

  .rv-fis-hub__pulse span {
    animation: none !important;
    opacity: 0 !important;
  }

  .rv-fis-hub--vision .rv-fis-hub__mesh {
    animation: none !important;
  }

  .rv-fis-dual-card {
    transition: none;
  }

  .rv-fis-dual-card:hover {
    transform: none;
  }

  .rv-fis-value-deck .rv-emp-value-card {
    transition: none;
  }

  .rv-fis-value-deck .rv-emp-value-card:hover {
    transform: none;
  }
}

.rv-fis-includes-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .rv-fis-includes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rv-fis-includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .rv-fis-includes-grid {
    grid-template-columns: 1fr;
  }
}

.rv-fis-include-card {
  border: 1px solid #e6eaef;
  border-radius: var(--rv-radius);
  background: #fff;
  padding: 18px 16px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rv-fis-include-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(11, 53, 88, 0.12);
}

.rv-fis-hero-mockup + .rv-emp-value-wrap,
.rv-fis-hero-mockup + .rv-fis-value-deck {
  position: relative;
  z-index: 3;
  margin-top: clamp(-52px, -5.5vw, -36px);
  margin-bottom: clamp(32px, 5vw, 52px);
}

.rv-fis-hero-mockup + .rv-emp-value-wrap .rv-emp-value-cards,
.rv-fis-hero-mockup + .rv-fis-value-deck .rv-emp-value-cards {
  border-radius: calc(var(--rv-radius) + 6px);
  box-shadow: 0 28px 60px rgba(11, 53, 88, 0.18);
}

.rv-fis-value-deck .rv-emp-value-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.rv-fis-value-deck .rv-emp-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(11, 53, 88, 0.14);
}

.rv-fis-includes-section {
  background: var(--rv-gray-bg);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.rv-fis-includes-section .rv-h2 {
  text-align: center;
}

.rv-fis-includes-section .rv-lead {
  text-align: center;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.rv-fis-includes-section .rv-fis-include-card {
  border: 1px solid #e6eaef;
  border-radius: var(--rv-radius);
  background: #fff;
  padding: 18px 16px 20px;
}

.rv-fis-includes-section .rv-fis-include-card .rv-h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.rv-fis-includes-section .rv-fis-include-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--rv-text);
}

.rv-fis-benefits-wrap {
  padding: clamp(48px, 6vw, 80px) 0;
}

.rv-fis-benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.rv-fis-benefits-layout__visual {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 0;
}

.rv-fis-benefits-layout__frame {
  border-radius: calc(var(--rv-radius) + 8px);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2ebf4;
  box-shadow: 0 20px 50px rgba(11, 53, 88, 0.12);
  width: min(100%, 320px);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.rv-fis-benefits-layout__frame picture {
  display: contents;
}

.rv-fis-benefits-layout__img {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  object-fit: cover;
  object-position: 50% 32%;
  display: block;
  background: #f8fafc;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes rv-fis-benefits-float {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-6px);
    }
  }

  .rv-fis-benefits-layout__visual {
    animation: rv-fis-benefits-float 5.5s ease-in-out infinite alternate;
  }
}

.rv-fis-benefits-layout__content .rv-h2 {
  margin: 0 0 0.75rem;
}

.rv-fis-benefits-layout__lead {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--rv-navy);
  line-height: 1.5;
}

.rv-fis-benefit-rows {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rv-fis-benefit-rows__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--rv-radius-sm);
  background: #fff;
  border: 1px solid #e6eaef;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rv-navy);
  line-height: 1.35;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rv-fis-benefit-rows__item:hover {
  border-color: rgba(0, 102, 204, 0.35);
  box-shadow: 0 8px 22px rgba(11, 53, 88, 0.08);
}

.rv-fis-benefit-rows__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--rv-cta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.rv-fis-benefits-layout__prose p {
  margin: 0 0 0.75rem;
  color: var(--rv-text);
  line-height: 1.65;
  font-size: 0.94rem;
}

.rv-fis-benefits-layout__prose p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .rv-fis-benefits-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rv-fis-benefits-layout__content {
    order: 1;
  }

  .rv-fis-benefits-layout__visual {
    order: 2;
    align-self: center;
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }

  .rv-fis-benefits-layout__frame {
    width: 100%;
    max-width: none;
    align-self: center;
    aspect-ratio: 3 / 4;
    max-height: min(520px, 72vh);
    flex: none;
  }

  .rv-fis-benefits-layout__img {
    min-height: 200px;
  }
}

.rv-fis-dual-section {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.rv-fis-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.rv-fis-dual-card {
  background: #f4f6f9;
  border-radius: calc(var(--rv-radius) + 4px);
  box-shadow: 0 16px 40px rgba(11, 53, 88, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
}

.rv-fis-dual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(11, 53, 88, 0.14);
}

.rv-fis-dual-card__media {
  overflow: hidden;
  position: relative;
}

.rv-fis-dual-card__media-inner {
  overflow: hidden;
}

.rv-fis-dual-card__media-inner picture {
  display: block;
  height: 100%;
}

.rv-fis-dual-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 480;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.rv-fis-dual-card:hover .rv-fis-dual-card__img {
  transform: scale(1.06);
}

.rv-fis-dual-card__body {
  padding: clamp(20px, 2.8vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.rv-fis-dual-card__body .rv-h2 {
  margin: 0;
}

.rv-fis-dual-card__body p {
  margin: 0;
  color: var(--rv-text);
  line-height: 1.65;
}

.rv-fis-dual-card__stats {
  margin-top: auto;
  padding: 16px clamp(20px, 2.8vw, 28px) clamp(20px, 2.8vw, 28px);
  border-top: 1px solid rgba(11, 53, 88, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.rv-fis-dual-stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--rv-navy);
  line-height: 1.35;
}

.rv-fis-dual-stat__ico .rv-emp-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.rv-fis-dual-card__body .rv-fis-mini-grid {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.rv-fis-mini-grid__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--rv-navy);
}

.rv-fis-mini-grid__ico .rv-emp-ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.rv-fis-dual-card__foot {
  margin-top: auto;
  padding: 14px clamp(20px, 2.8vw, 28px) clamp(20px, 2.8vw, 28px);
  border-top: 1px solid rgba(11, 53, 88, 0.08);
}

.rv-fis-aut-link {
  font-weight: 600;
  color: var(--rv-cta);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.rv-fis-aut-link:hover {
  color: #0052a3;
  gap: 8px;
}

@media (max-width: 900px) {
  .rv-fis-svc-split {
    grid-template-columns: 1fr;
  }

  .rv-fis-hub {
    margin: 0 auto;
    max-width: 100%;
  }

  .rv-fis-dual {
    grid-template-columns: 1fr;
  }

  .rv-fis-dual-card__stats,
  .rv-fis-dual-card__body .rv-fis-mini-grid {
    grid-template-columns: 1fr;
  }
}

.rv-fis-explore {
  padding: clamp(48px, 6vw, 72px) 0 clamp(64px, 8vw, 96px);
  background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
}

.rv-fis-explore__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.rv-fis-explore__lead {
  margin: 0.5rem 0 0;
  color: var(--rv-text);
  line-height: 1.6;
}

.rv-fis-explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.rv-fis-explore-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 18px;
  min-height: 132px;
  border-radius: calc(var(--rv-radius) + 2px);
  background: #fff;
  border: 1px solid #e2ebf4;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(11, 53, 88, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease;
}

.rv-fis-explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(11, 53, 88, 0.12);
  border-color: rgba(0, 102, 204, 0.35);
}

.rv-fis-explore-card__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rv-cta);
}

.rv-fis-explore-card__title {
  font-family: var(--rv-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rv-navy);
  line-height: 1.25;
}

.rv-fis-explore-card__go {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rv-cta);
}

.rv-fis-explore-card--accent {
  background: linear-gradient(135deg, #0b3558 0%, #1f6fb2 100%);
  border-color: transparent;
  color: #fff;
}

.rv-fis-explore-card--accent .rv-fis-explore-card__kicker {
  color: rgba(255, 255, 255, 0.75);
}

.rv-fis-explore-card--accent .rv-fis-explore-card__title {
  color: #fff;
}

.rv-fis-explore-card--accent .rv-fis-explore-card__go {
  color: #cfe6ff;
}

.rv-fis-explore-card--current {
  cursor: default;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(31, 111, 178, 0.14) 100%);
  border-color: rgba(0, 102, 204, 0.55);
  box-shadow:
    0 14px 36px rgba(0, 102, 204, 0.14),
    inset 0 0 0 1px rgba(0, 102, 204, 0.12);
}

.rv-fis-explore-card--current .rv-fis-explore-card__kicker {
  color: var(--rv-navy);
}

.rv-fis-explore-card--current .rv-fis-explore-card__title {
  color: var(--rv-navy);
}

.rv-fis-explore-card--current .rv-fis-explore-card__go {
  color: var(--rv-cta);
  font-weight: 700;
}

.rv-fis-contextual {
  max-width: 62rem;
  margin: 0 auto;
}

.rv-fis-contextual .rv-prose {
  margin: 0;
  line-height: 1.7;
  color: var(--rv-navy);
}

.rv-fis-contextual a {
  color: var(--rv-cta);
  font-weight: 600;
  text-decoration: none;
}

.rv-fis-contextual a:hover {
  text-decoration: underline;
}

.rv-fis-contextual__sep {
  color: var(--rv-text);
  font-weight: 400;
  padding: 0 0.15em;
}

.rv-fis-geo-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--rv-text);
}

.rv-fis-integration {
  max-width: 58rem;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px);
  border-radius: calc(var(--rv-radius) + 2px);
  background: #fff;
  box-shadow: 0 14px 40px rgba(11, 53, 88, 0.08);
  border: 1px solid #e2ebf4;
}

.rv-fis-integration .rv-h2 {
  margin-top: 0;
}

.rv-fis-integration p:last-child {
  margin-bottom: 0;
}

.rv-fis-dual-bullets {
  margin: 1rem 0 0;
}

.rv-fis-dual-follow-h3 {
  margin-top: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .rv-fis-explore-card:hover {
    transform: none;
  }

  .rv-fis-dual-card:hover .rv-fis-dual-card__img {
    transform: none;
  }

  .rv-fis-intro-card:hover {
    transform: none;
  }

  .rv-fis-svc-timeline__item:hover {
    transform: none;
  }

  .rv-fis-benefits-layout__visual {
    animation: none !important;
  }
}

/* ==========================================================================
   AUTÓNOMOS — Landing /asesoria-autonomos-sevilla/
   Premium template namespaced .rv-aut-*
   ========================================================================== */

/* Hero -------------------------------------------------------------------- */
.rv-aut-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 88px;
  color: #fff;
  background: radial-gradient(120% 110% at -10% 0%, #144a85 0%, #0B3558 55%, #061f3a 100%);
}

.rv-aut-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 90% 30%, rgba(31, 111, 178, 0.45) 0%, rgba(31, 111, 178, 0) 70%),
    radial-gradient(50% 70% at 10% 80%, rgba(0, 102, 204, 0.32) 0%, rgba(0, 102, 204, 0) 70%);
  opacity: 0.95;
}

.rv-aut-hero__bg::before,
.rv-aut-hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.rv-aut-hero__bg::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, #4ea6ff 0%, transparent 70%);
}

.rv-aut-hero__bg::after {
  width: 360px;
  height: 360px;
  bottom: -160px;
  left: -60px;
  background: radial-gradient(circle, #1F6FB2 0%, transparent 70%);
  animation: rvAutPulse 9s ease-in-out infinite;
}

@keyframes rvAutPulse {
  0%, 100% { transform: scale(1); opacity: 0.32; }
  50% { transform: scale(1.12); opacity: 0.5; }
}

.rv-aut-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.rv-aut-hero__breadcrumb {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
  font-size: 14px;
}

.rv-aut-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.18s ease;
}

.rv-aut-hero__breadcrumb a:hover {
  color: #fff;
}

.rv-aut-hero__h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  max-width: 640px;
}

.rv-aut-hero__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 600px;
}

.rv-aut-hero__lead + .rv-aut-hero__lead {
  color: rgba(255, 255, 255, 0.82);
}

.rv-aut-hero__chips {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-aut-hero__chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e8f1fa;
  font-size: 13px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rv-aut-hero__chip:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.rv-aut-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.rv-aut-hero__media {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 580px;
}

.rv-aut-hero__media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #0e3a66, #1F6FB2);
  transform: translateZ(0);
}

.rv-aut-hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.rv-aut-hero__media-frame:hover .rv-aut-hero__img {
  transform: scale(1.03);
}

.rv-aut-hero__brandmark {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  font-family: 'Poppins', system-ui, sans-serif;
}

.rv-aut-hero__brandmark-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.rv-aut-hero__brandmark-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.85;
  margin-top: 2px;
}

@media (max-width: 960px) {
  .rv-aut-hero {
    padding: 72px 0 56px;
  }
  .rv-aut-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .rv-aut-hero__media {
    justify-self: stretch;
    max-width: 100%;
  }
}

/* Value cards (sobre hero) ----------------------------------------------- */
.rv-aut-value-wrap {
  position: relative;
  margin-top: -52px;
  margin-bottom: 24px;
  z-index: 3;
}

.rv-aut-value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rv-aut-value-card {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(11, 53, 88, 0.10);
  padding: 22px 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rv-aut-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(11, 53, 88, 0.14);
  border-color: #cfe2f5;
}

@media (max-width: 960px) {
  .rv-aut-value-wrap {
    margin-top: -24px;
  }
  .rv-aut-value-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Sección 3 — Servicio gestoría + diagrama orbit ------------------------- */
.rv-aut-svc-band {
  padding: 92px 0 88px;
  background: linear-gradient(180deg, #fff 0%, #f3f8fd 100%);
}

.rv-aut-svc-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.rv-aut-svc-split__text h2 {
  color: var(--rv-navy);
  margin: 0 0 18px;
}

.rv-aut-svc-split__text p {
  color: var(--rv-text);
  line-height: 1.7;
  margin: 0 0 14px;
}

.rv-aut-svc-split__diagram {
  position: relative;
}

.rv-aut-hub {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0B3558 0%, #1F6FB2 100%);
  box-shadow: 0 28px 70px rgba(11, 53, 88, 0.25);
  isolation: isolate;
}

.rv-aut-hub__bg {
  position: absolute;
  inset: 0;
  display: block;
}

.rv-aut-hub__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px) saturate(110%);
  opacity: 0.55;
}

.rv-aut-hub__bg--missing {
  display: none;
}

.rv-aut-hub__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(11, 53, 88, 0.15) 0%, rgba(11, 53, 88, 0.55) 100%),
    linear-gradient(180deg, rgba(11, 53, 88, 0.25) 0%, rgba(11, 53, 88, 0.45) 100%);
  z-index: 1;
}

.rv-aut-hub__spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.rv-aut-hub__spoke {
  animation: rvAutSpokeFade 4s ease-in-out infinite;
}

.rv-aut-hub__spoke:nth-child(2) { animation-delay: 0.4s; }
.rv-aut-hub__spoke:nth-child(3) { animation-delay: 0.8s; }
.rv-aut-hub__spoke:nth-child(4) { animation-delay: 1.2s; }

@keyframes rvAutSpokeFade {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.rv-aut-hub__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 38%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  color: var(--rv-navy);
  line-height: 1.15;
  padding: 8px;
}

.rv-aut-hub__core-line {
  font-size: clamp(13px, 1.5vw, 16px);
}

.rv-aut-hub__core-line--accent {
  color: var(--rv-cta);
  font-size: clamp(15px, 1.7vw, 18px);
}

.rv-aut-hub__node {
  position: absolute;
  z-index: 3;
  width: 26%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.rv-aut-hub__node:hover,
.rv-aut-hub__node:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.rv-aut-hub__node--fiscal { top: 8%; right: 8%; }
.rv-aut-hub__node--contable { bottom: 8%; right: 8%; }
.rv-aut-hub__node--administrativa { bottom: 8%; left: 8%; }
.rv-aut-hub__node--asesoramiento { top: 8%; left: 8%; }

.rv-aut-hub__node-disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}

.rv-aut-hub__node-disc svg {
  width: 28px;
  height: 28px;
}

.rv-aut-hub__node-label {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  color: var(--rv-navy);
  font-size: 12px;
}

.rv-aut-hub__node-hint {
  display: none;
}

@media (max-width: 960px) {
  .rv-aut-svc-band {
    padding: 64px 0 56px;
  }
  .rv-aut-svc-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .rv-aut-hub {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .rv-aut-hub__node-disc {
    width: 30px;
    height: 30px;
    margin-bottom: 2px;
  }
  .rv-aut-hub__node-disc svg {
    width: 22px;
    height: 22px;
  }
  .rv-aut-hub__node-label {
    font-size: 11px;
  }
}

/* Sección 4 — Qué incluye (4 cards) -------------------------------------- */
.rv-aut-includes-section {
  padding: 88px 0 84px;
  background: var(--rv-white);
}

.rv-aut-includes-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.rv-aut-include-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef5;
  box-shadow: 0 10px 30px rgba(11, 53, 88, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.rv-aut-include-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rv-cta), #4ea6ff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.rv-aut-include-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(11, 53, 88, 0.12);
  border-color: #cfe2f5;
}

.rv-aut-include-card:hover::before {
  transform: scaleX(1);
}

.rv-aut-include-card h3 {
  color: var(--rv-navy);
  font-size: 18px;
  margin: 12px 0 8px;
}

.rv-aut-include-card p {
  color: var(--rv-text);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.rv-aut-include-card .rv-card__link {
  margin-top: 14px;
}

.rv-aut-includes-foot {
  margin-top: 36px;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.rv-aut-includes-foot p {
  color: var(--rv-text);
  line-height: 1.7;
  margin: 0 0 8px;
}

@media (max-width: 1024px) {
  .rv-aut-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rv-aut-includes-section {
    padding: 64px 0 56px;
  }
  .rv-aut-includes-grid {
    grid-template-columns: 1fr;
  }
}

/* Sección 5 — Beneficios (2 col con visual interactivo derecha) ---------- */
.rv-aut-benefits-wrap {
  padding: 88px 0;
}

.rv-aut-benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
}

.rv-aut-benefits-layout__content {
  display: flex;
  flex-direction: column;
}

.rv-aut-benefits-layout__content h2 {
  color: var(--rv-navy);
  margin: 0 0 16px;
}

/* Visual interactivo (imagen + chips overlay) */
.rv-aut-benefits-visual {
  display: flex;
  align-self: stretch;
  min-height: 480px;
}

.rv-aut-benefits-visual__frame {
  position: relative;
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(11, 53, 88, 0.22);
  isolation: isolate;
  background: linear-gradient(135deg, #0e3a66 0%, #1F6FB2 100%);
}

.rv-aut-benefits-visual__media {
  position: absolute;
  inset: 0;
  display: block;
}

.rv-aut-benefits-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rv-aut-benefits-visual__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 53, 88, 0.0) 30%, rgba(11, 53, 88, 0.65) 100%),
    linear-gradient(135deg, rgba(11, 53, 88, 0.35) 0%, rgba(31, 111, 178, 0.15) 60%, rgba(11, 53, 88, 0.30) 100%);
  pointer-events: none;
}

.rv-aut-benefits-visual__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  z-index: 1;
  pointer-events: none;
}

.rv-aut-benefits-visual__glow--a {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(78, 166, 255, 0.45) 0%, transparent 70%);
  animation: rvAutPulse 11s ease-in-out infinite;
}

.rv-aut-benefits-visual__glow--b {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
  animation: rvAutPulse 13s ease-in-out infinite 1.5s;
}

.rv-aut-benefits-visual__head {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.rv-aut-benefits-visual__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfe6ff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  margin-bottom: 10px;
}

.rv-aut-benefits-visual__title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.25;
  color: #fff;
  margin: 0;
  max-width: 86%;
}

/* Chips métricas (flotantes sobre la imagen) */
.rv-aut-benefits-visual__chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  min-width: 168px;
  max-width: 220px;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: rvAutChipFloat 6s ease-in-out infinite;
}

.rv-aut-benefits-visual__chip:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.30), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.rv-aut-benefits-visual__chip--1 {
  top: 18%;
  left: -18px;
  animation-delay: 0s;
}

.rv-aut-benefits-visual__chip--2 {
  top: 12%;
  right: -18px;
  animation-delay: 1.2s;
}

.rv-aut-benefits-visual__chip--3 {
  bottom: 28%;
  left: -22px;
  animation-delay: 2.4s;
}

.rv-aut-benefits-visual__chip--4 {
  bottom: 18%;
  right: -16px;
  animation-delay: 3.6s;
}

@keyframes rvAutChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.rv-aut-benefits-visual__chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rv-cta), #4ea6ff);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0, 102, 204, 0.35);
}

.rv-aut-benefits-visual__chip-ico svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.rv-aut-benefits-visual__chip-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rv-aut-benefits-visual__chip-value {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--rv-navy);
  letter-spacing: -0.01em;
}

.rv-aut-benefits-visual__chip-label {
  font-size: 12px;
  line-height: 1.35;
  color: var(--rv-text);
  font-weight: 500;
}

@media (max-width: 1080px) {
  .rv-aut-benefits-visual__chip {
    min-width: 150px;
    padding: 10px 14px 10px 10px;
  }
  .rv-aut-benefits-visual__chip-value {
    font-size: 18px;
  }
  .rv-aut-benefits-visual__chip-label {
    font-size: 11.5px;
  }
}

@media (max-width: 960px) {
  .rv-aut-benefits-wrap {
    padding: 64px 0 56px;
  }
  .rv-aut-benefits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rv-aut-benefits-visual {
    min-height: 420px;
  }
  .rv-aut-benefits-visual__chip--1 { left: 8px; }
  .rv-aut-benefits-visual__chip--2 { right: 8px; }
  .rv-aut-benefits-visual__chip--3 { left: 8px; }
  .rv-aut-benefits-visual__chip--4 { right: 8px; }
}

@media (max-width: 560px) {
  .rv-aut-benefits-visual {
    min-height: 380px;
  }
  .rv-aut-benefits-visual__chip {
    min-width: 130px;
    gap: 8px;
  }
  .rv-aut-benefits-visual__chip-ico {
    width: 36px;
    height: 36px;
  }
  .rv-aut-benefits-visual__chip-ico svg {
    width: 18px;
    height: 18px;
  }
  .rv-aut-benefits-visual__chip-value {
    font-size: 16px;
  }
  .rv-aut-benefits-visual__chip-label {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-aut-benefits-visual__chip,
  .rv-aut-benefits-visual__glow {
    animation: none !important;
  }
}

/* Sección 6 — 3 pillars con stats --------------------------------------- */
.rv-aut-pillars {
  padding: 92px 0 88px;
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.rv-aut-pillar {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 30px;
  border: 1px solid #e6edf4;
  box-shadow: 0 14px 40px rgba(11, 53, 88, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rv-aut-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(11, 53, 88, 0.12);
}

.rv-aut-pillar__title {
  color: var(--rv-navy);
  font-size: 20px;
  line-height: 1.3;
  margin: 14px 0 14px;
}

.rv-aut-pillar .rv-emp-pillar__para {
  color: var(--rv-text);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 10px;
}

@media (max-width: 960px) {
  .rv-aut-pillars {
    padding: 64px 0 56px;
  }
}

/* Stats bar (banda horizontal con fondo azul, fuera de los pillars) ------ */
.rv-aut-stats-bar-wrap {
  margin-top: 40px;
}

.rv-aut-stats-bar {
  list-style: none;
  margin: 0;
  padding: 22px clamp(20px, 3vw, 40px);
  border-radius: 18px;
  background: linear-gradient(135deg, #0B3558 0%, #1F6FB2 100%);
  box-shadow: 0 22px 50px rgba(11, 53, 88, 0.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.rv-aut-stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.rv-aut-stats-bar__item {
  text-align: center;
  position: relative;
  padding: 6px 12px;
}

.rv-aut-stats-bar__item + .rv-aut-stats-bar__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.rv-aut-stats-bar__value {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.rv-aut-stats-bar__value .rv-counter {
  color: #fff;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rv-aut-stats-bar__suffix {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .rv-aut-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .rv-aut-stats-bar__item + .rv-aut-stats-bar__item::before {
    display: none;
  }
  .rv-aut-stats-bar__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .rv-aut-stats-bar__item:nth-child(n+3) {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 420px) {
  .rv-aut-stats-bar {
    grid-template-columns: 1fr;
  }
  .rv-aut-stats-bar__item:nth-child(odd) {
    border-right: 0;
  }
  .rv-aut-stats-bar__item + .rv-aut-stats-bar__item {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

/* Sección 6.3 — Problema → Solución (encuadre AI Overview) -------------- */
.rv-aut-ps-wrap {
  padding: 80px 0 72px;
  background: #fff;
}

.rv-aut-ps__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.rv-aut-ps__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rv-blue);
  background: rgba(31, 111, 178, 0.08);
  border: 1px solid rgba(31, 111, 178, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.rv-aut-ps__head h2 {
  color: var(--rv-navy);
  margin: 0 0 12px;
}

.rv-aut-ps__lead {
  color: var(--rv-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.rv-aut-ps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rv-aut-ps__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(11, 53, 88, 0.10);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(11, 53, 88, 0.08);
  padding: 26px 24px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rv-aut-ps__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11, 53, 88, 0.14);
  border-color: rgba(31, 111, 178, 0.30);
}

.rv-aut-ps__card-head {
  margin-bottom: 12px;
}

.rv-aut-ps__problem {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8294b;
  background: rgba(184, 41, 75, 0.08);
  border: 1px solid rgba(184, 41, 75, 0.20);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.rv-aut-ps__h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--rv-navy);
  margin: 0;
}

.rv-aut-ps__p {
  color: var(--rv-text);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.rv-aut-ps__solution {
  margin-top: auto;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.06), rgba(31, 111, 178, 0.04));
  border-left: 3px solid var(--rv-cta);
  border-radius: 10px;
}

.rv-aut-ps__sol-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rv-cta);
  margin-bottom: 6px;
}

.rv-aut-ps__solution p {
  margin: 0;
  color: var(--rv-navy);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .rv-aut-ps-wrap { padding: 64px 0 56px; }
  .rv-aut-ps__grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Sección 6.4 — Comparativa "vs" (diferenciación / posicionamiento) ----- */
.rv-aut-vs-wrap {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--rv-gray) 0%, #ffffff 100%);
}

.rv-aut-vs__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 40px;
}

.rv-aut-vs__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rv-blue);
  background: rgba(31, 111, 178, 0.08);
  border: 1px solid rgba(31, 111, 178, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.rv-aut-vs__head h2 {
  color: var(--rv-navy);
  margin: 0 0 12px;
}

.rv-aut-vs__lead {
  color: var(--rv-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.rv-aut-vs__table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 53, 88, 0.10);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(11, 53, 88, 0.10);
  overflow: hidden;
}

.rv-aut-vs__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}

.rv-aut-vs__table thead th {
  background: var(--rv-navy);
  color: #fff;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  padding: 16px 18px;
  letter-spacing: 0.01em;
}

.rv-aut-vs__table thead .rv-aut-vs__col-rv {
  background: linear-gradient(135deg, var(--rv-cta), #4ea6ff);
}

.rv-aut-vs__table tbody tr {
  border-top: 1px solid rgba(11, 53, 88, 0.08);
  transition: background 0.25s ease;
}

.rv-aut-vs__table tbody tr:hover {
  background: rgba(31, 111, 178, 0.04);
}

.rv-aut-vs__table th[scope="row"] {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  color: var(--rv-navy);
  text-align: left;
  padding: 16px 18px;
  width: 28%;
  background: rgba(245, 247, 250, 0.5);
}

.rv-aut-vs__table td {
  padding: 16px 18px;
  color: var(--rv-text);
  vertical-align: top;
}

.rv-aut-vs__table tbody td:last-child {
  color: var(--rv-navy);
  background: rgba(0, 102, 204, 0.04);
}

.rv-aut-vs__note {
  max-width: 880px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--rv-text);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .rv-aut-vs-wrap { padding: 64px 0 56px; }
  .rv-aut-vs__table { font-size: 14px; }
  .rv-aut-vs__table thead th,
  .rv-aut-vs__table th[scope="row"],
  .rv-aut-vs__table td { padding: 12px 12px; }
  .rv-aut-vs__table th[scope="row"] { width: 32%; }
}

/* FAQ — cita externa autorizada (AEAT, Seg. Social) */
.rv-aut-faq__cite {
  color: var(--rv-cta);
  text-decoration: none;
  font-style: normal;
  border-bottom: 1px dashed rgba(0, 102, 204, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
  padding: 0 1px;
}

.rv-aut-faq__cite:hover {
  color: var(--rv-navy);
  border-bottom-color: var(--rv-navy);
}

.rv-aut-faq__cite cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95em;
}

/* Sección 6.5 — FAQ visible (AI Overview / E-E-A-T) ---------------------- */
.rv-aut-faq-wrap {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, var(--rv-gray) 100%);
}

.rv-aut-faq__head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.rv-aut-faq__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rv-blue);
  background: rgba(31, 111, 178, 0.08);
  border: 1px solid rgba(31, 111, 178, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.rv-aut-faq__title {
  color: var(--rv-navy);
  margin: 0 0 12px;
}

.rv-aut-faq__lead {
  color: var(--rv-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.rv-aut-faq__list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rv-aut-faq__item {
  background: #fff;
  border: 1px solid rgba(11, 53, 88, 0.08);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(11, 53, 88, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.rv-aut-faq__item:hover {
  box-shadow: 0 14px 32px rgba(11, 53, 88, 0.10);
  border-color: rgba(31, 111, 178, 0.22);
  transform: translateY(-1px);
}

.rv-aut-faq__details {
  width: 100%;
}

.rv-aut-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 20px 22px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--rv-navy);
  list-style: none;
  user-select: none;
}

.rv-aut-faq__q::-webkit-details-marker { display: none; }
.rv-aut-faq__q::marker { content: ''; }

.rv-aut-faq__q-text { flex: 1; }

.rv-aut-faq__q-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(31, 111, 178, 0.08);
  color: var(--rv-blue);
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.3s ease;
}

.rv-aut-faq__details[open] .rv-aut-faq__q-ico {
  transform: rotate(180deg);
  background: var(--rv-cta);
  color: #fff;
}

.rv-aut-faq__a {
  padding: 0 22px 22px 22px;
  color: var(--rv-text);
  font-size: 15px;
  line-height: 1.7;
  animation: rvAutFaqIn 0.35s ease;
}

.rv-aut-faq__a p { margin: 0; }

@keyframes rvAutFaqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .rv-aut-faq-wrap { padding: 56px 0 48px; }
  .rv-aut-faq__q { padding: 16px 18px; font-size: 15px; }
  .rv-aut-faq__a { padding: 0 18px 18px; font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .rv-aut-faq__a { animation: none; }
  .rv-aut-faq__details[open] .rv-aut-faq__q-ico { transition: none; }
}

/* Sección 7 — CTA final con form embebido + 4 mini-bloques --------------- */
.rv-aut-final-cta-wrap {
  padding: 56px 0 72px;
}

.rv-aut-final-cta {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 64px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 36px;
  isolation: isolate;
  background: radial-gradient(120% 110% at 0% 0%, #144a85 0%, #0B3558 55%, #061f3a 100%);
  box-shadow: 0 30px 80px rgba(11, 53, 88, 0.30);
}

.rv-aut-final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.rv-aut-final-cta__bg::before,
.rv-aut-final-cta__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.rv-aut-final-cta__bg::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, #4ea6ff 0%, transparent 70%);
  animation: rvAutPulse 11s ease-in-out infinite;
}

.rv-aut-final-cta__bg::after {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, #1F6FB2 0%, transparent 70%);
}

.rv-aut-final-cta__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.rv-aut-final-cta__h2 {
  color: #fff;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.18;
  margin: 0 0 16px;
}

.rv-aut-final-cta__p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 12px;
}

.rv-aut-final-cta__p:last-child {
  margin-bottom: 0;
}

.rv-aut-final-cta__form {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.rv-aut-final-cta__alert {
  margin: 0 0 16px;
  text-align: center;
}

.rv-aut-final-cta__form-panel {
  background: #fff;
  border-radius: 18px;
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.rv-aut-final-cta__form-panel .rv-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rv-aut-final-cta__form-panel .rv-form__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.rv-aut-final-cta__form-panel .rv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.rv-aut-final-cta__form-panel .rv-field label {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--rv-navy);
}

.rv-aut-final-cta__form-panel .rv-field input,
.rv-aut-final-cta__form-panel .rv-field textarea,
.rv-aut-final-cta__form-panel .rv-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #d6dee8;
  border-radius: 10px;
  font: inherit;
  color: var(--rv-navy);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.rv-aut-final-cta__form-panel .rv-field input:focus,
.rv-aut-final-cta__form-panel .rv-field textarea:focus,
.rv-aut-final-cta__form-panel .rv-field select:focus {
  outline: none;
  border-color: var(--rv-cta);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.18);
}

.rv-aut-final-cta__form-panel .rv-field textarea {
  min-height: 120px;
  resize: vertical;
}

.rv-aut-final-cta__form-panel .rv-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}

.rv-aut-final-cta__form-panel .rv-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rv-cta);
  flex-shrink: 0;
}

.rv-aut-final-cta__form-panel .rv-check label {
  font-weight: 500;
  color: var(--rv-text);
  line-height: 1.5;
}

.rv-aut-final-cta__form-panel .rv-btn--primary {
  width: 100%;
  border: none;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 6px;
}

.rv-aut-final-cta__tiles {
  list-style: none;
  margin: 8px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rv-aut-final-cta__tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.rv-aut-final-cta__tile:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}

.rv-aut-final-cta__tile-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #cfe6ff;
  flex-shrink: 0;
}

.rv-aut-final-cta__tile-label {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: #fff;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .rv-aut-final-cta {
    padding: 36px 22px;
    gap: 26px;
  }
  .rv-aut-final-cta__tiles {
    grid-template-columns: 1fr 1fr;
  }
  .rv-aut-final-cta__form-panel .rv-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .rv-aut-final-cta__tiles {
    grid-template-columns: 1fr;
  }
}

/* Sección 8 — Explore --------------------------------------------------- */
.rv-aut-explore {
  padding: 56px 0 96px;
}

.rv-aut-explore__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.rv-aut-explore__head h2 {
  color: var(--rv-navy);
  margin: 0 0 10px;
}

.rv-aut-explore__lead {
  color: var(--rv-text);
  line-height: 1.6;
  margin: 0;
}

.rv-aut-explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.rv-aut-explore-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e3eaf3;
  text-decoration: none;
  color: var(--rv-navy);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 22px rgba(11, 53, 88, 0.05);
}

.rv-aut-explore-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(11, 53, 88, 0.12);
  border-color: #cfe2f5;
}

.rv-aut-explore-card__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--rv-cta);
}

.rv-aut-explore-card__title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
}

.rv-aut-explore-card__go {
  margin-top: 6px;
  font-size: 13px;
  color: var(--rv-text);
}

.rv-aut-explore-card--accent {
  background: linear-gradient(135deg, var(--rv-navy), var(--rv-blue));
  color: #fff;
  border-color: transparent;
}

.rv-aut-explore-card--accent .rv-aut-explore-card__title {
  color: #fff;
}

.rv-aut-explore-card--accent .rv-aut-explore-card__go,
.rv-aut-explore-card--accent .rv-aut-explore-card__kicker {
  color: #cfe6ff;
}

/* Reduced motion -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .rv-aut-hero__bg::after,
  .rv-aut-final-cta__bg::before,
  .rv-aut-hub__spoke {
    animation: none !important;
  }
  .rv-aut-include-card:hover,
  .rv-aut-pillar:hover,
  .rv-aut-explore-card:hover,
  .rv-aut-value-card:hover,
  .rv-aut-final-cta__tile:hover {
    transform: none;
  }
  .rv-aut-hero__media-frame:hover .rv-aut-hero__img {
    transform: none;
  }
}

/* Asesoría contable Sevilla — hub diagram photo + timeline extras --------- */
.rv-fis-hub__diagram-photo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.rv-fis-hub__diagram-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  transform: scale(1.04);
}

.rv-fis-svc-extras {
  margin-top: 22px;
}

.rv-fis-svc-extras__lead {
  font-weight: 600;
  color: var(--rv-navy);
  margin: 0 0 12px;
  line-height: 1.55;
}

.rv-fis-svc-extras__list {
  margin: 0 0 4px;
}

.rv-fis-svc-tail {
  margin-top: 16px;
  color: var(--rv-text);
  line-height: 1.65;
}

/* Contable — integración + por qué elegir (dos columnas premium) ---------- */
.rv-co-intwhy {
  position: relative;
  overflow: hidden;
}

.rv-co-intwhy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.rv-co-intwhy__grid--single {
  grid-template-columns: 1fr;
  max-width: 52rem;
  margin-inline: auto;
}

.rv-co-intwhy__panel {
  position: relative;
  isolation: isolate;
  padding: clamp(26px, 3.5vw, 36px) clamp(22px, 3vw, 32px);
  border-radius: calc(var(--rv-radius) + 4px);
  background: #fff;
  border: 1px solid rgba(226, 235, 244, 0.95);
  box-shadow:
    0 16px 44px rgba(11, 53, 88, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.3s ease;
}

.rv-co-intwhy__panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: calc(var(--rv-radius) + 4px) calc(var(--rv-radius) + 4px) 0 0;
  background: linear-gradient(90deg, var(--rv-navy) 0%, var(--rv-blue) 45%, var(--rv-cta) 100%);
  z-index: 1;
  transform-origin: left;
  transform: scaleX(0.15);
  opacity: 0;
}

.rv-co-intwhy__panel.is-visible::before {
  animation: rv-co-intwhy-bar 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.rv-co-intwhy__panel--left {
  background:
    linear-gradient(165deg, rgba(234, 244, 251, 0.65) 0%, #fff 38%, #fff 100%);
}

.rv-co-intwhy__panel--right::after {
  content: '';
  position: absolute;
  width: min(280px, 70%);
  height: min(280px, 55%);
  right: -12%;
  top: -18%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: rv-co-intwhy-glow 9s ease-in-out infinite;
}

.rv-co-intwhy__panel--left::after {
  content: '';
  position: absolute;
  width: min(240px, 65%);
  height: min(240px, 50%);
  left: -14%;
  bottom: -16%;
  background: radial-gradient(circle at 70% 70%, rgba(11, 53, 88, 0.1), transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: rv-co-intwhy-glow 11s ease-in-out infinite reverse;
}

.rv-co-intwhy__panel:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(11, 53, 88, 0.12),
    0 0 0 1px rgba(0, 102, 204, 0.12) inset;
  border-color: rgba(0, 102, 204, 0.22);
}

.rv-co-intwhy__eyebrow {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rv-cta);
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.12);
}

.rv-co-intwhy__title {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.25;
  color: var(--rv-navy);
}

.rv-co-intwhy__body {
  position: relative;
  z-index: 2;
}

.rv-co-intwhy__body p {
  margin: 0 0 0.95rem;
  color: var(--rv-text);
  line-height: 1.65;
  font-size: 0.96rem;
}

.rv-co-intwhy__body p:last-child {
  margin-bottom: 0;
}

.rv-co-intwhy__lead {
  font-weight: 600;
  color: var(--rv-navy);
}

.rv-co-intwhy__checks {
  margin-top: 0.35rem;
}

@keyframes rv-co-intwhy-bar {
  from {
    transform: scaleX(0.12);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes rv-co-intwhy-glow {
  0%,
  100% {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate3d(0, 6px, 0) scale(1.04);
  }
}

@media (max-width: 900px) {
  .rv-co-intwhy__grid:not(.rv-co-intwhy__grid--single) {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-co-intwhy__panel::before {
    animation: none;
    transform: scaleX(1);
    opacity: 1;
  }

  .rv-co-intwhy__panel.is-visible::before {
    animation: none;
  }

  .rv-co-intwhy__panel--left::after,
  .rv-co-intwhy__panel--right::after {
    animation: none;
  }

  .rv-co-intwhy__panel:hover {
    transform: none;
  }
}

/* —— Página contacto (/contacto/) —— */
.rv-fis-hero-mockup--contact .rv-fis-hero-mockup__black-scrim {
  background: rgba(0, 0, 0, 0.5);
}

.rv-fis-hero-mockup--contact .rv-fis-hero-mockup__shade {
  background: linear-gradient(
    92deg,
    rgba(11, 53, 88, 0.92) 0%,
    rgba(11, 53, 88, 0.55) 32%,
    rgba(11, 53, 88, 0.12) 52%,
    rgba(0, 20, 45, 0.08) 68%,
    rgba(0, 20, 45, 0.22) 100%
  );
}

.rv-fis-hero-mockup--contact .rv-fis-hero-mockup__img {
  object-position: center right;
}

.rv-contact-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8ec8ff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.rv-contact-hero__body {
  margin: 0 0 18px;
  max-width: min(40rem, 100%);
}

.rv-contact-hero__body p {
  margin: 0 0 0.75rem;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.rv-contact-hero__body p:last-child {
  margin-bottom: 0;
}

.rv-contact-hero-value-wrap {
  position: relative;
  z-index: 4;
  margin-top: clamp(-56px, -7vw, -40px);
  margin-bottom: clamp(8px, 2vw, 16px);
}

.rv-contact-hero-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
}

.rv-contact-hero-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: calc(var(--rv-radius) + 2px);
  background: rgba(11, 53, 88, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease;
}

.rv-contact-hero-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
}

.rv-contact-hero-pill__ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rv-contact-hero-pill__txt {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .rv-contact-hero-pills {
    grid-template-columns: 1fr;
  }
}

.rv-contact-split-section {
  padding-top: clamp(72px, 10vw, 96px);
}

.rv-contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.rv-contact-split--gap {
  align-items: stretch;
}

@media (max-width: 900px) {
  .rv-contact-split {
    grid-template-columns: 1fr;
  }
}

.rv-contact-eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rv-cta);
}

.rv-contact-eyebrow--center {
  text-align: center;
}

.rv-contact-prose p {
  margin: 0 0 1rem;
  color: var(--rv-text);
  line-height: 1.65;
}

.rv-contact-info-tint {
  margin-top: clamp(20px, 3vw, 28px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--rv-radius);
  background: linear-gradient(135deg, rgba(234, 244, 251, 0.95), #fff);
  border: 1px solid rgba(0, 102, 204, 0.12);
  box-shadow: 0 12px 32px rgba(11, 53, 88, 0.06);
}

.rv-contact-info-tint__ico {
  flex: 0 0 auto;
  color: var(--rv-cta);
}

.rv-contact-info-tint p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--rv-text);
}

.rv-contact-quick-card {
  height: 100%;
  background: #fff;
  border-radius: calc(var(--rv-radius) + 4px);
  box-shadow: 0 16px 44px rgba(11, 53, 88, 0.1);
  border: 1px solid #e6ecf2;
  padding: 8px 0;
}

.rv-contact-quick-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rv-contact-quick-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #eef3f8;
}

.rv-contact-quick-card__row:last-child {
  border-bottom: 0;
}

.rv-contact-quick-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rv-navy);
  margin-bottom: 4px;
}

.rv-contact-quick-card__val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rv-navy);
  text-decoration: none;
}

.rv-contact-quick-card__val:hover {
  color: var(--rv-cta);
}

.rv-contact-quick-card__val--multiline {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: pre-line;
}

.rv-contact-quick-card__badge {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--rv-cta);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.rv-contact-quick-card__badge--wa {
  background: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.rv-contact-map-frame {
  border-radius: calc(var(--rv-radius) + 4px);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(11, 53, 88, 0.1);
  border: 1px solid #e2ebf4;
  min-height: 320px;
  background: #e8eef5;
}

.rv-contact-map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 48vw, 440px);
  border: 0;
}

.rv-contact-lead {
  margin: 0 0 1.25rem;
  color: var(--rv-text);
  line-height: 1.65;
}

.rv-contact-visit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rv-contact-visit-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--rv-radius-sm);
  background: #fff;
  border: 1px solid #e8eef4;
  box-shadow: 0 6px 18px rgba(11, 53, 88, 0.05);
}

.rv-contact-visit-list__ico {
  color: var(--rv-cta);
  margin-top: 2px;
}

.rv-contact-visit-list__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rv-navy);
  margin-bottom: 4px;
}

.rv-contact-visit-list__txt {
  margin: 0;
  font-size: 0.95rem;
  color: var(--rv-text);
  line-height: 1.5;
}

.rv-contact-visit-list__check {
  color: var(--rv-cta);
  margin-top: 4px;
}

.rv-contact-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.rv-card__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--rv-text);
  line-height: 1.55;
}

.rv-contact-why {
  padding: clamp(72px, 9vw, 96px) 0;
  background: radial-gradient(120% 100% at 0% 0%, #144a85 0%, #0b3558 42%, #061f3a 100%);
  color: #fff;
}

.rv-contact-why__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.rv-contact-why__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fd0ff;
}

.rv-contact-why__h2 {
  color: #fff;
  margin: 0;
}

.rv-contact-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 960px) {
  .rv-contact-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .rv-contact-why__grid {
    grid-template-columns: 1fr;
  }
}

.rv-contact-why-card {
  padding: 22px 20px;
  border-radius: var(--rv-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease;
}

.rv-contact-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.rv-contact-why-card__ico {
  display: flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.rv-contact-why-card .rv-h3 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.rv-contact-why-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.rv-contact-form-split-wrap {
  padding: clamp(64px, 8vw, 96px) 0;
  background: linear-gradient(180deg, #f5f8fb 0%, #fff 40%);
}

.rv-contact-form-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-radius: calc(var(--rv-radius) + 6px);
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(11, 53, 88, 0.12);
}

@media (max-width: 900px) {
  .rv-contact-form-split {
    grid-template-columns: 1fr;
  }
}

.rv-contact-form-split__aside {
  position: relative;
  min-height: 280px;
  color: #fff;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: stretch;
}

.rv-contact-form-split__aside-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 53, 88, 0.92) 0%, rgba(11, 53, 88, 0.78) 45%, rgba(6, 31, 58, 0.88) 100%),
    url('../img/experiencia-asesoria-sevilla.webp') center / cover no-repeat;
}

.rv-contact-form-split__aside-inner {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}

.rv-contact-form-split__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fd0ff;
}

.rv-contact-form-split__aside .rv-h2 {
  color: #fff;
  margin: 0 0 14px;
}

.rv-contact-form-split__aside p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.rv-list-check--on-dark li {
  color: rgba(255, 255, 255, 0.92);
}

.rv-list-check--on-dark li::before {
  color: #9fe0c8;
}

.rv-contact-form-split__panel {
  background: #fff;
  padding: clamp(24px, 3vw, 32px);
}

.rv-contact-form-split__panel .rv-form {
  margin: 0;
}

.rv-contact-faq-cols .rv-aut-faq__list {
  display: block;
}

@media (min-width: 900px) {
  .rv-contact-faq-cols .rv-aut-faq__list {
    columns: 2;
    column-gap: 20px;
  }

  .rv-contact-faq-cols .rv-aut-faq__item {
    break-inside: avoid;
    margin-bottom: 16px;
  }
}

.rv-contact-explore {
  background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
}

.rv-contact-explore__grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.rv-contact-explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 140px;
  padding: 20px 18px 44px;
  border-radius: calc(var(--rv-radius) + 2px);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(11, 53, 88, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  background-color: #1a2f45;
  background-image:
    linear-gradient(135deg, rgba(11, 53, 88, 0.55), rgba(6, 31, 58, 0.82)),
    var(--rv-ex-thumb);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.rv-contact-explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(11, 53, 88, 0.18);
}

.rv-contact-explore-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.rv-contact-explore-card__kicker,
.rv-contact-explore-card__title,
.rv-contact-explore-card__go {
  position: relative;
  z-index: 1;
}

.rv-contact-explore-card__kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fd0ff;
}

.rv-contact-explore-card__title {
  font-family: var(--rv-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #fff;
}

.rv-contact-explore-card__go {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 204, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .rv-contact-hero-pill:hover,
  .rv-contact-why-card:hover,
  .rv-contact-explore-card:hover {
    transform: none;
  }
}
