.rdn-contact-page {
  --contact-ink: #172033;
  --contact-muted: #5f6f85;
  --contact-blue: #0277bd;
  --contact-blue-bright: #03a9f4;
  --contact-blue-soft: #eaf6fb;
  --contact-coral: var(--rdn-red, #ed5b55);
  --contact-line: rgba(23, 32, 51, 0.16);
  --contact-stroke: #d8e1eb;
  overflow: clip;
  color: var(--contact-ink);
  background: var(--rdn-bg);
}

.rdn-contact-page,
.rdn-contact-page * {
  box-sizing: border-box;
}

.rdn-contact-page a,
.rdn-contact-page button,
.rdn-contact-page input,
.rdn-contact-page textarea {
  font-family: inherit;
}

.rdn-contact-page a:focus-visible,
.rdn-contact-page button:focus-visible,
.rdn-contact-page input:focus-visible,
.rdn-contact-page textarea:focus-visible {
  outline: 3px solid rgba(2, 119, 189, 0.4);
  outline-offset: 3px;
}

.rdn-contact-breadcrumb {
  padding-block: 18px;
}

.rdn-contact-breadcrumb ol {
  display: flex;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #8190a6;
  font-size: 11px;
  list-style: none;
}

.rdn-contact-breadcrumb li + li::before {
  margin-right: 9px;
  color: #b1bdcc;
  content: "/";
}

.rdn-contact-breadcrumb a {
  color: #51627a;
  font-weight: 700;
  text-decoration: none;
}

.rdn-contact-hero {
  position: relative;
  isolation: isolate;
  height: var(--rdn-secondary-hero-height);
  padding: var(--rdn-secondary-hero-padding-start) 0 var(--rdn-secondary-hero-padding-end);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 92%, rgba(3, 169, 244, 0.13), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(237, 91, 85, 0.11), transparent 25%),
    linear-gradient(135deg, #f4fbfe 0%, #f9fcfd 58%, #fff8f5 100%);
}

.rdn-contact-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(23, 32, 51, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 94%);
}

.rdn-contact-hero__ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}

.rdn-contact-hero__ambient--blue {
  right: 18%;
  bottom: -300px;
  width: 650px;
  height: 650px;
  background: rgba(3, 169, 244, 0.15);
}

.rdn-contact-hero__ambient--coral {
  top: -290px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: rgba(237, 91, 85, 0.13);
}

.rdn-contact-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.62fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.rdn-contact-hero__copy {
  max-width: 790px;
}

.rdn-contact-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 13px;
  border: 2px solid rgba(3, 169, 244, 0.2);
  border-radius: 999px;
  color: var(--contact-blue);
  background: rgba(234, 246, 251, 0.8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.rdn-contact-kicker > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--contact-blue-bright);
  box-shadow: 0 0 0 5px rgba(3, 169, 244, 0.12);
}

.rdn-contact-hero h1 {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--contact-ink);
  font-size: var(--rdn-secondary-hero-title-size);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.rdn-contact-hero h1 em {
  display: block;
  color: var(--contact-blue);
  font-style: normal;
}

.rdn-contact-hero__lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: #53627a;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}

.rdn-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.rdn-contact-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.rdn-contact-button:hover,
.rdn-contact-button:focus-visible {
  transform: translateY(-2px);
}

.rdn-contact-button--primary {
  min-width: 210px;
  color: #fff;
  background: var(--contact-coral);
  box-shadow: 0 12px 26px rgba(237, 91, 85, 0.3);
}

.rdn-contact-button--secondary {
  min-width: 164px;
  border-color: rgba(2, 119, 189, 0.3);
  color: #076ca6;
  background: rgba(255, 255, 255, 0.76);
}

.rdn-contact-button > span {
  font-size: 18px;
  line-height: 1;
}

.rdn-contact-hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 20px 0 0;
  padding: 0;
  color: #58677d;
  font-size: 11px;
  list-style: none;
}

.rdn-contact-hero__proofs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rdn-contact-hero__proofs li > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e9b5d;
  box-shadow: 0 0 0 4px rgba(46, 155, 93, 0.12);
}

.rdn-contact-hero__sheet {
  position: relative;
  padding: 23px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 32px 80px rgba(34, 52, 86, 0.16);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.rdn-contact-hero__sheet::after {
  position: absolute;
  top: -88px;
  right: -72px;
  width: 242px;
  height: 242px;
  border: 38px solid rgba(2, 119, 189, 0.07);
  border-radius: 50%;
  content: "";
}

.rdn-contact-hero__sheet header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--contact-line);
}

.rdn-contact-hero__sheet header small {
  display: block;
  margin-bottom: 7px;
  color: #77869b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.rdn-contact-hero__sheet h2 {
  margin: 0;
  color: var(--contact-ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.rdn-contact-hero__sheet header > span {
  color: #d3dfec;
  font-size: 50px;
  font-weight: 900;
  line-height: 0.9;
}

.rdn-contact-hero__sheet ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rdn-contact-hero__sheet li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--contact-line);
}

.rdn-contact-hero__sheet-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--contact-blue);
  background: var(--contact-blue-soft);
}

.rdn-contact-hero__sheet-icon svg {
  width: 14px;
  height: 14px;
}

.rdn-contact-hero__sheet-icon--whatsapp {
  color: #128c4a;
  background: rgba(37, 211, 102, 0.12);
}

.rdn-contact-hero__sheet li small {
  display: block;
  margin-bottom: 3px;
  color: var(--contact-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rdn-contact-hero__sheet-item--whatsapp small {
  color: #128c4a;
}

.rdn-contact-hero__sheet li a,
.rdn-contact-hero__sheet li strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--contact-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.rdn-contact-hero__sheet li a:hover {
  color: var(--contact-blue);
}

.rdn-contact-hero__sheet li i {
  color: #c9d6e5;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}

.rdn-contact-hero__sheet > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 0;
  color: #52637a;
  font-size: 11px;
}

.rdn-contact-hero__sheet > p > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #147a44;
  background: #e4f6eb;
  font-size: 14px;
  font-weight: 900;
}

.rdn-contact-location {
  padding: 96px 0 104px;
  background: #edf4fa;
}

.rdn-contact-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.rdn-contact-heading--center {
  margin-inline: auto;
  text-align: center;
}

.rdn-contact-heading h2 {
  margin: 16px 0 0;
  color: var(--contact-ink);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.rdn-contact-heading > p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--contact-muted);
  font-size: 16px;
  line-height: 1.65;
}

.rdn-contact-heading--center > p:last-child {
  margin-inline: auto;
}

.rdn-contact-location__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.rdn-contact-location__details {
  min-width: 0;
}

.rdn-contact-info-block {
  padding-left: 22px;
  border-left: 2px solid #d6e1ec;
}

.rdn-contact-info-block + .rdn-contact-info-block {
  margin-top: 36px;
}

.rdn-contact-info-block__eyebrow {
  margin: 0 0 9px;
  color: #63738a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rdn-contact-info-block h3 {
  margin: 0;
  color: var(--contact-ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.rdn-contact-address {
  margin: 13px 0 17px;
  color: #29364a;
  font-size: 17px;
  line-height: 1.55;
}

.rdn-contact-address small {
  color: var(--contact-muted);
  font-size: 13px;
}

.rdn-contact-open {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 2px solid #c8efda;
  border-radius: 10px;
  color: #087846;
  background: #ecfbf3;
  font-size: 13px;
}

.rdn-contact-open > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1bbb69;
}

.rdn-contact-open-note {
  margin: 8px 0 0;
  color: #2f995c;
  font-size: 12px;
  font-weight: 800;
}

.rdn-contact-landmarks {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rdn-contact-landmarks li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: #596a81;
  font-size: 13px;
  line-height: 1.45;
}

.rdn-contact-landmarks svg {
  width: 15px;
  height: 15px;
  color: var(--contact-blue);
}

.rdn-contact-transport {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  margin-top: 18px;
  align-items: start;
}

.rdn-contact-transport > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(2, 119, 189, 0.17);
  border-radius: 11px;
  color: var(--contact-blue);
  background: #fff;
  font-size: 10px;
  font-weight: 900;
}

.rdn-contact-transport strong {
  color: var(--contact-ink);
  font-size: 14px;
  font-weight: 900;
}

.rdn-contact-transport p {
  margin: 4px 0 0;
  color: var(--contact-muted);
  font-size: 13px;
  line-height: 1.5;
}

.rdn-contact-bus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.rdn-contact-bus-list li {
  min-width: 27px;
  padding: 4px 6px;
  border: 2px solid #d1ddea;
  border-radius: 6px;
  color: #34435a;
  background: #f8fbfd;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.rdn-contact-channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.rdn-contact-channel {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 2px solid #cad8e7;
  border-radius: 999px;
  color: var(--contact-ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rdn-contact-channel:hover,
.rdn-contact-channel:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(2, 119, 189, 0.45);
  box-shadow: 0 10px 24px rgba(35, 54, 84, 0.1);
}

.rdn-contact-channel svg {
  width: 14px;
  height: 14px;
}

.rdn-contact-channel--whatsapp {
  border-color: #0c7b3d;
  color: #fff;
  background: #0c7b3d;
  box-shadow: 0 10px 24px rgba(12, 123, 61, 0.2);
}

.rdn-contact-channel--whatsapp > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 8px;
}

.rdn-contact-building {
  margin: 0;
  transform: rotate(1deg);
  transition: transform 240ms ease;
}

.rdn-contact-building:hover {
  transform: rotate(0deg) scale(1.01);
}

.rdn-contact-building > a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(27, 46, 76, 0.18);
}

.rdn-contact-building img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.rdn-contact-building__map {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--contact-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  font-size: 12px;
  font-weight: 900;
}

.rdn-contact-building__map i {
  font-style: normal;
}

.rdn-contact-building figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 24px 22px;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 18, 31, 0.94), rgba(10, 18, 31, 0));
}

.rdn-contact-building figcaption strong {
  font-size: 20px;
  font-weight: 900;
}

.rdn-contact-building figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.rdn-contact-form-section {
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 10% 20%, rgba(237, 91, 85, 0.06), transparent 22%),
    #fff9f1;
}

.rdn-contact-form-shell {
  max-width: 1040px;
  margin: 0 auto;
}

.rdn-contact-page #contacto-form {
  max-width: none;
  margin: 0;
  padding: clamp(26px, 4vw, 46px);
  border: 2px solid rgba(23, 32, 51, 0.1);
  border-radius: 26px;
  color: var(--contact-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.12);
}

.rdn-contact-page #contacto-form h2 {
  margin: 0 0 26px;
  color: var(--contact-ink);
  font-size: 28px;
  font-weight: 900;
  text-align: left;
}

.rdn-contact-page #contacto-form .rdn-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.rdn-contact-page #contacto-form .rdn-contact-form-grid > p {
  display: contents;
}

.rdn-contact-page #contacto-form .rdn-contact-form-grid br {
  display: none;
}

.rdn-contact-page #contacto-form .rdn-contact-form-field {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--contact-ink);
  font-size: 13px;
  font-weight: 900;
}

.rdn-contact-page #contacto-form .rdn-contact-form-field--full {
  grid-column: 1 / -1;
}

.rdn-contact-page #contacto-form .rdn-contact-form-field > span:first-child {
  display: block;
}

.rdn-contact-page #contacto-form .rdn-contact-form-field small {
  color: #7b899d;
  font-size: 11px;
  font-weight: 600;
}

.rdn-contact-page #contacto-form .wpcf7-form-control-wrap {
  display: block;
}

.rdn-contact-page #contacto-form input[type="text"],
.rdn-contact-page #contacto-form input[type="email"],
.rdn-contact-page #contacto-form input[type="tel"],
.rdn-contact-page #contacto-form textarea,
.rdn-contact-page #contacto-form .iti__tel-input {
  width: 100% !important;
  margin: 0 !important;
  border: 2px solid #cbd8e7 !important;
  border-radius: 14px !important;
  color: var(--contact-ink) !important;
  background: #fbfdff !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.rdn-contact-page #contacto-form input[type="text"],
.rdn-contact-page #contacto-form input[type="email"],
.rdn-contact-page #contacto-form input[type="tel"],
.rdn-contact-page #contacto-form .iti__tel-input {
  height: 54px !important;
  padding: 0 15px !important;
}

.rdn-contact-page #contacto-form textarea {
  min-height: 150px !important;
  padding: 14px 15px !important;
  resize: vertical;
}

.rdn-contact-page #contacto-form input::placeholder,
.rdn-contact-page #contacto-form textarea::placeholder {
  color: #8a96a8 !important;
  opacity: 1;
}

.rdn-contact-page #contacto-form input:not([type="submit"]):focus,
.rdn-contact-page #contacto-form textarea:focus,
.rdn-contact-page #contacto-form .iti__tel-input:focus {
  outline: none !important;
  border-color: var(--contact-blue) !important;
  box-shadow: 0 0 0 4px rgba(2, 119, 189, 0.12) !important;
}

.rdn-contact-page #contacto-form .rdn-contact-form-privacy {
  margin: 24px 0 0;
}

.rdn-contact-page #contacto-form .rdn-contact-form-privacy > p,
.rdn-contact-page #contacto-form .rdn-contact-form-submit > p {
  margin: 0;
}

.rdn-contact-page #contacto-form .wpcf7-acceptance,
.rdn-contact-page #contacto-form .wpcf7-list-item,
.rdn-contact-page #contacto-form .wpcf7-list-item label {
  display: block !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5;
}

.rdn-contact-page #contacto-form .wpcf7-list-item label {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start !important;
  color: #516177;
  cursor: pointer;
}

.rdn-contact-page #contacto-form .wpcf7-list-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--contact-blue);
}

.rdn-contact-page #contacto-form .wpcf7-list-item a {
  color: var(--contact-blue);
  font-weight: 800;
}

.rdn-contact-page #contacto-form .rdn-contact-form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.rdn-contact-page #contacto-form input[type="submit"] {
  width: auto !important;
  min-width: 220px;
  min-height: 54px;
  margin: 0 !important;
  padding: 0 28px !important;
  border: 2px solid var(--contact-coral) !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: var(--contact-coral) !important;
  box-shadow: 0 12px 26px rgba(237, 91, 85, 0.28) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease !important;
}

.rdn-contact-page #contacto-form input[type="submit"]:hover,
.rdn-contact-page #contacto-form input[type="submit"]:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(237, 91, 85, 0.34) !important;
}

.rdn-contact-page #contacto-form .wpcf7-spinner {
  margin: 14px 8px 0;
}

.rdn-contact-page #contacto-form .wpcf7-not-valid {
  border-color: #c92f2f !important;
  box-shadow: 0 0 0 4px rgba(201, 47, 47, 0.1) !important;
}

.rdn-contact-page #contacto-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b42318 !important;
  font-size: 12px !important;
  font-weight: 700;
}

.rdn-contact-page #contacto-form .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 13px 15px !important;
  border-width: 2px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 700;
}

.rdn-contact-page .wpcf7 form.sent #contacto-form .wpcf7-response-output,
.rdn-contact-page #contacto-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #2d9b5d !important;
  color: #155d38 !important;
  background: #e9f8ef !important;
}

.rdn-contact-page .wpcf7 form.invalid #contacto-form .wpcf7-response-output,
.rdn-contact-page .wpcf7 form.failed #contacto-form .wpcf7-response-output {
  border-color: #cf3f3f !important;
  color: #9e2424 !important;
  background: #fff0f0 !important;
}

.rdn-contact-page #contacto-form .iti {
  width: 100% !important;
}

.rdn-contact-page #contacto-form .flag-container,
.rdn-contact-page #contacto-form .flag-container *,
.rdn-contact-page #contacto-form .iti__flag-container {
  display: none !important;
}

.rdn-contact-page #contacto-form input[name="phonetext-559"] {
  padding-left: 15px !important;
}

@media (min-width: 1200px) {
  .rdn-contact-hero {
    min-height: var(--rdn-secondary-hero-height);
    max-height: var(--rdn-secondary-hero-height);
  }
}

@media (max-width: 1199px) {
  .rdn-contact-hero {
    height: auto;
    padding: 56px 0 64px;
  }

  .rdn-contact-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 42px;
  }

  .rdn-contact-location__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: 54px;
  }
}

@media (max-width: 900px) {
  .rdn-contact-hero__layout,
  .rdn-contact-location__layout {
    grid-template-columns: 1fr;
  }

  .rdn-contact-hero__copy,
  .rdn-contact-heading {
    max-width: 720px;
  }

  .rdn-contact-hero__sheet,
  .rdn-contact-building {
    width: min(100%, 620px);
  }

  .rdn-contact-building {
    transform: none;
  }

  .rdn-contact-form-section,
  .rdn-contact-location {
    padding-block: 76px;
  }
}

@media (max-width: 767px) {
  .rdn-contact-breadcrumb {
    padding-block: 14px;
  }

  .rdn-contact-hero {
    padding: 40px 0 48px;
  }

  .rdn-contact-hero__layout {
    gap: 36px;
  }

  .rdn-contact-kicker {
    min-height: 30px;
    padding: 5px 11px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .rdn-contact-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.98;
  }

  .rdn-contact-hero__lead {
    margin-top: 16px;
    font-size: 15px;
  }

  .rdn-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rdn-contact-button {
    width: 100%;
  }

  .rdn-contact-hero__proofs {
    display: grid;
    gap: 10px;
  }

  .rdn-contact-hero__sheet {
    padding: 18px;
    border-radius: 22px;
  }

  .rdn-contact-hero__sheet h2 {
    font-size: 23px;
  }

  .rdn-contact-hero__sheet header > span {
    font-size: 42px;
  }

  .rdn-contact-heading {
    margin-bottom: 34px;
  }

  .rdn-contact-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .rdn-contact-location,
  .rdn-contact-form-section {
    padding-block: 64px 72px;
  }

  .rdn-contact-location__layout {
    gap: 44px;
  }

  .rdn-contact-info-block {
    padding-left: 17px;
  }

  .rdn-contact-channel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .rdn-contact-channel--whatsapp {
    grid-column: 1 / -1;
  }

  .rdn-contact-building > a {
    border-radius: 20px;
  }

  .rdn-contact-page #contacto-form {
    margin: 0 !important;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .rdn-contact-page #contacto-form .rdn-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rdn-contact-page #contacto-form .rdn-contact-form-field--full {
    grid-column: auto;
  }

  .rdn-contact-page #contacto-form .rdn-contact-form-submit {
    display: block;
  }

  .rdn-contact-page #contacto-form input[type="submit"] {
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  .rdn-contact-hero__sheet li {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .rdn-contact-hero__sheet li i {
    display: none;
  }

  .rdn-contact-channel-actions {
    grid-template-columns: 1fr;
  }

  .rdn-contact-channel--whatsapp {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rdn-contact-button,
  .rdn-contact-channel,
  .rdn-contact-building,
  .rdn-contact-page #contacto-form input[type="submit"] {
    transition: none !important;
  }
}
