
:root {
  --color-bg: #f5f5f5;
  --color-text: #1f2430;
  --color-muted: #2f3340;
  --color-accent: #fba517;
  --color-line: #f0a112;
  --color-form-border: #1b1b1b;
  --color-white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--color-text);
  font-family: Arial, sans-serif;
}

body.site-layout:has(.cen-page) > main,
body.site-layout:has(.cen-page) > main > .cen-page {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.cen-page {
  min-width: 1078px;
  overflow-x: hidden;
  background: #fff;
}

.cen-hero {
  position: relative;
  min-height: 533px;
  background: url("/img/pages/info-control-exp-notificaciones/fondo-hero-control-expedientes.jpg") center center / cover no-repeat;
  background-color: transparent;
  background-blend-mode: normal;
}

.cen-hero__overlay {
  display: none;
}

.cen-hero__container {
  position: relative;
  z-index: 1;
  width: 1078px;
  min-height: 533px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 58px 0 0;
}

.cen-hero__logo {
  width: 340px;
  margin-left: 54px;
  margin-top: 0;
}

.cen-hero__panel {
  width: 469px;
  min-height: 373px;
  margin-top: 102px;
  margin-right: -128px;
  padding: 136px 0 0;
  text-align: center;
  color: #33343f;
  position: relative;
}

.cen-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.58);
  clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
}

.cen-hero__panel h1 {
  width: 420px;
  margin: 0 0 28px 25px;
  font-size: 27px;
  line-height: 29px;
  font-weight: 700;
  letter-spacing: 0;
}

.cen-hero__actions {
  display: grid;
  gap: 25px;
  justify-items: start;
  margin-left: 70px;
}

.cen-button {
  width: 313px;
  min-height: 47px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.cen-button--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.cen-button--primary:hover {
  background: var(--color-white);
  color: #ffb900;
}

.cen-features {
  background: var(--color-bg);
}

.cen-features__container {
  width: 980px;
  margin: 0 auto;
  padding: 66px 0 124px;
}

.cen-features__header {
  margin: 0 auto 52px;
  max-width: 903px;
  text-align: center;
}

.cen-features__header h2 {
  margin: 0 0 26px;
  color: var(--color-accent);
  font-size: clamp(24px, 6vw, 32px);
  line-height: 37px;
  font-weight: 700;
  letter-spacing: 0;
}

.cen-features__header p {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  color: #33343f;
}

.cen-features__header strong {
  color: var(--color-accent);
}

.cen-feature {
  display: grid;
  grid-template-columns: 163px minmax(0, 1fr) 163px;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 34px;
}

.cen-feature:last-child {
  margin-bottom: 0;
}

.cen-feature--left {
  grid-template-areas: "icon content .";
}

.cen-feature--right {
  grid-template-areas: ". content icon";
}

.cen-feature__icon-box {
  grid-area: icon;
  width: 163px;
  height: 163px;
  border: 4px solid var(--color-accent);
  border-radius: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cen-feature__icon-box img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.cen-feature__content {
  grid-area: content;
  align-self: center;
  text-align: left;
}

.cen-feature__content p {
  margin: 0 0 10px;
  font-size: 1.38rem;
  line-height: 1.38;
  color: #33343f;
}

.cen-feature__line {
  display: block;
  width: 553px;
  max-width: 100%;
  margin: 0;
  height: 5px;
  background: var(--color-line);
}

.cen-contact {
  width: 100%;
  background: var(--color-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

.cen-contact__column {
  min-height: 677px;
}

.cen-contact__column--visual {
  background:
    linear-gradient(rgba(255,255,255,0.62), rgba(255,255,255,0.62)),
    url("/img/pages/info-control-exp-notificaciones/fondo-bloque-beneficios-control.jpg") center center / cover no-repeat;
}

.cen-contact__column--form {
  background:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)),
    url("/img/pages/info-control-exp-notificaciones/fondo-bloque-plataforma-control.jpg") center center / cover no-repeat;
}

.cen-contact__copy {
  width: min(603px, calc(100% - 48px));
  margin: 70px auto 0;
}

.cen-contact__copy h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  color: #33343f;
}

.cen-contact__copy span {
  color: var(--color-accent);
  font-weight: 700;
}

.cen-form-card {
  width: min(585px, calc(100% - 56px));
  margin: 40px auto 55px;
}

.cen-form-card h3 {
  margin: 0 0 30px;
  font-size: 1.5rem;
  line-height: 1.38;
  font-weight: 800;
  color: #222631;
}

.cen-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.cen-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cen-form__field--full {
  grid-column: 1 / -1;
}

.cen-form__field span {
  font-size: 1rem;
  color: #161616;
  font-weight: 500;
}

.cen-form__field input {
  width: 100%;
  height: 42px;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid var(--color-form-border);
  background: transparent;
  font: inherit;
}

.cen-form__field input:focus {
  outline: none;
}

.cen-form__phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  border-bottom: 2px solid var(--color-form-border);
  min-height: 42px;
}

.cen-form__phone.phone-prefix .phone-prefix__list {
  top: calc(100% + 6px);
  left: 0;
}

.cen-form__phone input {
  border: 0;
  padding-left: 8px;
}

.cen-form__phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 0 4px 8px 0;
  cursor: pointer;
}

.cen-form__phone-prefix.phone-prefix__trigger {
  width: 50px;
  height: 38px;
  padding-bottom: 8px;
}

.cen-form__phone-prefix svg:first-child {
  width: 18px;
  height: 18px;
}

.cen-form__phone-prefix svg:last-child {
  width: 16px;
  height: 16px;
}

.cen-form__checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  font-size: 0.96rem;
  line-height: 1.45;
  color: #313131;
}

.cen-form__checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.cen-form__checkbox a {
  text-decoration: underline;
}

.cen-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.cen-form__submit {
  width: 356px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
}

.cen-form__submit:hover {
  opacity: 0.92;
}

@media (min-width: 1101px) and (max-width: 1366px) {
  .cen-hero__panel {
    margin-right: 0;
  }
}

@media (max-width: 1100px) {
  .cen-page {
    min-width: 0;
  }

  .cen-hero__container {
    width: min(100% - 40px, 1078px);
    flex-wrap: wrap;
    row-gap: 24px;
  }

  .cen-hero__logo {
    margin-left: 0;
  }

  .cen-hero__panel {
    margin-right: 0;
    width: 100%;
    max-width: 469px;
  }

  .cen-features__container {
    width: min(100% - 40px, 980px);
  }

  .cen-contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cen-contact__column {
    min-height: 677px;
  }
}

@media (max-width: 760px) {
  .cen-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .cen-hero__container {
    min-height: 533px;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: 58px 0 0;
  }

  .cen-hero__logo {
    margin-left: 0;
    width: 340px;
    max-width: 100%;
  }

  .cen-hero__panel {
    width: 100%;
    max-width: 469px;
    min-height: 444px;
    margin-top: 102px;
    margin-right: 0;
    padding: 207px 0 0;
  }

  .cen-hero__panel h1 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    font-size: 28px;
  }

  .cen-hero__actions {
    grid-template-columns: minmax(0, 1fr);
    margin-left: 0;
    justify-items: stretch;
  }

  .cen-button {
    width: 313px;
    max-width: 100%;
  }

  .cen-features__header p,
  .cen-feature__content p {
    font-size: 22px;
  }

  .cen-feature,
  .cen-feature--left,
  .cen-feature--right {
    grid-template-columns: 163px minmax(0, 1fr) 163px;
    row-gap: 0;
  }

  .cen-feature--left {
    grid-template-areas: "icon content .";
  }

  .cen-feature--right {
    grid-template-areas: ". content icon";
  }

  .cen-feature__icon-box {
    justify-self: stretch;
  }

  .cen-contact__copy {
    width: min(596px, 100%);
  }

  .cen-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cen-form__field--full {
    grid-column: 1 / -1;
  }

  .cen-form__submit {
    width: 326px;
  }
}

.cen-form__status.is-success {
  color: #137a34;
}

.cen-form.was-validated input:invalid {
  border-color: #c01818;
}

.cen-form.was-validated .cen-form__checkbox input:invalid {
  outline: 2px solid #c01818;
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .cen-feature,
  .cen-feature--left,
  .cen-feature--right {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "icon"
      "content";
    justify-items: center;
    text-align: center;
    row-gap: 14px;
  }

  .cen-feature__content {
    width: 100%;
  }

  .cen-feature__line {
    width: 100%;
    margin: 0 auto;
  }
}


html:has(.cen-page) {
  scroll-behavior: smooth;
}



