/*
Theme Name: Raphael Valencia
Author: Migración WordPress
Description: Tema autónomo para el sitio de Raphael Valencia. Incluye páginas, blog, menú, medios locales y compatibilidad con Elementor.
Version: 1.3.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: raphael-valencia
*/

:root {
  --rv-red: #ed0000;
  --rv-red-dark: #b90000;
  --rv-ink: #161616;
  --rv-muted: #656565;
  --rv-paper: #ffffff;
  --rv-soft: #f5f5f3;
  --rv-line: #dedede;
  --rv-radius: 18px;
  --rv-shadow: 0 18px 50px rgba(0, 0, 0, .09);
  --rv-max: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--rv-ink);
  background: var(--rv-paper);
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--rv-red); }
button, input { font: inherit; }
.rv-container { width: min(calc(100% - 40px), var(--rv-max)); margin-inline: auto; }
.rv-narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link:focus { clip: auto; width: auto; height: auto; margin: 12px; padding: 10px 14px; z-index: 99999; background: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.06); backdrop-filter: blur(14px);
}
.header-inner { min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-branding { flex: 0 0 220px; }
.site-branding img { width: 210px; height: 84px; object-fit: contain; object-position: left center; }
.primary-nav ul { display: flex; align-items: center; gap: clamp(20px, 3vw, 50px); margin: 0; padding: 0; list-style: none; }
.primary-nav a { display: block; padding: 18px 0; font-size: 15px; white-space: nowrap; border-bottom: 1px solid transparent; }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav a:hover { color: var(--rv-ink); border-color: var(--rv-ink); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 27px; height: 2px; margin: 6px auto; background: var(--rv-ink); transition: .2s ease; }

.rv-hero { position: relative; min-height: min(740px, calc(100vh - 116px)); overflow: hidden; background: #f7f8fa; }
.rv-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .33; }
.rv-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.76) 50%, rgba(255,255,255,.15) 100%); }
.rv-hero-inner { position: relative; z-index: 2; min-height: inherit; display: grid; align-content: center; grid-template-columns: 1fr .8fr; gap: 48px; padding-block: 70px; }
.rv-hero-copy { max-width: 720px; }
.rv-hero-title-image { width: min(660px, 94%); margin-bottom: 20px; }
.rv-eyebrow { margin: 0 0 12px; color: var(--rv-red); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.rv-hero h1 { margin: 0; font-size: clamp(50px, 7vw, 105px); line-height: .88; letter-spacing: -.055em; color: var(--rv-red); text-transform: uppercase; }
.rv-hero-lead { max-width: 620px; margin: 22px 0 28px; font-size: clamp(17px, 1.8vw, 22px); color: #2f2f2f; }
.rv-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.rv-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px; border: 1px solid var(--rv-red); background: var(--rv-red); color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; transition: .2s ease; }
.rv-button:hover { background: var(--rv-red-dark); border-color: var(--rv-red-dark); color: #fff; transform: translateY(-1px); }
.rv-button--ghost { background: transparent; color: var(--rv-red); }
.rv-button--ghost:hover { color: #fff; }
.rv-marquee { overflow: hidden; background: var(--rv-red); color: #fff; font-weight: 900; font-size: clamp(20px, 2.2vw, 32px); line-height: 1; white-space: nowrap; text-transform: uppercase; }
.rv-marquee-track { display: inline-flex; gap: 42px; min-width: 200%; padding: 18px 0; animation: rv-marquee 24s linear infinite; }
@keyframes rv-marquee { to { transform: translateX(-50%); } }

.rv-section { padding: clamp(72px, 9vw, 128px) 0; }
.rv-section--soft { background: var(--rv-soft); }
.rv-section--dark { background: #121212; color: #fff; }
.rv-section--video { position: relative; overflow: hidden; color: #fff; }
.rv-section--video > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rv-section--video::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.rv-section--video > .rv-container { position: relative; z-index: 2; }
.rv-section-title { max-width: 850px; margin: 0 0 50px; font-size: clamp(36px, 5vw, 70px); line-height: 1.02; letter-spacing: -.035em; text-transform: uppercase; }
.rv-section-title span { color: var(--rv-red); }
.rv-section-intro { max-width: 760px; margin: -28px 0 52px; font-size: 18px; color: var(--rv-muted); }
.rv-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.rv-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.rv-card { padding: 34px; background: #fff; border: 1px solid var(--rv-line); border-radius: var(--rv-radius); }
.rv-card--dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.rv-card-icon { width: 54px; height: 54px; object-fit: contain; margin-bottom: 26px; }
.rv-card h2, .rv-card h3 { margin: 0 0 14px; font-size: 21px; line-height: 1.2; text-transform: uppercase; }
.rv-card p { margin: 0; color: var(--rv-muted); }
.rv-card--dark p { color: rgba(255,255,255,.72); }
.rv-about { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(45px, 8vw, 100px); }
.rv-about-photo { position: relative; min-height: 610px; overflow: hidden; border-radius: 2px; background: #eee; box-shadow: var(--rv-shadow); }
.rv-about-photo img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: center top; }
.rv-about-copy > p { font-size: 18px; color: var(--rv-muted); }
.rv-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 34px 0; }
.rv-fact { padding: 20px; border-left: 4px solid var(--rv-red); background: var(--rv-soft); }
.rv-fact strong { display: block; font-size: 18px; line-height: 1.2; }
.rv-resi { display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; gap: 50px; }
.rv-resi-image { min-height: 560px; width: 100%; object-fit: cover; border-radius: var(--rv-radius); }
.rv-number-card { position: relative; padding: 26px 20px 26px 74px; border-bottom: 1px solid rgba(255,255,255,.18); }
.rv-number-card:last-child { border-bottom: 0; }
.rv-number { position: absolute; left: 0; top: 22px; color: var(--rv-red); font-size: 42px; font-weight: 900; line-height: 1; }
.rv-number-card h3 { margin: 0 0 6px; font-size: 19px; }
.rv-number-card p { margin: 0; color: rgba(255,255,255,.7); }
.rv-focus-card { position: relative; min-height: 430px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: #222; }
.rv-focus-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; transition: transform .5s ease; }
.rv-focus-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.02)); }
.rv-focus-card:hover img { transform: scale(1.04); }
.rv-focus-card-copy { position: relative; z-index: 2; padding: 30px; }
.rv-focus-card h3 { margin: 0 0 12px; font-size: 28px; line-height: 1.05; text-transform: uppercase; }
.rv-focus-card p { margin: 0; color: rgba(255,255,255,.82); }

.rv-page-hero { padding: clamp(64px, 8vw, 110px) 0 50px; border-bottom: 1px solid var(--rv-line); }
.rv-page-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.rv-page-hero h1 span { color: var(--rv-red); }
.rv-candidate { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(42px, 8vw, 100px); align-items: start; }
.rv-candidate img { width: 100%; max-height: 850px; object-fit: cover; object-position: top; box-shadow: var(--rv-shadow); }
.rv-candidate-copy h2 { margin: 0 0 18px; font-size: clamp(34px, 4vw, 58px); line-height: 1.05; text-transform: uppercase; }
.rv-candidate-copy h3 { margin: 0 0 30px; color: var(--rv-red); font-size: 15px; letter-spacing: .12em; text-transform: uppercase; }
.rv-candidate-copy p { margin: 0 0 24px; font-size: 18px; color: var(--rv-muted); }
.rv-empty-page { min-height: 52vh; }

.rv-documents { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.rv-document { background: #fff; border: 1px solid var(--rv-line); transition: .2s ease; }
.rv-document:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); color: inherit; }
.rv-document img { width: 100%; aspect-ratio: .71; object-fit: cover; object-position: top; }
.rv-document-copy { padding: 20px; }
.rv-document-copy strong { display: block; line-height: 1.3; }
.rv-document-copy span { color: var(--rv-red); font-size: 13px; font-weight: 700; }

.rv-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.rv-post-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--rv-line); background: #fff; transition: .2s ease; }
.rv-post-card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); color: inherit; }
.rv-post-card-image { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.rv-post-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .45s ease; }
.rv-post-card:hover img { transform: scale(1.025); }
.rv-post-card-copy { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.rv-post-card h2 { margin: 0 0 14px; font-size: 22px; line-height: 1.18; }
.rv-post-card p { margin: 0 0 22px; color: var(--rv-muted); }
.rv-post-meta { margin-top: auto; color: #8b8b8b; font-size: 13px; }
.rv-single { padding: clamp(60px, 8vw, 110px) 0; }
.rv-single h1 { margin: 0 0 18px; font-size: clamp(42px, 6vw, 74px); line-height: 1.04; letter-spacing: -.04em; }
.rv-single-meta { margin-bottom: 34px; color: var(--rv-muted); }
.rv-single-image { width: min(100%, 820px); max-height: 950px; margin: 0 auto 45px; object-fit: contain; }
.rv-single-content { font-size: 19px; }
.rv-single-content p { margin: 0 0 24px; }
.rv-related { padding: 70px 0; background: var(--rv-soft); }
.rv-related h2 { margin: 0 0 32px; font-size: 34px; text-transform: uppercase; }

.rv-signup { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.rv-signup h2 { margin: 0 0 16px; font-size: clamp(38px, 5vw, 66px); line-height: 1; text-transform: uppercase; }
.rv-signup p { margin: 0; color: rgba(255,255,255,.75); font-size: 18px; }
.rv-form { display: grid; gap: 12px; }
.rv-form-row { display: flex; gap: 10px; }
.rv-form input[type="email"] { min-width: 0; flex: 1; height: 52px; padding: 0 17px; border: 1px solid rgba(255,255,255,.35); border-radius: 0; background: rgba(255,255,255,.08); color: #fff; }
.rv-form input::placeholder { color: rgba(255,255,255,.6); }
.rv-consent { display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,.7); font-size: 12px; }
.rv-form-message { padding: 12px 14px; border-left: 4px solid #fff; background: rgba(255,255,255,.1); }

.site-footer { padding: 50px 0 28px; border-top: 1px solid var(--rv-line); background: #fff; }
.footer-top { display: grid; grid-template-columns: 260px 1fr auto; gap: 55px; align-items: center; }
.footer-logo { width: 225px; height: 100px; object-fit: contain; object-position: left center; }
.footer-contact { margin: 0; color: var(--rv-muted); font-size: 14px; }
.footer-bottom { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--rv-line); color: #777; font-size: 12px; }

.entry-content > *:first-child { margin-top: 0; }
.entry-content a { color: var(--rv-red); text-decoration: underline; }
.entry-content img { height: auto; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 46px; }
.pagination .page-numbers { padding: 8px 13px; border: 1px solid var(--rv-line); }
.pagination .current { background: var(--rv-red); border-color: var(--rv-red); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 1020px) {
  .header-inner { min-height: 92px; }
  .site-branding { flex-basis: 180px; }
  .site-branding img { width: 170px; height: 70px; }
  .nav-toggle { display: block; }
  .primary-nav { display: none; position: absolute; inset: 92px 0 auto; padding: 16px 24px 28px; background: #fff; border-bottom: 1px solid var(--rv-line); box-shadow: 0 18px 35px rgba(0,0,0,.08); }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: block; }
  .primary-nav a { padding: 13px 0; }
  .rv-hero { min-height: 680px; }
  .rv-hero-inner { grid-template-columns: 1fr; }
  .rv-grid-3, .rv-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-about, .rv-resi, .rv-candidate { grid-template-columns: 1fr; }
  .rv-about-photo { min-height: 520px; }
  .rv-documents { gap: 18px; }
  .footer-top { grid-template-columns: 220px 1fr; }
  .footer-top .rv-button { grid-column: 2; width: max-content; }
}
@media (max-width: 680px) {
  body.admin-bar .site-header { top: 46px; }
  .rv-container, .rv-narrow { width: min(calc(100% - 28px), var(--rv-max)); }
  .rv-hero { min-height: 600px; }
  .rv-hero::after { background: rgba(255,255,255,.84); }
  .rv-hero-inner { padding-block: 55px; }
  .rv-actions, .rv-form-row { flex-direction: column; }
  .rv-button { width: 100%; }
  .rv-grid-3, .rv-grid-4, .rv-blog-grid, .rv-documents, .rv-signup { grid-template-columns: 1fr; }
  .rv-facts { grid-template-columns: 1fr; }
  .rv-card { padding: 27px; }
  .rv-about-photo, .rv-about-photo img { min-height: 450px; }
  .rv-resi-image { min-height: 400px; }
  .rv-focus-card { min-height: 360px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-top .rv-button { grid-column: auto; width: 100%; }
}

/* Portada fiel al sitio Wix consultado el 22/07/2026. */
.rv-wix-home {
  overflow: hidden;
  color: #323131;
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
}
.rv-wix-home h1,
.rv-wix-home h2,
.rv-wix-home h3,
.rv-wix-home p { margin-top: 0; }
.rv-wix-hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  background: #fafbfc;
}
.rv-wix-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rv-wix-hero-stage { position: relative; height: 680px; }
.rv-wix-hero-kicker {
  position: absolute;
  z-index: 3;
  top: 82px;
  left: 93px;
  margin: 0;
  color: #575555;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: .115em;
  text-transform: uppercase;
}
.rv-wix-hero-kicker strong { font-weight: 700; }
.rv-wix-hero-name {
  position: absolute;
  z-index: 2;
  top: 123px;
  left: -31px;
  width: 697px;
  height: 228px;
  object-fit: contain;
}
.rv-wix-hero-role {
  position: absolute;
  z-index: 3;
  top: 369px;
  left: 8px;
  margin: 0;
  color: #575555;
  font-family: Anton, Impact, sans-serif;
  font-size: 31.6px;
  font-weight: 400;
  line-height: 1.1;
}
.rv-wix-hero-lead {
  position: absolute;
  z-index: 3;
  top: 430px;
  left: 8px;
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}
.rv-wix-hero-actions {
  position: absolute;
  z-index: 4;
  top: 534px;
  left: 8px;
  display: flex;
  gap: 30px;
}
.rv-wix-button {
  display: inline-flex;
  min-width: 192px;
  min-height: 69px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #ec0000;
  color: #e50000;
  font-family: "Wix Madefor Text", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.18;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}
.rv-wix-button--solid { background: #ec0000; color: #fff; }
.rv-wix-button:hover { background: #b90000; border-color: #b90000; color: #fff; }
.rv-wix-hero-person {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: -2px;
  width: 542px;
  height: 651px;
  object-fit: cover;
  object-position: right top;
}
.rv-wix-marquee {
  position: relative;
  z-index: 5;
  height: 74px;
  overflow: hidden;
  background: #ff0001;
  color: #fff;
  white-space: nowrap;
}
.rv-wix-marquee-track {
  display: inline-flex;
  min-width: max-content;
  height: 74px;
  align-items: center;
  gap: 54px;
  animation: rv-wix-marquee 28s linear infinite;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.rv-wix-marquee-track span { display: inline-block; }
.rv-wix-marquee-track b { display: inline-block; font-size: 48px; line-height: 1; transform: rotate(12deg); }
@keyframes rv-wix-marquee { to { transform: translateX(-33.333%); } }
.rv-wix-pillars {
  min-height: 313px;
  padding: 81px 0 60px;
  background: #f5f5f5;
}
.rv-wix-columns-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 79px;
}
.rv-wix-pillars article { padding: 0 24px; }
.rv-wix-pillars h2,
.rv-wix-future-points h3 {
  margin: 0 0 15px;
  color: #323131;
  font-family: Anton, Impact, sans-serif;
  font-size: 25.3px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}
.rv-wix-pillars p,
.rv-wix-future-points p {
  margin: 0;
  font-size: 17px;
  line-height: 1.27;
}
.rv-wix-future {
  position: relative;
  height: 727px;
  overflow: hidden;
}
.rv-wix-future-video,
.rv-wix-future-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.rv-wix-future-video { object-fit: cover; }
.rv-wix-future-overlay { background: rgba(255,255,255,.86); }
.rv-wix-future-content { position: relative; z-index: 2; padding-top: 73px; }
.rv-wix-future-content > h2 {
  margin: 0 0 27px 37px;
  font-family: Anton, Impact, sans-serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.rv-wix-future-intro {
  width: 790px;
  margin: 0 0 48px 37px;
  color: #777;
  font-size: 18px;
  line-height: 1.33;
}
.rv-wix-future-points { gap: 93px; padding: 0 53px; }
.rv-wix-future-points article { min-width: 0; }
.rv-wix-future-points img { width: 51px; height: 51px; margin-bottom: 20px; object-fit: contain; }
.rv-wix-future-points h3 { margin-bottom: 21px; text-transform: none; }
.rv-wix-future-points p { color: #777; }
.rv-wix-future-action { margin-top: 42px; text-align: center; }
.rv-wix-future-action .rv-wix-button { min-width: 270px; }
.rv-wix-resi { padding: 65px 0 91px; background: #fff; }
.rv-wix-resi-grid {
  display: grid;
  grid-template-columns: 585px 1fr;
  gap: 51px;
  align-items: start;
}
.rv-wix-resi-image { width: 585px; height: 731px; object-fit: cover; }
.rv-wix-resi-copy { min-height: 731px; padding: 78px 52px 20px; background: #f5f5f5; }
.rv-wix-resi-copy > h2,
.rv-wix-proposal-copy h2 {
  margin: 0 0 39px;
  font-family: Anton, Impact, sans-serif;
  font-size: 44.2px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}
.rv-wix-resi-copy article { margin-bottom: 24px; }
.rv-wix-resi-copy article:last-child { margin-bottom: 0; }
.rv-wix-resi-copy h3 {
  margin: 0 0 8px;
  font-family: Anton, Impact, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}
.rv-wix-resi-copy p,
.rv-wix-proposal-copy p { margin: 0; color: #777; font-size: 17px; line-height: 1.34; }
.rv-wix-proposals { padding: 0 0 49px; background: #fff; }
.rv-wix-proposals-grid {
  display: grid;
  grid-template-columns: 585px 585px;
  gap: 40px 51px;
  align-items: stretch;
}
.rv-wix-proposal-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  background: #f5f5f5;
}
.rv-wix-proposal-copy h2 { margin-bottom: 25px; }
.rv-wix-proposal-copy p { text-align: justify; }
.rv-wix-proposal-image { width: 585px; object-fit: cover; }
.rv-wix-proposal-image--security { height: 343px; object-position: center 48%; }
.rv-wix-proposal-image--green { height: 322px; object-position: center 48%; }
.rv-wix-proposal-image--city { height: 449px; object-position: center 48%; }
.rv-wix-marquee-track--short { animation-duration: 24s; }
.rv-wix-signup { padding: 55px 0 51px; background: #f7f7f7; }
.rv-wix-signup > .rv-container > h2 {
  margin: 0 0 20px;
  color: #403f3f;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 63px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
}
.rv-wix-signup-intro { margin: 0 0 39px; color: #575555; font-size: 19px; line-height: 1.25; }
.rv-wix-form { padding: 24px 25px 27px; background: #f0efed; }
.rv-wix-form h3 {
  margin: 0 0 25px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}
.rv-wix-form-row {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  grid-template-rows: auto 45px;
  gap: 4px 23px;
  align-items: end;
}
.rv-wix-form-row label { grid-column: 1; font-size: 13px; }
.rv-wix-form-row span { display: none; }
.rv-wix-form-row input {
  grid-column: 1;
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid #999;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #323131;
}
.rv-wix-form-row button {
  grid-column: 2;
  grid-row: 2;
  height: 43px;
  border: 0;
  border-radius: 10px;
  background: #2f2d2d;
  color: #fff;
  cursor: pointer;
}
.rv-wix-consent { display: flex; align-items: center; gap: 11px; margin-top: 24px; font-size: 14px; }
.rv-wix-consent input { width: 17px; height: 17px; }
.rv-wix-form-message { margin-bottom: 15px; padding: 10px 13px; border-left: 4px solid #ec0000; background: #fff; }
.home .site-footer { padding: 28px 0 20px; }
.home .footer-top { grid-template-columns: 330px 1fr 320px; gap: 38px; }
.home .footer-logo { width: 300px; height: 92px; }
.home .footer-top .rv-button { width: 225px; min-height: 45px; justify-self: center; }
.home .footer-contact { text-align: center; }
.home .footer-bottom { margin: 0; padding: 0; border: 0; text-align: right; }

@media (max-width: 1100px) {
  .rv-wix-hero-name { left: 0; width: 56vw; height: auto; }
  .rv-wix-hero-person { right: -90px; }
  .rv-wix-hero-kicker { left: 20px; }
  .rv-wix-columns-3 { gap: 30px; }
  .rv-wix-future-points { gap: 38px; padding-inline: 24px; }
  .rv-wix-resi-grid,
  .rv-wix-proposals-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .rv-wix-resi-image,
  .rv-wix-proposal-image { width: 100%; }
  .home .footer-top { grid-template-columns: 250px 1fr; }
  .home .footer-top .rv-button { grid-column: 2; }
  .home .footer-bottom { text-align: left; }
}
@media (max-width: 820px) {
  .rv-wix-hero { height: 720px; }
  .rv-wix-hero-stage { height: 720px; }
  .rv-wix-hero-person { right: -120px; bottom: 0; opacity: .34; }
  .rv-wix-hero-name { top: 160px; left: 0; width: min(94%, 680px); height: auto; }
  .rv-wix-hero-kicker { top: 92px; left: 0; }
  .rv-wix-hero-role { top: 390px; left: 0; }
  .rv-wix-hero-lead { top: 448px; left: 0; }
  .rv-wix-hero-actions { top: 545px; left: 0; }
  .rv-wix-pillars { padding-block: 55px; }
  .rv-wix-columns-3 { grid-template-columns: 1fr; }
  .rv-wix-pillars article { padding: 0; }
  .rv-wix-future { height: auto; min-height: 850px; padding-bottom: 65px; }
  .rv-wix-future-content > h2,
  .rv-wix-future-intro { margin-left: 0; width: auto; }
  .rv-wix-future-content > h2 { font-size: 52px; }
  .rv-wix-future-points { padding: 0; }
  .rv-wix-future-action { text-align: left; }
  .rv-wix-resi-grid,
  .rv-wix-proposals-grid { grid-template-columns: 1fr; }
  .rv-wix-resi-image { height: auto; }
  .rv-wix-resi-copy { min-height: 0; padding: 50px 35px; }
  .rv-wix-proposal-image { height: auto; max-height: 520px; }
  .rv-wix-proposal-copy { min-height: 320px; }
  .rv-wix-signup > .rv-container > h2 { font-size: 48px; }
  .rv-wix-form-row { grid-template-columns: 1fr; grid-template-rows: auto 45px 48px; }
  .rv-wix-form-row button { grid-column: 1; grid-row: 3; margin-top: 10px; }
}
@media (max-width: 560px) {
  .rv-wix-hero { height: 760px; }
  .rv-wix-hero-stage { height: 760px; }
  .rv-wix-hero-kicker { top: 48px; font-size: 13px; }
  .rv-wix-hero-name { top: 135px; }
  .rv-wix-hero-role { top: 320px; font-size: 25px; }
  .rv-wix-hero-lead { top: 375px; font-size: 17px; }
  .rv-wix-hero-actions { top: 465px; right: 0; flex-direction: column; gap: 12px; }
  .rv-wix-button { width: 210px; min-height: 58px; }
  .rv-wix-hero-person { right: -135px; width: 470px; height: 565px; opacity: .27; }
  .rv-wix-marquee,
  .rv-wix-marquee-track { height: 62px; }
  .rv-wix-marquee-track { font-size: 24px; }
  .rv-wix-future { min-height: 1120px; }
  .rv-wix-future-content > h2 { font-size: 45px; }
  .rv-wix-resi { padding-block: 30px; }
  .rv-wix-resi-copy > h2,
  .rv-wix-proposal-copy h2 { font-size: 36px; }
  .rv-wix-proposal-copy { min-height: 360px; padding: 32px; }
  .rv-wix-signup > .rv-container > h2 { font-size: 39px; }
  .rv-wix-signup-intro br { display: none; }
  .rv-wix-form { padding: 22px 18px; }
  .rv-wix-form h3 { font-size: 24px; line-height: 1.3; }
  .home .footer-top { grid-template-columns: 1fr; text-align: center; }
  .home .footer-logo { margin-inline: auto; }
  .home .footer-top .rv-button { grid-column: auto; justify-self: center; }
  .home .footer-bottom { text-align: center; }
}

/* Páginas generadas con widgets estándar de Elementor. */
.elementor .rv-el-section,
.elementor .rv-el-hero,
.elementor .rv-el-page-hero,
.elementor .rv-el-ticker { --padding-top: 0; --padding-bottom: 0; --padding-left: 0; --padding-right: 0; }
.elementor .rv-el-container {
  width: min(calc(100% - 40px), 1220px);
  max-width: 1220px;
  margin-inline: auto;
}
.elementor .rv-el-narrow { max-width: 860px; }
.elementor .rv-el-grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.elementor .rv-el-two-columns {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 51px;
}
.elementor .rv-el-condensed .elementor-heading-title,
.elementor .rv-el-display .elementor-heading-title,
.elementor .rv-el-display-small .elementor-heading-title {
  color: #323131;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.elementor .rv-el-display .elementor-heading-title { font-size: clamp(48px, 5.05vw, 68px); line-height: 1; }
.elementor .rv-el-display-small .elementor-heading-title { font-size: clamp(35px, 3.3vw, 44px); line-height: 1.1; }
.elementor .rv-el-condensed .elementor-heading-title { font-size: 25px; line-height: 1.1; }
.elementor .elementor-widget-text-editor { color: #777; font-family: "Wix Madefor Text", Arial, sans-serif; font-size: 17px; line-height: 1.35; }
.elementor .elementor-widget-text-editor p:last-child { margin-bottom: 0; }

.elementor .rv-el-hero {
  min-height: 680px;
  overflow: hidden;
  background-color: #fafbfc;
  background-position: center;
  background-size: cover;
}
.elementor .rv-el-hero-inner {
  display: grid !important;
  min-height: 680px;
  grid-template-columns: 58% 42%;
  align-items: stretch;
}
.elementor .rv-el-hero-copy { justify-content: center; padding: 70px 0 40px 8px; }
.elementor .rv-el-kicker { margin-left: 85px; }
.elementor .rv-el-kicker .elementor-heading-title {
  color: #575555;
  font-family: "Wix Madefor Text", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.elementor .rv-el-hero-name { margin: 13px 0 12px -39px; }
.elementor .rv-el-hero-name img { width: 697px; max-width: 100%; height: auto; }
.elementor .rv-el-hero-role .elementor-heading-title {
  color: #575555;
  font-family: Anton, Impact, sans-serif;
  font-size: 31.6px;
  font-weight: 400;
  line-height: 1.1;
}
.elementor .rv-el-hero-lead { max-width: 460px; margin-top: 20px; color: #323131; font-size: 19px; line-height: 1.25; }
.elementor .rv-el-buttons { flex-direction: row; gap: 30px; margin-top: 30px; }
.elementor .rv-el-button { width: 192px; }
.elementor .rv-el-button .elementor-button {
  display: flex;
  min-height: 69px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ec0000;
  border-radius: 0;
  background: transparent;
  color: #e50000;
  font-family: "Wix Madefor Text", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.18;
}
.elementor .rv-el-button-solid .elementor-button { background: #ec0000; color: #fff; }
.elementor .rv-el-button .elementor-button:hover { background: #b90000; border-color: #b90000; color: #fff; }
.elementor .rv-el-hero-person-wrap { position: relative; justify-content: flex-end; }
.elementor .rv-el-hero-person { margin-top: auto; }
.elementor .rv-el-hero-person img { width: 542px; height: 651px; object-fit: cover; object-position: right top; }

.elementor .rv-el-ticker { height: 74px; overflow: hidden; background: #ff0001; color: #fff; }
.elementor .rv-el-ticker-text { width: max-content; min-width: max-content; animation: rv-wix-marquee 28s linear infinite; }
.elementor .rv-el-ticker-text .elementor-heading-title {
  height: 74px;
  margin: 0;
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 31px;
  font-weight: 900;
  line-height: 74px;
  white-space: nowrap;
}
.elementor .rv-el-pillars { padding: 81px 0 60px; background: #f5f5f5; }
.elementor .rv-el-pillars .rv-el-grid-3 { gap: 79px; }
.elementor .rv-el-pillar { padding-inline: 24px; }
.elementor .rv-el-pillar .rv-el-condensed { margin-bottom: 15px; }
.elementor .rv-el-pillar .elementor-widget-text-editor { color: #323131; line-height: 1.27; }

.elementor .rv-el-future { position: relative; min-height: 727px; padding: 73px 0 55px; background-position: center; background-size: cover; }
.elementor .rv-el-future::before { content: ""; position: absolute; inset: 0; z-index: 0; background: rgba(255,255,255,.86); pointer-events: none; }
.elementor .rv-el-future > .rv-el-container { position: relative; z-index: 1; }
.elementor .rv-el-future .rv-el-display { margin: 0 0 27px 37px; }
.elementor .rv-el-future-intro { max-width: 790px; margin: 0 0 48px 37px; font-size: 18px; line-height: 1.33; }
.elementor .rv-el-future-grid { gap: 93px; padding-inline: 53px; }
.elementor .rv-el-icon img { width: 51px; height: 51px; object-fit: contain; }
.elementor .rv-el-future-point .rv-el-condensed { margin: 18px 0 18px; }
.elementor .rv-el-future-point .rv-el-condensed .elementor-heading-title { text-transform: none; }
.elementor .rv-el-centered-button { margin: 42px auto 0; width: 270px; }
.elementor .rv-el-centered-button .elementor-button { width: 100%; }

.elementor .rv-el-resi { padding: 65px 0 91px; }
.elementor .rv-el-resi .rv-el-two-columns { grid-template-columns: 585px 1fr; }
.elementor .rv-el-resi-image-wrap,
.elementor .rv-el-resi-image,
.elementor .rv-el-resi-image .elementor-widget-container { height: 731px; }
.elementor .rv-el-resi-image img { width: 100%; height: 731px; object-fit: cover; }
.elementor .rv-el-resi-copy { min-height: 731px; padding: 78px 52px 20px; background: #f5f5f5; }
.elementor .rv-el-resi-copy > .rv-el-display-small { margin-bottom: 39px; }
.elementor .rv-el-resi-item { margin-bottom: 23px; }
.elementor .rv-el-resi-item .rv-el-condensed { margin-bottom: 7px; }
.elementor .rv-el-resi-item .rv-el-condensed .elementor-heading-title { font-size: 19px; }

.elementor .rv-el-proposals { padding-bottom: 49px; }
.elementor .rv-el-proposal-row {
  display: grid !important;
  grid-template-columns: 585px 585px;
  gap: 51px;
  margin-bottom: 40px;
}
.elementor .rv-el-proposal-row:last-child { margin-bottom: 0; }
.elementor .rv-el-proposal-copy { justify-content: center; padding: 50px; background: #f5f5f5; }
.elementor .rv-el-proposal-copy .rv-el-display-small { margin-bottom: 25px; }
.elementor .rv-el-proposal-copy .elementor-widget-text-editor { text-align: justify; }
.elementor .rv-el-proposal-image-wrap,
.elementor .rv-el-proposal-image,
.elementor .rv-el-proposal-image .elementor-widget-container { height: 100%; }
.elementor .rv-el-proposal-image img { width: 100%; height: 100%; object-fit: cover; }
.elementor .rv-el-proposal-security { height: 343px; }
.elementor .rv-el-proposal-green { height: 322px; }
.elementor .rv-el-proposal-city { height: 449px; }

.elementor .rv-el-signup { padding: 55px 0 51px; background: #f7f7f7; }
.elementor .rv-el-signup-title .elementor-heading-title {
  color: #403f3f;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(42px, 4.7vw, 63px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
}
.elementor .rv-el-signup-intro { max-width: 780px; margin: 20px 0 39px; color: #575555; font-size: 19px; line-height: 1.25; }
.elementor .rv-el-signup-form { width: 100%; }

.elementor .rv-el-page-hero { padding: clamp(64px, 8vw, 110px) 0 50px; border-bottom: 1px solid #dedede; }
.elementor .rv-el-page-eyebrow .elementor-heading-title { color: #ed0000; font-family: Montserrat, Arial, sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.elementor .rv-el-page-title .elementor-heading-title { color: #161616; font-family: Anton, Impact, sans-serif; font-size: clamp(42px, 6vw, 78px); font-weight: 400; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; }
.elementor .rv-el-page-title .elementor-heading-title span { color: #ed0000; }
.elementor .rv-el-editable-content { min-height: 52vh; padding: 80px 0; }
.elementor .rv-el-editor-note { padding: 24px; border-left: 4px solid #ed0000; background: #f5f5f3; }

.elementor .rv-el-candidate { padding: clamp(72px, 8vw, 110px) 0; }
.elementor .rv-el-candidate .rv-el-two-columns { grid-template-columns: .85fr 1.15fr; gap: clamp(42px, 8vw, 100px); }
.elementor .rv-el-candidate-image img { width: 100%; max-height: 850px; object-fit: cover; object-position: top; box-shadow: 0 18px 50px rgba(0,0,0,.09); }
.elementor .rv-el-candidate-copy { gap: 18px; }
.elementor .rv-el-candidate-copy .rv-el-page-eyebrow { margin-bottom: 10px; }
.elementor .rv-el-candidate-copy .elementor-widget-text-editor { color: #656565; font-size: 18px; }

.elementor .rv-el-transparency { padding: 80px 0; background: #f5f5f3; }
.elementor .rv-el-document-card { overflow: hidden; border: 1px solid #dedede; background: #fff; }
.elementor .rv-el-document-image img { width: 100%; aspect-ratio: .71; object-fit: cover; object-position: top; }
.elementor .rv-el-document-title { padding: 5px 20px 0; }
.elementor .rv-el-document-title .elementor-heading-title { font-family: "Wix Madefor Text", Arial, sans-serif; font-size: 18px; font-weight: 700; }
.elementor .rv-el-document-button { padding: 0 20px 20px; }
.elementor .rv-el-document-button .elementor-button { padding: 0; background: transparent; color: #ed0000; font-size: 13px; font-weight: 700; }
.elementor .rv-el-blog { padding: 80px 0; background: #f5f5f3; }
.rv-blog-grid--1 { grid-template-columns: 1fr; }
.rv-blog-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rv-blog-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rv-blog-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1020px) {
  .elementor .rv-el-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elementor .rv-el-hero-inner { grid-template-columns: 1fr; }
  .elementor .rv-el-hero-copy { position: relative; z-index: 2; padding-inline: 0; }
  .elementor .rv-el-hero-person-wrap { position: absolute; inset: auto -100px 0 auto; z-index: 1; width: 540px; opacity: .3; }
  .elementor .rv-el-hero-name { margin-left: 0; }
  .elementor .rv-el-kicker { margin-left: 0; }
  .elementor .rv-el-future-grid { gap: 35px; padding-inline: 0; }
  .elementor .rv-el-resi .rv-el-two-columns,
  .elementor .rv-el-proposal-row { grid-template-columns: 1fr 1fr; gap: 35px; }
  .elementor .rv-el-candidate .rv-el-two-columns { grid-template-columns: 1fr; }
  .rv-blog-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .elementor .rv-el-container { width: min(calc(100% - 28px), 1220px); }
  .elementor .rv-el-grid-3,
  .elementor .rv-el-two-columns,
  .elementor .rv-el-resi .rv-el-two-columns,
  .elementor .rv-el-proposal-row { grid-template-columns: 1fr; }
  .elementor .rv-el-hero,
  .elementor .rv-el-hero-inner { min-height: 750px; }
  .elementor .rv-el-hero-copy { justify-content: flex-start; padding-top: 65px; }
  .elementor .rv-el-kicker .elementor-heading-title { font-size: 13px; }
  .elementor .rv-el-hero-name { margin-top: 30px; }
  .elementor .rv-el-hero-role .elementor-heading-title { font-size: 25px; }
  .elementor .rv-el-buttons { flex-direction: column; gap: 12px; }
  .elementor .rv-el-hero-person-wrap { right: -135px; opacity: .24; }
  .elementor .rv-el-ticker,
  .elementor .rv-el-ticker-text .elementor-heading-title { height: 62px; line-height: 62px; }
  .elementor .rv-el-ticker-text .elementor-heading-title { font-size: 24px; }
  .elementor .rv-el-pillars { padding-block: 55px; }
  .elementor .rv-el-pillar { padding-inline: 0; }
  .elementor .rv-el-future .rv-el-display,
  .elementor .rv-el-future-intro { margin-left: 0; }
  .elementor .rv-el-resi { padding-block: 30px; }
  .elementor .rv-el-resi-image-wrap,
  .elementor .rv-el-resi-image,
  .elementor .rv-el-resi-image .elementor-widget-container,
  .elementor .rv-el-resi-image img { height: auto; }
  .elementor .rv-el-resi-copy { min-height: 0; padding: 45px 30px; }
  .elementor .rv-el-proposal-row { gap: 0; margin-bottom: 30px; }
  .elementor .rv-el-proposal-copy { min-height: 340px; padding: 32px; }
  .elementor .rv-el-proposal-security,
  .elementor .rv-el-proposal-green,
  .elementor .rv-el-proposal-city { height: auto; min-height: 300px; }
  .elementor .rv-el-proposal-image img { min-height: 300px; }
  .elementor .rv-el-transparency .rv-el-grid-3 { grid-template-columns: 1fr; }
  .rv-blog-grid--2,
  .rv-blog-grid--3,
  .rv-blog-grid--4 { grid-template-columns: 1fr; }
}
