/* ============================================
   MUSEO RAYO - CONTACTO REDISEÑO PREMIUM
   Shortcode: [mrhp_contacto]
   ============================================ */

:root {
  --mrct-black: #000000;
  --mrct-white: #ffffff;
  --mrct-gray: #909595;
  --mrct-soft: #f4f0e8;
  --mrct-line: rgba(0, 0, 0, 0.1);
  --mrct-line-invert: rgba(255, 255, 255, 0.16);
  --mrct-font-title: 'Bank Gothic', 'Arial Black', sans-serif;
  --mrct-font-body: 'Futura Medium', Arial, sans-serif;
  --mrct-ease: 280ms ease;
}

.mrct-page,
.mrct-page * {
  box-sizing: border-box;
}

.mrct-page {
  background: var(--mrct-soft);
  color: var(--mrct-black);
  font-family: var(--mrct-font-body);
  margin: 0;
  overflow: hidden;
}

.mrct-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.mrct-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--mrct-gray);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.mrct-kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

.mrct-hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(144,149,149,.25), transparent 30%),
    linear-gradient(135deg, var(--mrct-black) 0%, #161616 58%, var(--mrct-soft) 58.15%, var(--mrct-soft) 100%);
  min-height: auto;
  padding: 0;
}

.mrct-hero::before,
.mrct-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  transform: rotate(45deg);
  border: 1px solid rgba(255,255,255,.14);
}

.mrct-hero::before {
  width: 340px;
  height: 340px;
  right: 7%;
  top: 70px;
}

.mrct-hero::after {
  width: 190px;
  height: 190px;
  right: 27%;
  bottom: 54px;
  border-color: rgba(0,0,0,.12);
}

.mrct-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .62fr);
  gap: 64px;
  align-items: center;
  padding: 92px 0 86px;
}

.mrct-hero-copy {
  color: var(--mrct-white);
  max-width: 760px;
}

.mrct-hero-copy h1,
.mrct-section-head h2,
.mrct-form-intro h2,
.mrct-cta h2 {
  font-family: var(--mrct-font-title);
  font-weight: 900;
  letter-spacing: .015em;
  line-height: .98;
  margin: 0;
  text-transform: uppercase;
}

.mrct-hero-copy h1 {
  font-size: clamp(44px, 7.4vw, 100px);
  margin-top: 22px;
  max-width: 900px;
}

.mrct-hero-copy p {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.85;
  margin: 28px 0 0;
  max-width: 700px;
}

.mrct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.mrct-btn {
  align-items: center;
  border: 1px solid currentColor;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--mrct-font-title);
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .13em;
  min-height: 50px;
  padding: 15px 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform var(--mrct-ease), background var(--mrct-ease), color var(--mrct-ease), border-color var(--mrct-ease);
}

.mrct-btn:hover {
  transform: translateY(-2px);
}

.mrct-btn-light {
  background: var(--mrct-white);
  border-color: var(--mrct-white);
  color: var(--mrct-black);
}

.mrct-btn-light:hover {
  background: transparent;
  color: var(--mrct-white);
}

.mrct-btn-line {
  background: transparent;
  color: var(--mrct-white);
}

.mrct-btn-dark {
  background: var(--mrct-black);
  border-color: var(--mrct-black);
  color: var(--mrct-white);
}

.mrct-btn-dark:hover {
  background: var(--mrct-gray);
  border-color: var(--mrct-gray);
}

.mrct-btn-line-dark {
  background: transparent;
  color: var(--mrct-black);
}

.mrct-btn-line-dark:hover {
  background: var(--mrct-black);
  color: var(--mrct-white);
}

.mrct-hero-card {
  align-self: stretch;
  min-height: 420px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.12);
  color: var(--mrct-black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(30px, 4vw, 52px);
  position: relative;
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.mrct-hero-card::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  right: -72px;
  top: -72px;
  border: 28px solid rgba(144,149,149,.26);
  transform: rotate(45deg);
}

.mrct-card-number {
  color: var(--mrct-gray);
  display: block;
  font-family: var(--mrct-font-title);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 900;
  line-height: .9;
  margin-bottom: 28px;
}

.mrct-hero-card h2 {
  font-family: var(--mrct-font-title);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.mrct-hero-card p {
  color: rgba(0,0,0,.74);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.mrct-section {
  padding: 104px 0;
}

.mrct-section-light {
  background: var(--mrct-soft);
}

.mrct-section-head {
  max-width: 760px;
  margin-bottom: 54px;
}

.mrct-section-head h2,
.mrct-form-intro h2,
.mrct-cta h2 {
  font-size: clamp(34px, 5vw, 70px);
  margin-top: 20px;
}

.mrct-section-head p,
.mrct-form-intro p,
.mrct-cta p {
  color: rgba(0,0,0,.72);
  font-size: 16px;
  line-height: 1.85;
  margin: 22px 0 0;
}

.mrct-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}

.mrct-info-card {
  background: var(--mrct-white);
  border: 1px solid var(--mrct-line);
  min-height: 255px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  transition: transform var(--mrct-ease), box-shadow var(--mrct-ease), border-color var(--mrct-ease);
}

.mrct-info-card:hover {
  border-color: var(--mrct-black);
  box-shadow: 0 22px 48px rgba(0,0,0,.09);
  transform: translateY(-6px);
}

.mrct-featured-card {
  grid-row: span 3;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(0,0,0,.78), rgba(0,0,0,.18)),
    linear-gradient(135deg, #202020 0%, #909595 100%);
  color: var(--mrct-white);
}

.mrct-featured-card::after,
.mrct-info-card::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  right: -88px;
  top: -90px;
  border: 26px solid rgba(0,0,0,.05);
  transform: rotate(45deg);
}

.mrct-featured-card::after {
  width: 310px;
  height: 310px;
  border-color: rgba(255,255,255,.14);
}

.mrct-card-label {
  color: var(--mrct-gray);
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mrct-info-card h3 {
  font-family: var(--mrct-font-title);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.mrct-info-card p {
  color: rgba(0,0,0,.7);
  font-size: 15px;
  line-height: 1.75;
  margin: 18px 0 0;
  position: relative;
  z-index: 1;
}

.mrct-featured-card p {
  color: rgba(255,255,255,.78);
}

.mrct-info-card a {
  color: inherit;
  display: inline-block;
  font-family: var(--mrct-font-title);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  margin-top: 28px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;
}

.mrct-info-card a::after {
  content: ' →';
}

.mrct-section-dark {
  background: var(--mrct-black);
  color: var(--mrct-white);
  padding: 104px 0;
  position: relative;
}

.mrct-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .25;
}

.mrct-form-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.mrct-form-intro p {
  color: rgba(255,255,255,.74);
}

.mrct-mini-info {
  border-left: 1px solid rgba(255,255,255,.26);
  margin-top: 34px;
  padding-left: 24px;
}

.mrct-mini-info p {
  font-size: 14px;
  margin: 0 0 14px;
}

.mrct-form {
  background: var(--mrct-white);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--mrct-black);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.mrct-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mrct-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mrct-form span {
  color: var(--mrct-gray);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mrct-form input,
.mrct-form select,
.mrct-form textarea {
  background: rgba(0,0,0,.035);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 0;
  color: var(--mrct-black);
  font-family: var(--mrct-font-body);
  font-size: 15px;
  line-height: 1.4;
  min-height: 52px;
  outline: none;
  padding: 14px 16px;
  transition: border-color var(--mrct-ease), background var(--mrct-ease), box-shadow var(--mrct-ease);
  width: 100%;
}

.mrct-form textarea {
  min-height: 150px;
  resize: vertical;
}

.mrct-form input:focus,
.mrct-form select:focus,
.mrct-form textarea:focus {
  background: var(--mrct-white);
  border-color: var(--mrct-black);
  box-shadow: 0 0 0 4px rgba(0,0,0,.05);
}

.mrct-form-full {
  margin-top: 22px;
}

.mrct-form button {
  margin-top: 26px;
}

.mrct-map-section {
  background: var(--mrct-soft);
  padding: 100px 0 0;
}

.mrct-map-head {
  margin-bottom: 44px;
}

.mrct-map-frame {
  border-top: 1px solid var(--mrct-line);
  filter: grayscale(1);
  line-height: 0;
  min-height: 420px;
}

.mrct-map-frame iframe {
  display: block;
  width: 100%;
}

.mrct-cta {
  background: var(--mrct-white);
  padding: 100px 0;
}

.mrct-cta-box {
  border: 1px solid var(--mrct-line);
  overflow: hidden;
  padding: clamp(36px, 6vw, 76px);
  position: relative;
  text-align: center;
}

.mrct-cta-box::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(0,0,0,.08);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mrct-cta-box > * {
  position: relative;
  z-index: 1;
}

.mrct-cta .mrct-kicker {
  justify-content: center;
}

.mrct-cta .mrct-kicker::after {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

.mrct-cta .mrct-actions {
  justify-content: center;
}

@media (max-width: 1024px) {
  .mrct-hero {
    background: var(--mrct-black);
  }

  .mrct-hero-grid,
  .mrct-form-layout {
    grid-template-columns: 1fr;
  }

  .mrct-hero-card {
    min-height: 320px;
  }

  .mrct-contact-grid {
    grid-template-columns: 1fr;
  }

  .mrct-featured-card {
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .mrct-wrap {
    width: calc(100% - 30px);
  }

  .mrct-hero-grid {
    gap: 32px;
    padding: 68px 0;
  }

  .mrct-hero-copy h1 {
    font-size: 42px;
  }

  .mrct-section,
  .mrct-section-dark,
  .mrct-map-section,
  .mrct-cta {
    padding-top: 72px;
  }

  .mrct-section {
    padding-bottom: 72px;
  }

  .mrct-section-head {
    margin-bottom: 36px;
  }

  .mrct-section-head h2,
  .mrct-form-intro h2,
  .mrct-cta h2 {
    font-size: 34px;
  }

  .mrct-info-card,
  .mrct-form {
    padding: 24px;
  }

  .mrct-featured-card {
    min-height: auto;
  }

  .mrct-form-grid {
    grid-template-columns: 1fr;
  }

  .mrct-actions {
    flex-direction: column;
  }

  .mrct-btn {
    width: 100%;
  }

  .mrct-map-frame iframe {
    height: 360px;
  }
}
