:root {
  --bg:#efefef;
  --white:#fff;
  --navy:#18246d;
  --orange:#ff7427;
  --text:#20222a;
  --text-soft:#4f525d;
  --faq-bg:#f2f2fa;
  --radius:14px;
  --shadow:0 2px 10px rgba(17,21,45,.06);
  --container:1282px;
  --stripe:repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.08) 0px,
    rgba(255,255,255,.08) 2px,
    transparent 2px,
    transparent 19px
  );
  --font:"Public Sans", Arial, sans-serif;
}

/* Inicio Nuevo Popup agregado */

.popup-caja-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 40, .72);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-caja {
    width: min(100%, 620px);
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,.35);
    animation: popupFade .35s ease;
}

/* HEADER */
.popup-caja-header {
    background: #18246d;
    padding: 22px 28px;
    position: relative;
    display: flex;
    align-items: center;
}

.popup-caja-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.popup-caja-top-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.03em;
    font-family: 'Public Sans', Arial, sans-serif;
}

.popup-caja-brand {
    display: flex;
    align-items: center;
}

.popup-caja-brand img {
    width: 68px;
    height: auto;
    display: block;
}

/* BOTON CERRAR */
.popup-caja-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: .2s ease;
}

.popup-caja-close:hover {
    transform: scale(1.1);
}

/* CONTENIDO */
.popup-caja-content {
    padding: 35px;
}

.popup-caja-badge {
    display: inline-block;
    background: #ff7427;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.popup-caja-content h2 {
    font-size: 34px;
    line-height: 1;
    color: #18246d;
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.popup-caja-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 18px;
}

.popup-caja-content strong {
    color: #18246d;
}

.popup-caja-box {
    margin-top: 24px;
    background: #f8fafc;
    border: 2px dashed #ff7427;
    border-radius: 12px;
    padding: 20px;
    color: #18246d;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

/* FOOTER */
.popup-caja-footer {
    padding: 18px 30px;
    background: #ff7427;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* ANIMACION */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .popup-caja {
        width: 100%;
    }

    .popup-caja-top-title {
        font-size: 18px;
    }

    .popup-caja-brand img {
        width: 55px;
    }

    .popup-caja-content {
        padding: 25px;
    }

    .popup-caja-content h2 {
        font-size: 26px;
    }

    .popup-caja-content p {
        font-size: 15px;
    }

    .popup-caja-box {
        font-size: 14px;
    }
}
.popup-caja-link {
    color: #18246d;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.popup-caja-link:hover {
    color: #ff7427;
    text-decoration: underline;
}
/* Fin Nuevo Popup agregado */

* {
  box-sizing:border-box;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
}

a {
  color:inherit;
  text-decoration:none;
}

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

.container {
  width:min(100% - 100px, var(--container));
  margin:0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f3f3f3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding:22px 0 10px;
}

.site-header__row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand {
  display:flex;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}

.brand__icon {
  width:50px;
  height:50px;
  color:var(--orange);
  flex:0 0 50px;
  margin-top:1px;
}

.brand__text {
  max-width:260px;
  font-size:13px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.025em;
  color:#23252d;
  padding-top:4px;
}

.brand__logo {
  display:block;
  width:280px;
  height:auto;
}

.nav {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:22px;
  flex:1;
  color:#23242b;
  font-weight:600;
  font-size:16px;
  letter-spacing:-.02em;
}

.nav > a {
  color:#20222a;
  font-size:14px;
  line-height:1.2;
  font-weight:600;
  text-decoration:none;
}

.nav__search {
  width:22px;
  height:22px;
  flex:0 0 22px;
}

.search-form {
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:10px;
}

.search-input {
  height:36px;
  width:170px;
  padding:0 12px;
  border-radius:8px;
  border:1px solid #d1d5db;
  background:#fff;
  font-family:'Public Sans', sans-serif;
  font-size:14px;
  line-height:36px;
  outline:none;
  transition:all .2s ease;
}

.search-input:focus {
  border-color:#18246d;
  box-shadow:0 0 0 2px rgba(24,36,109,0.1);
}

.search-btn {
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  border:1px solid #d1d5db;
  background:#fff;
  cursor:pointer;
  color:#6c757d;
  transition:all .2s ease;
}

.search-btn:hover {
  background:#18246d;
  color:#fff;
  border-color:#18246d;
}

/* =========================
   HOME
========================= */

.hero {
  margin-top:24px;
}

.hero__box {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:695px;
  border-radius:var(--radius);
  overflow:hidden;
}

.hero__image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero__right {
  position:relative;
  background:var(--navy);
  color:#fff;
  padding:58px 50px 56px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}

.hero__right::before {
  content:"";
  position:absolute;
  inset:0;
  background:var(--stripe);
  opacity:.6;
  transform:translateX(162px);
}

.hero__right::after {
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:162px;
  background:rgba(0,0,0,.035);
}

.hero__copy {
  position:relative;
  z-index:2;
  max-width:520px;
}

.hero__title {
  margin:0 0 20px;
  font-size:79px;
  line-height:.95;
  letter-spacing:-.085em;
  font-weight:900;
}

.hero__text {
  margin:0;
  max-width:510px;
  color:rgba(255,255,255,.95);
  font-size:16px;
  line-height:1.45;
  letter-spacing:-.02em;
}

.quick-links {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:64px;
}

.quick-card {
  min-height:162px;
  border-radius:var(--radius);
  padding:38px 32px 24px;
  color:#fff;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:background-color 0.3s ease, transform 0.2s ease;
  cursor:pointer;
}

.quick-card--orange {
  background:var(--orange);
}

.quick-card--navy {
  background:var(--navy);
}

.quick-card--navy:hover {
  background:var(--orange);
  transform:translateY(-4px);
}

.quick-card--orange:hover {
  background:var(--navy);
  transform:translateY(-4px);
}

.quick-card__icon {
  width:38px;
  height:38px;
}

.quick-card__title {
  margin-top:8px;
  font-size:22px;
  line-height:1.03;
  letter-spacing:-.04em;
  font-weight:700;
  max-width:290px;
}

.quick-card__arrow {
  width:28px;
  height:28px;
}

.feature-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:90px;
}

.feature-card {
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.feature-card__media {
  height:423px;
}

.feature-card__media img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.feature-card__body {
  padding:36px 42px 42px;
}

.feature-card__title {
  margin:0 0 16px;
  font-size:36px;
  line-height:.98;
  font-weight:900;
  letter-spacing:-.06em;
}

.feature-card__text {
  margin:0;
  color:var(--text-soft);
  font-size:16px;
  line-height:1.5;
  letter-spacing:-.02em;
}

.button-group {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:38px;
}

.pill {
  min-width:308px;
  min-height:58px;
  padding:16px 26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:16px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.02em;
  border:none;
  cursor:pointer;
  transition:background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.pill svg {
  width:20px;
  height:20px;
  flex:0 0 20px;
}

.pill--navy {
  background:var(--navy);
  color:#fff;
}

.pill--navy:hover {
  background:var(--orange);
  transform:translateY(-2px);
}

.pill--outline {
  background:transparent;
  color:var(--orange);
  border:2px solid var(--orange);
}

.pill--outline:hover {
  background:var(--orange);
  color:#fff;
  transform:translateY(-2px);
}

.locality {
  position:relative;
  overflow:hidden;
  margin-top:56px;
  min-height:384px;
  border-radius:var(--radius);
  background:var(--navy);
  box-shadow:var(--shadow);
  padding:60px 62px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:26px;
  align-items:center;
}

.locality__watermark {
  position:absolute;
  left:12px;
  top:-10px;
  width:470px;
  height:470px;
  color:rgba(255,255,255,.08);
  pointer-events:none;
}

.locality__title {
  position:relative;
  z-index:2;
  margin:0;
  color:#fff;
  font-size:36px;
  line-height:1.03;
  font-weight:900;
  letter-spacing:-.06em;
  max-width:530px;
}

.locality__right {
  position:relative;
  z-index:2;
  color:#fff;
  padding-right:40px;
}

.locality__text {
  margin:0 0 18px;
  color:rgba(255,255,255,.96);
  font-size:16px;
  line-height:1.45;
  letter-spacing:-.02em;
  max-width:430px;
}

.select-box {
  width:100%;
  max-width:510px;
  height:65px;
  background:#fff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
  color:#5d6069;
  font-size:16px;
  letter-spacing:-.02em;
}

.select-box svg {
  width:22px;
  height:22px;
  flex:0 0 22px;
  color:var(--navy);
}

.faq-section {
  margin-top:52px;
  border-radius:var(--radius);
  background:var(--faq-bg);
  padding:54px 106px 52px;
}

.faq-section__title {
  margin:0 0 34px;
  color:var(--navy);
  font-size:38px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.06em;
}

.faq-item {
  padding:18px 0 22px;
  border-bottom:1px solid #d8d9e8;
}

.faq-item:last-child {
  border-bottom:none;
  padding-bottom:8px;
}

.faq-toggle {
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:none;
  border:none;
  padding:0;
  color:inherit;
  text-align:left;
  cursor:pointer;
  transition:color 0.3s ease;
}

.faq-toggle:hover .faq-item__q,
.faq-toggle:hover .faq-item__icon {
  color:var(--orange);
}

.faq-item__q {
  color:var(--navy);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.03em;
  font-weight:800;
  transition:color .2s;
}

.faq-item__icon {
  flex:0 0 auto;
  width:20px;
  text-align:center;
  color:var(--navy);
  font-size:42px;
  line-height:.55;
  font-weight:400;
  transform:translateY(-4px);
}

.faq-item__body {
  display:none;
  padding-top:8px;
  max-width:1030px;
  color:#383b45;
  font-size:16px;
  line-height:1.45;
  letter-spacing:-.02em;
}

.faq-item.is-open .faq-item__body {
  display:block;
}

.faq-item.is-open .faq-item__q,
.faq-item.is-open .faq-item__icon {
  color:var(--orange);
}

.faq-item__body ul {
  margin:6px 0 0;
  padding-left:28px;
}

.faq-item__body li {
  margin-bottom:8px;
}

.family-section {
  margin-top:48px;
}

.family-image {
  height:435px;
  border-radius:var(--radius);
  overflow:hidden;
}

.family-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.contact-box {
  margin-top:32px;
  min-height:317px;
  border-radius:var(--radius);
  background:var(--navy);
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
  padding:56px 60px;
  display:flex;
  align-items:center;
}

.contact-box::before {
  content:"";
  position:absolute;
  inset:0;
  background:var(--stripe);
  opacity:.55;
  transform:translateX(650px);
}

.contact-box::after {
  content:"";
  position:absolute;
  inset:170px 0 0 650px;
  background:rgba(255,255,255,.08);
}

.contact-box__content {
  position:relative;
  z-index:2;
  max-width:430px;
}

.contact-box__title {
  margin:0 0 12px;
  font-size:62px;
  line-height:.96;
  letter-spacing:-.07em;
  font-weight:900;
}

.contact-box__text {
  margin:0;
  color:rgba(255,255,255,.93);
  font-size:16px;
  line-height:1.45;
  letter-spacing:-.02em;
  max-width:420px;
}

.contact-box__btn {
  margin-top:32px;
  min-width:218px;
  height:56px;
  padding:0 24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#fff;
  color:#22327f;
  font-size:16px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.02em;
  transition:background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-box__btn:hover {
  background:var(--orange);
  color:#fff;
  transform:translateY(-2px);
}

.contact-box__btn svg {
  width:20px;
  height:20px;
  flex:0 0 20px;
}

.site-footer {
  text-align:center;
  padding:58px 0 34px;
}

.footer-logo {
  width:78px;
  height:78px;
  color:var(--orange);
  margin:0 auto 12px;
}

.footer-brand {
  font-size:13px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.025em;
  color:#23252d;
  max-width:260px;
  margin:0 auto 42px;
}

.copyright {
  color:#8a8c97;
  font-size:14px;
  line-height:1.3;
  letter-spacing:-.02em;
}

.wa-float {
  position:fixed;
  right:26px;
  bottom:26px;
  width:66px;
  height:66px;
  border-radius:18px;
  background:linear-gradient(180deg,#52e86c 0%,#14b92e 100%);
  box-shadow:0 8px 20px rgba(34,175,70,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:50;
}

.wa-float svg {
  width:36px;
  height:36px;
  color:#fff;
}

/* =========================
   BENEFICIOS
========================= */

.internal-hero {
  margin-top: 18px;
}

.internal-hero__box {
  position: relative;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 56px 56px;
}

.internal-hero__box::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 0;
  right: 0;
  width: 48%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.12) 0px,
      rgba(255,255,255,.12) 3px,
      transparent 3px,
      transparent 15px
    );
  opacity: .9;
}

.internal-hero__box::after {
  content: "";
  position: absolute;
  top: 108px;
  bottom: 0;
  right: 0;
  width: 48%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.14) 0px,
      rgba(255,255,255,.14) 7px,
      transparent 7px,
      transparent 20px
    );
  opacity: .95;
}

.internal-hero__content {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.internal-hero__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 58px;
  line-height: .95;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.internal-hero__text {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.benefits-grid-section {
  margin-top: 34px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benefit-card {
  min-height: 222px;
  border-radius: 6px;
  padding: 28px 26px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.benefit-card--orange {
  background: var(--orange);
}

.benefit-card--navy {
  background: var(--navy);
}

.benefit-card__content {
  max-width: 270px;
}

.benefit-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.benefit-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255,255,255,.93);
  letter-spacing: -0.02em;
}

.benefit-card__button {
  align-self: flex-start;
  min-width: 160px;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f2f2f2;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.benefit-card__button:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.benefit-card__arrow {
  font-size: 14px;
  line-height: 1;
}

.benefits-faq {
  margin-top: 42px;
}

.benefits-faq .container {
  max-width: 1180px;
  background: var(--faq-bg);
  border-radius: 8px;
  padding: 44px 52px 30px;
}

.benefits-faq.faq-section {
  background: transparent;
  padding: 0;
}

.benefits-faq .faq-section__title {
  margin: 0 0 24px;
  font-size: 29px;
  color: var(--navy);
}

.benefits-faq .faq-item {
  padding: 16px 0 16px;
}

.benefits-faq .faq-item__q {
  font-size: 18px;
  font-weight: 800;
}

.benefits-faq .faq-item__body {
  font-size: 14px;
  line-height: 1.5;
}

.benefits-faq .faq-item:first-of-type .faq-item__q {
  color: var(--orange);
}

.benefits-contact {
  margin-top: 26px;
  margin-bottom: 10px;
}

.contact-box--benefits {
  min-height: 186px;
  border-radius: 6px;
  padding: 38px 50px;
}

.contact-box--benefits::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 46%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.11) 0px,
      rgba(255,255,255,.11) 4px,
      transparent 4px,
      transparent 15px
    );
  opacity: .9;
}

.contact-box--benefits::after {
  content: "";
  position: absolute;
  top: 108px;
  bottom: 0;
  right: 0;
  width: 46%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.12) 0px,
      rgba(255,255,255,.12) 7px,
      transparent 7px,
      transparent 19px
    );
  opacity: .95;
}

.contact-box--benefits .contact-box__content {
  max-width: 420px;
}

.contact-box--benefits .contact-box__title {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: .95;
}

.contact-box--benefits .contact-box__text {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.45;
}

.contact-box--benefits .contact-box__btn {
  margin-top: 22px;
  min-width: 182px;
  height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

/* =========================
   DETALLE DE BENEFICIO
========================= */

.benefit-detail-page {
  padding-bottom: 10px;
}

.benefit-detail-section {
  margin-top: 42px;
}

.benefit-detail-container {
  max-width: 1080px;
}

.benefit-description {
  margin-bottom: 44px;
}

.benefit-detail-title {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.benefit-detail-title--center {
  text-align: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.benefit-detail-title--icon {
  position: relative;
  padding-left: 0;
  margin-bottom: 18px;
}

.benefit-detail-paragraph {
  max-width: 720px;
  margin: 0;
  color: #2f3441;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.benefit-requirements {
  margin-bottom: 54px;
}

.requirements-box {
  position: relative;
  overflow: hidden;
  background: #f2f2fa;
  border-radius: 8px;
  padding: 28px 28px 18px;
}

.requirements-box__stripes {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 48%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(24,36,109,.04) 0px,
      rgba(24,36,109,.04) 4px,
      transparent 4px,
      transparent 14px
    );
  pointer-events: none;
}

.requirement-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.requirement-item:last-child {
  margin-bottom: 0;
}

.requirement-item__icon {
  flex: 0 0 18px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.6;
}

.requirement-item__content h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.requirement-item__content p {
  margin: 0;
  max-width: 670px;
  color: #2f3441;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.important-links-section {
  margin-bottom: 58px;
}

.important-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.important-link-card {
  min-height: 116px;
  border-radius: 6px;
  padding: 18px 16px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: background-color .2s ease, transform .2s ease;
}

.important-link-card:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.important-link-card:hover .important-link-card__title,
.important-link-card:hover .important-link-card__icon,
.important-link-card:hover .important-link-card__arrow {
  color: #fff;
}

.important-link-card--orange {
  background: var(--orange);
}

.important-link-card--navy {
  background: var(--navy);
}

.important-link-card__icon {
  font-size: 18px;
  line-height: 1;
}

.important-link-card__title {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.important-link-card__arrow {
  font-size: 18px;
  line-height: 1;
}

.documentation-section {
  margin-bottom: 60px;
}

.document-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
}

.document-item__icon {
  width: 28px;
  min-width: 28px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.document-pdf-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.document-item__text {
  color: #232733;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.document-item__text a {
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.document-item__text a:hover {
  text-decoration: underline;
}

.offices-section {
  margin-bottom: 58px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 760px;
}

.office-card {
  min-height: 126px;
  background: #f7f7fb;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
}

.office-card__title {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.office-card__text {
  margin: 0;
  color: #4a4d58;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* =========================
   PRESTAMOS
========================= */

.prestamos-page {
  background: #f5f5f7;
  padding-bottom: 80px;
}

.prestamos-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 8px;
  overflow: hidden;
  min-height: 460px;
}

.prestamos-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prestamos-hero__content {
  position: relative;
  background: #16236d;
  display: flex;
  align-items: flex-end;
  padding: 48px 48px 52px;
  overflow: hidden;
}

.prestamos-hero__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.07) 0,
    rgba(255,255,255,0.07) 4px,
    transparent 4px,
    transparent 12px
  );
  opacity: 0.8;
  pointer-events: none;
}

.prestamos-hero__text {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.prestamos-hero__text h1 {
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.prestamos-hero__text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 360px;
}

.prestamos-tipos {
  margin-top: 28px;
}

.prestamos-tipos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.prestamo-card {
  background: #16236d;
  border-radius: 8px;
  padding: 20px 22px;
  min-height: 118px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prestamo-card:hover {
  transform: translateY(-2px);
}

.prestamo-card--active {
  background: #ff7a2f;
}

.prestamo-card__icon {
  font-size: 20px;
  color: #ffffff;
}

.prestamo-card__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}

.prestamo-card__body span {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.prestamos-requisitos {
  margin-top: 52px;
}

.prestamos-requisitos h2 {
  margin: 0 0 18px;
  font-size: 26px;
  color: #16236d;
  font-weight: 800;
}

.prestamos-requisitos__box {
  position: relative;
  background: #ececf5;
  border-radius: 8px;
  padding: 26px 24px;
  overflow: hidden;
}

.prestamos-requisitos__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: repeating-linear-gradient(
    to right,
    rgba(22,35,109,0.04) 0,
    rgba(22,35,109,0.04) 4px,
    transparent 4px,
    transparent 10px
  );
}

.prestamos-requisito {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.prestamos-requisito:last-child {
  margin-bottom: 0;
}

.prestamos-requisito__icon {
  width: 18px;
  height: 18px;
  color: #16236d;
  font-size: 12px;
  line-height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.prestamos-requisito h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #16236d;
  font-weight: 700;
}

.prestamos-requisito p {
  margin: 0;
  color: #23304f;
  font-size: 14px;
  line-height: 1.6;
  max-width: 720px;
}

.prestamos-form-section {
  margin-top: 54px;
}

.prestamos-form-card {
  background: #16236d;
  border-radius: 8px;
  padding: 44px 40px 36px;
  color: #ffffff;
}

.prestamos-form-card__header h2 {
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
}

.prestamos-form-card__header p {
  margin: 0 0 28px;
  max-width: 900px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.6;
}

.prestamos-alert {
	margin: 0 0 20px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
}

.prestamos-alert--ok {
	background: #e9f8ef;
	color: #176b38;
	border: 1px solid #a7dfbd;
}

.prestamos-alert--error {
	background: #ffe9e9;
	color: #8f1726;
	border: 1px solid #f0b7b7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 6px;
  background: #ffffff;
  padding: 0 16px;
  font-size: 15px;
  color: #1f1f1f;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 50px;
}

.radio-option,
.checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.file-upload {
  min-height: 108px;
  border: 1px dashed rgba(255,255,255,0.5);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: transparent;
  cursor: pointer;
  padding: 16px;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload__icon {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  border: none;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn--orange {
  background: #ff7a2f;
  color: #ffffff;
}

.btn--full {
  width: 100%;
}

.prestamos-faq {
  margin-top: 46px;
}

.faq-box {
  background: #ececf5;
  border-radius: 8px;
  padding: 38px 40px;
}

.faq-box h2 {
  margin: 0 0 24px;
  font-size: 34px;
  color: #16236d;
  font-weight: 800;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #16236d;
}

.faq-item.active .faq-question {
  color: #ff7a2f;
}

.faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #16236d;
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p,
.faq-answer li {
  font-size: 14px;
  line-height: 1.7;
  color: #23304f;
}

.faq-answer ul {
  margin: 0;
  padding-left: 18px;
}

/* =========================
   NOTICIAS
========================= */

.noticias-page {
  padding-bottom: 24px;
}

.noticias-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  justify-content: center;
  gap: 20px;
}

.noticia-card {
  background: #f2f2fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(17,21,45,.06);
}

.noticia-card__image {
  height: 190px;
  padding: 8px 8px 0;
}

.noticia-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.noticia-card__body {
  padding: 14px 16px 18px;
}

.noticia-card__date {
  margin: 0 0 10px;
  color: #18246d;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.noticia-card__title {
  margin: 0 0 18px;
  color: #18246d;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  min-height: 82px;
}

.noticia-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff7427;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.noticia-card__link span {
  font-size: 15px;
  line-height: 1;
}

/* =========================
   DETALLE NOTICIA
========================= */

.news-detail-page {
  padding: 28px 0 32px;
}

.news-detail__container {
  max-width: 1282px;
}

.news-detail__header {
  max-width: 1120px;
  margin: 0 auto 26px;
}

.news-detail__title {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.news-detail__summary {
  margin: 0 0 22px;
  color: #5a5d68;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  max-width: 980px;
}

.news-detail__meta,
.news-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid #dddddf;
}

.news-detail__footer {
  margin-top: 42px;
}

.news-detail__date {
  color: #8b8e97;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-detail__share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8b8e97;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-detail__share-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #cfcfd4;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b8e97;
}

.news-detail__share-icon svg {
  width: 14px;
  height: 14px;
}

.news-detail__figure {
  margin: 0 auto 34px;
  max-width: 860px;
}

.news-detail__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.news-detail__figure figcaption {
  margin-top: 10px;
  color: #8b8e97;
  font-size: 13px;
  line-height: 1.4;
}

.news-detail__content {
  max-width: 1120px;
  margin: 0 auto 34px;
  color: #3e434d;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.news-detail__content p {
  margin: 0 0 18px;
}

.news-detail__content ul {
  margin: 0 0 22px 0;
  padding-left: 24px;
}

.news-detail__content li {
  margin-bottom: 6px;
}

.news-detail__content h2 {
  margin: 36px 0 14px;
  color: #20222a;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 900;
}

/* =========================
   CONTACTO
========================= */

.contact-page {
  padding-bottom: 16px;
}

.contact-faq {
  margin-top: 18px;
}

.contact-faq .container {
  max-width: 1180px;
}

.contact-direct-section {
  margin-top: 30px;
}

.contact-direct-title {
  margin: 0 0 18px;
  text-align: center;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  justify-content: center;
  gap: 12px;
}

.contact-direct-card {
  min-height: 116px;
  border-radius: 6px;
  padding: 18px 16px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: background-color .2s ease, transform .2s ease;
}

.contact-direct-card:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.contact-direct-card--orange {
  background: var(--orange);
}

.contact-direct-card--navy {
  background: var(--navy);
}

.contact-direct-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-direct-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.contact-direct-card__title {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.contact-direct-card__arrow {
  font-size: 18px;
  line-height: 1;
}

.contact-form-section {
  margin-top: 28px;
}

.contact-form-box {
  max-width: 980px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 8px;
  padding: 58px 68px 60px;
}

.contact-form-box__header {
  margin-bottom: 26px;
}

.contact-form-box__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.contact-form-box__text {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-group--full {
  grid-column: 1 / -1;
}

.contact-form-group label {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f2f2f2;
  color: #20222a;
  border-radius: 6px;
  padding: 0 14px;
  font-family: var(--font);
  font-size: 14px;
}

.contact-form-group input {
  height: 44px;
}

.contact-form-group textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form-submit {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.offices-contact-section {
  margin-top: 34px;
}

.offices-contact-section .container {
  max-width: 1180px;
}

.offices-contact-inner {
  max-width: 980px;
  margin: 0 auto;
}

.offices-contact-title {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offices-contact-title__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.offices-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.office-contact-card {
  min-height: 108px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px 20px 16px;
}

.office-contact-card__title {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.office-contact-card__text {
  margin: 0;
  color: #4a4d58;
  font-size: 13px;
  line-height: 1.55;
}

/* MAPA */
.offices-map {
  margin-top: 22px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offices-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* =========================
   TERMINOS Y CONDICIONES
========================= */

.terms-page {
  padding-bottom: 16px;
}

.terms-section {
  margin-top: 32px;
}

.terms-content {
  max-width: 980px;
  margin: 0 auto;
}

.terms-content p {
  margin: 0 0 18px;
  color: #4150a4;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.terms-alert-box {
  margin-top: 30px;
  max-width: 760px;
  background: #f7f7fa;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.terms-alert-box p {
  margin: 0;
  color: #3e434d;
  font-size: 12px;
  line-height: 1.45;
}

.terms-contact {
  margin-top: 66px;
}

.terms-contact .container {
  max-width: 1180px;
}

/* =========================
   NOTICIAS HOME
========================= */

.noticias-list-home {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px));
  justify-content: center;
  gap: 20px;
}

.noticia-card-home {
  background: #f2f2fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.noticia-card-home__image {
  height: 220px;
  padding: 10px 10px 0;
}

.noticia-card-home__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.noticia-card-home__body {
  padding: 14px 16px 20px;
}

.noticia-card-home__date {
  margin: 0 0 10px;
  color: #18246d;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.noticia-card-home__title {
  margin: 0 0 20px;
  color: #18246d;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  min-height: 100px;
}

.noticia-card-home__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #18246d;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.noticia-card-home__link span {
  font-size: 15px;
  line-height: 1;
}

.noticia-card-home__link:hover {
  color: var(--orange);
}

@media (max-width: 980px) {
  .noticias-list-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .noticias-list-home {
    grid-template-columns: 1fr;
  }

  .noticia-card-home__title {
    min-height: auto;
  }
}

/* =========================
   MEDIA QUERIES
========================= */

@media (max-width:1320px) {
  .container {
    width:min(100% - 48px, var(--container));
  }

  .hero__title {
    font-size:68px;
  }

  .contact-box__title {
    font-size:54px;
  }

  .faq-section {
    padding-left:54px;
    padding-right:54px;
  }
}

@media (max-width:1100px) {
  .site-header__row,
  .nav {
    flex-wrap:wrap;
  }

  .hero__box,
  .quick-links,
  .feature-grid,
  .locality,
  .prestamos-hero {
    grid-template-columns:1fr;
  }

  .hero__title {
    font-size:56px;
  }

  .hero__right,
  .locality,
  .contact-box,
  .prestamos-hero__content {
    min-height:auto;
  }

  .contact-box::before,
  .contact-box::after,
  .hero__right::before,
  .hero__right::after,
  .locality__watermark {
    display:none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:991px) {
  .prestamos-tipos__grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .prestamos-form-card {
    padding: 32px 22px;
  }

  .prestamos-form-card__header h2 {
    font-size: 32px;
  }
}

@media (max-width:980px) {
  .site-header__row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 16px 22px;
  }

  .search-form {
    margin-left: 0;
  }

  .important-links-grid,
  .offices-grid,
  .offices-contact-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .offices-grid {
    max-width: none;
  }

  .contact-direct-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-group--full {
    grid-column: auto;
  }

  .noticias-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:900px) {
  .news-detail__title {
    font-size: 32px;
  }
}

@media (max-width:768px) {
  .prestamos-hero__text h1 {
    font-size: 42px;
  }

  .faq-box {
    padding: 28px 22px;
  }

  .faq-box h2 {
    font-size: 28px;
  }
}

@media (max-width:760px) {
  .container {
    width:min(100% - 24px, var(--container));
  }

  .site-header {
    padding: 18px 0 14px;
  }

  .site-header__row {
    gap: 20px;
  }

  .nav {
    gap:14px 28px;
    font-size:14px;
    width:100%;
    justify-content:center;
  }

  .nav > a {
    font-size:16px;
    text-align:center;
  }

  .brand {
    justify-content:center;
    width:100%;
  }

  .brand__logo {
    max-width:320px;
  }

  .search-form {
    width:100%;
    max-width:340px;
    justify-content:center;
  }

  .search-input {
    width:100%;
    min-width:0;
  }

  .hero__right,
  .locality,
  .faq-section,
  .contact-box,
  .feature-card__body {
    padding:26px;
  }

  .hero__title {
    font-size:44px;
  }

  .feature-card__media,
  .family-image {
    height:280px;
  }

  .pill,
  .contact-box__btn,
  .select-box {
    width:100%;
    min-width:0;
  }

  .faq-item__q {
    font-size:16px;
  }

  .contact-box__title {
    font-size:42px;
  }

  .internal-hero__box {
    min-height:auto;
    padding:32px 24px;
  }

  .internal-hero__box::before,
  .internal-hero__box::after,
  .contact-box--benefits::before,
  .contact-box--benefits::after {
    display:none;
  }

  .internal-hero__title {
    font-size:40px;
  }

  .benefits-grid {
    grid-template-columns:1fr;
  }

  .benefit-card {
    min-height:auto;
  }

  .benefit-card__button {
    width:100%;
    align-self:stretch;
  }

  .benefits-faq .container {
    padding:28px 24px 20px;
  }

  .contact-box--benefits {
    padding:28px 24px;
  }

  .contact-box--benefits .contact-box__title {
    font-size:34px;
  }

  .benefit-detail-section {
    margin-top:28px;
  }

  .benefit-description,
  .benefit-requirements,
  .important-links-section,
  .documentation-section,
  .offices-section {
    margin-bottom:36px;
  }

  .requirements-box {
    padding:22px 18px 18px;
  }

  .requirements-box__stripes {
    display:none;
  }

  .benefit-detail-title--center {
    text-align:left;
    font-size:22px;
  }

  .document-item {
    padding:12px 14px;
    align-items:center;
  }

  .document-item__icon {
    width:24px;
    min-width:24px;
    height:30px;
  }

  .document-item__text a {
    font-size:15px;
  }

  .news-detail-page {
    padding-top:18px;
  }

  .news-detail__title {
    font-size:28px;
  }

  .news-detail__summary,
  .news-detail__content {
    font-size:15px;
  }

  .news-detail__meta,
  .news-detail__footer {
    align-items:flex-start;
    flex-direction:column;
  }

  .news-detail__figure img {
    border-radius:12px;
  }

  .contact-form-box {
    padding:30px 22px 32px;
  }

  .contact-direct-grid {
    grid-template-columns:1fr;
    justify-content:stretch;
  }

  .contact-direct-card {
    min-height:108px;
  }

  .terms-section {
    margin-top:24px;
  }

  .terms-content p {
    font-size:14px;
  }

  .terms-alert-box {
    max-width:none;
    padding:16px 16px;
  }

  .terms-contact {
    margin-top:40px;
  }
}

@media (max-width:640px) {
  .noticias-list {
    grid-template-columns:1fr;
  }

  .noticia-card__image {
    height:220px;
  }

  .noticia-card__title {
    min-height:auto;
    font-size:22px;
  }
}

@media (max-width:480px) {
  .brand__logo {
    max-width:240px;
  }

  .nav {
    gap:12px 24px;
  }

  .nav > a {
    font-size:15px;
  }

  .search-form {
    max-width:100%;
  }

  .search-btn {
    width:44px;
    height:44px;
    flex:0 0 44px;
  }

  .search-input {
    height:44px;
    line-height:44px;
    font-size:15px;
  }
}

.benefit-amounts-section {
  margin-top: 32px;
}

.benefit-amounts-box {
  background: #eef6ff;
  border: 1px solid #c7def5;
  border-radius: 8px;
  padding: 24px;
}

.benefit-amounts-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.benefit-amounts-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  color: #27364a;
  font-size: 11px;
  text-align: center;
}

.benefit-amounts-table th,
.benefit-amounts-table td {
  border: 1px solid #d6dee8;
  padding: 10px 12px;
}

.benefit-amounts-table thead th {
  background: #f3f6fa;
  font-weight: 700;
}

.benefit-amounts-table__label {
  font-weight: 700;
}

.benefit-amounts-notes {
  margin-top: 20px;
  color: #36485c;
  font-size: 15px;
  line-height: 1.6;
}

.benefit-amounts-notes p {
  margin: 0 0 12px;
}

.benefit-amounts-notes p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .benefit-amounts-box {
    padding: 18px;
  }

  .benefit-amounts-table {
    font-size: 14px;
  }

  .benefit-amounts-table th,
  .benefit-amounts-table td {
    padding: 8px 10px;
  }
}
