:root {
  --blue-deep: #01377d;
  --blue: #1b5fea;
  --blue-bright: #0869f7;
  --aqua: #98e7f4;
  --green: #4aa97d;
  --green-bright: #17c875;
  --lime: #7dd449;
  --off-white: #f4f4f4;
  --white: #ffffff;
  --ink: #073b86;
  --muted: #47668f;
  --page-radius: 22px;
  --panel-radius: 25px;
  font-family: "Manrope", "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 2%, rgba(185, 239, 250, 0.48), transparent 31%),
    linear-gradient(135deg, #0b5bb0 0%, #167ac8 43%, #2c98d2 72%, #126cba 100%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-shell {
  position: relative;
  isolation: isolate;
  width: min(1378px, calc(100% - 48px));
  min-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: var(--page-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(249, 253, 255, 0.985));
  box-shadow: 0 27px 68px rgba(0, 34, 78, 0.19);
}

.site-header {
  position: relative;
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px 15px;
}

.brand { display: inline-flex; width: 263px; max-width: 42vw; }
.brand img { width: 100%; height: auto; }

.hero-section { padding: 0 34px; }

.hero-panel {
  height: clamp(430px, 35.2vw, 486px);
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 57.4%) minmax(0, 42.6%);
  overflow: hidden;
  border: 1px solid rgba(199, 224, 242, 0.8);
  border-radius: var(--panel-radius);
  background: #fff;
  box-shadow: 0 13px 35px rgba(0, 76, 151, 0.1);
}

.photo-carousel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: calc(var(--panel-radius) - 1px) 0 0 calc(var(--panel-radius) - 1px);
  background: var(--blue-deep);
  outline: none;
}

.photo-carousel:focus-visible { box-shadow: inset 0 0 0 4px rgba(26, 105, 240, 0.8); }
.carousel-slides, .carousel-slide { position: absolute; inset: 0; margin: 0; }

.carousel-slide {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.016);
  transition: opacity 0.46s ease, visibility 0.46s ease, transform 0.72s ease;
}

.carousel-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide img { position: relative; z-index: 1; }
.carousel-slide[data-slide="0"] img { object-position: center 47%; }
.carousel-slide[data-slide="1"] img { object-position: center 48%; }
.carousel-slide[data-slide="2"] img { object-position: center 51%; }
.carousel-slide[data-slide="3"] img { object-position: center 50%; }

.photo-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 26, 65, 0.12) 0%, transparent 44%),
    linear-gradient(0deg, rgba(1, 24, 56, 0.63) 0%, rgba(1, 30, 68, 0.14) 31%, transparent 54%);
  pointer-events: none;
}

.photo-copy {
  position: absolute;
  z-index: 3;
  left: 36px;
  bottom: 24px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 26, 58, 0.4);
}

.photo-copy p {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.photo-copy strong { font-size: 1.1em; font-weight: 800; }

.photo-copy-rule {
  display: block;
  width: 30px;
  height: 2px;
  margin: 15px 0 9px;
  background: #fff;
}

.photo-copy small {
  display: block;
  max-width: 340px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-copy.is-refreshing {
  animation: refresh-caption 0.44s ease both;
}

@keyframes refresh-caption {
  from { opacity: 0.38; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #0861d6;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 30, 73, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.carousel-arrow:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 30, 73, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }

.carousel-arrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow--previous { left: 17px; }
.carousel-arrow--next { right: 17px; }

.carousel-dots {
  position: absolute;
  z-index: 5;
  right: 72px;
  bottom: 21px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0, 37, 81, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.carousel-dot.is-active {
  background: #0875ff;
  box-shadow: 0 0 0 3px #fff, 0 3px 10px rgba(0, 61, 145, 0.38);
  transform: scale(1.12);
}

.carousel-dot:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }

.institutional-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 0 calc(var(--panel-radius) - 1px) calc(var(--panel-radius) - 1px) 0;
  background: linear-gradient(122deg, #ffffff 0%, #ffffff 54%, #f1faff 100%);
}

.institutional-card::before {
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 360px;
  top: 22px;
  right: -175px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 213, 241, 0.18), rgba(96, 213, 241, 0) 70%);
  filter: blur(7px);
}

.institutional-orb { display: none; }

.institutional-copy {
  position: relative;
  z-index: 3;
  width: 59%;
  padding: 36px 0 29px 30px;
}

.title-accent {
  display: block;
  width: 53px;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--blue) 0 56%, var(--green-bright) 56% 100%);
}

.institutional-copy h1 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(31px, 2.62vw, 40px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.institutional-copy h1 > span { display: block; }
.institutional-copy h1 > span > span:first-child { color: #0f62ee; }
.institutional-copy h1 > span > span:last-child { color: var(--green); }

.benefit-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 19px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 51px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 13px;
  border: 1px solid #bedcf3;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 14px rgba(0, 72, 145, 0.035);
}

.benefit-check {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #34b66e, #62d37a);
  box-shadow: 0 5px 13px rgba(31, 178, 103, 0.28);
  font-size: 22px;
  font-weight: 700;
}

.benefit-list strong { font-size: 12px; font-weight: 800; white-space: nowrap; }

.institutional-description {
  margin: 0;
  color: #164f98;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.card-art {
  position: absolute;
  z-index: 2;
  width: 70%;
  top: 104px;
  right: -84px;
  transform: rotate(-2.8deg);
  filter: drop-shadow(0 18px 22px rgba(0, 52, 111, 0.2));
}

.card-art img { width: 100%; height: auto; }

.institutional-signature {
  position: absolute;
  z-index: 2;
  right: 31px;
  bottom: 27px;
  margin: 0;
  color: #0c5abc;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 0.92;
  text-align: center;
  transform: rotate(-7deg);
}

.institutional-signature::after {
  display: block;
  width: 105px;
  height: 2px;
  margin: 8px auto 0;
  content: "";
  background: #0c5abc;
  transform: rotate(-5deg);
}

.thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  padding-top: 14px;
}

.thumbnail {
  position: relative;
  height: 116px;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 15px;
  background: #dceef8;
  box-shadow: 0 4px 13px rgba(0, 57, 116, 0.08);
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.thumbnail::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.13);
  transition: opacity 0.22s ease;
}

.thumbnail:hover { transform: translateY(-2px); box-shadow: 0 7px 17px rgba(0, 57, 116, 0.15); }

.thumbnail.is-active {
  border-color: #1375ff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.96), 0 9px 20px rgba(0, 91, 205, 0.22);
}

.thumbnail.is-active::after { opacity: 0; }
.thumbnail:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail[data-slide-to="0"] img { object-position: center 47%; }
.thumbnail[data-slide-to="1"] img { object-position: center 48%; }
.thumbnail[data-slide-to="2"] img { object-position: center 51%; }
.thumbnail[data-slide-to="3"] img { object-position: center 50%; }

.channels { padding: 27px 34px 0; }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 19px;
}

.section-divider span { width: 83px; height: 1px; background: #93cdf2; }

.section-divider h2 {
  margin: 0;
  color: #194b89;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.channel-card {
  position: relative;
  min-width: 0;
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 14px 22px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 75, 155, 0.14);
  transition: transform 0.23s ease, box-shadow 0.23s ease, filter 0.23s ease;
}

.channel-card::after {
  position: absolute;
  width: 175px;
  height: 175px;
  right: -84px;
  bottom: -97px;
  content: "";
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.075);
  transform: rotate(45deg);
  pointer-events: none;
}

.channel-card:hover {
  z-index: 2;
  filter: brightness(1.035);
  box-shadow: 0 14px 27px rgba(0, 75, 155, 0.21);
  transform: translateY(-2px);
}

.channel-card:focus-visible {
  z-index: 2;
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.site-card { background: linear-gradient(135deg, #0753eb 0%, #0875fa 70%, #13aaf2 100%); }
.whatsapp-card { background: linear-gradient(135deg, #00aa68 0%, #14c56e 58%, #45d97d 100%); }
.instagram-card { background: linear-gradient(135deg, #079cdc 0%, #13bae8 58%, #38d4ef 100%); }
.location-card { background: linear-gradient(135deg, #063c89 0%, #074eb8 56%, #116cf1 100%); }

.channel-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.channel-icon img { width: 55px; height: 55px; object-fit: contain; }

.channel-icon .location-icon {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-text {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  align-content: center;
  gap: 5px;
}

.channel-text strong {
  overflow: hidden;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-text small { font-size: 13px; font-weight: 500; line-height: 1.42; }

.channel-arrow {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.channel-card:hover .channel-arrow { background: rgba(255, 255, 255, 0.21); transform: translateX(2px); }

.channel-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 39px 20px;
  color: #1b579c;
}

.site-footer p { margin: 0; font-size: 10px; font-weight: 600; }

.footer-label { color: #205c9c; letter-spacing: 0.025em; }

.entrance { animation: enter-page 0.65s both cubic-bezier(0.2, 0.75, 0.25, 1); }
.entrance--two { animation-delay: 0.08s; }
.entrance--three { animation-delay: 0.15s; }
.entrance--four { animation-delay: 0.2s; }

@keyframes enter-page {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1260px) {
  .page-shell { width: min(1180px, calc(100% - 36px)); margin: 18px auto; }
  .site-header { min-height: 112px; }
  .hero-section, .channels { padding-left: 26px; padding-right: 26px; }
  .hero-panel { height: 445px; min-height: 445px; grid-template-columns: minmax(0, 56%) minmax(0, 44%); }
  .institutional-copy { width: 63%; padding: 27px 0 21px 24px; }
  .title-accent { margin-bottom: 15px; }
  .institutional-copy h1 { font-size: 32px; }
  .benefit-list { margin: 16px 0 14px; }
  .benefit-list li { min-height: 48px; gap: 9px; padding: 6px 10px; }
  .benefit-check { width: 31px; height: 31px; flex-basis: 31px; }
  .benefit-list strong { font-size: 10px; }
  .institutional-description { font-size: 12px; }
  .card-art { width: 66%; top: 101px; right: -68px; }
  .institutional-signature { right: 22px; font-size: 23px; }
  .channel-list { gap: 10px; }
  .thumbnail { height: 108px; }
  .channel-card { min-height: 104px; gap: 15px; padding: 13px 19px; }
  .channel-icon { width: 65px; height: 65px; flex-basis: 65px; }
  .channel-icon img { width: 52px; height: 52px; }
  .channel-icon .location-icon { width: 41px; height: 41px; }
  .channel-arrow { width: 36px; height: 36px; flex-basis: 36px; }
  .channel-text small { font-size: 12.5px; }
}

@media (max-width: 980px) {
  .page-shell { width: min(920px, calc(100% - 28px)); margin: 14px auto; }
  .hero-panel { height: auto; min-height: 0; grid-template-columns: 1fr; overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .photo-carousel { min-height: 475px; border-radius: var(--panel-radius); box-shadow: 0 13px 30px rgba(0, 76, 151, 0.13); }
  .institutional-card { min-height: 420px; margin-top: 14px; border: 1px solid rgba(199, 224, 242, 0.8); border-radius: var(--panel-radius); box-shadow: 0 12px 28px rgba(0, 76, 151, 0.09); }
  .institutional-copy { width: 59%; padding: 34px 0 28px 34px; }
  .institutional-copy h1 { font-size: 38px; }
  .benefit-list strong { font-size: 12px; }
  .institutional-description { font-size: 14px; }
  .card-art { width: 45%; top: 54px; right: 10px; }
  .institutional-signature { right: 52px; bottom: 28px; font-size: 28px; }
  .thumbnail-strip { gap: 7px; }
  .thumbnail { height: 90px; }
  .channel-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .channel-card { min-height: 112px; padding: 14px 18px; }
  .channel-text strong { font-size: 22px; }
  .channel-text small { font-size: 12px; }
}

@media (max-width: 760px) {
  body { background: linear-gradient(160deg, #f9fdff 0%, #e8f7ff 62%, #f7fcff 100%); }
  .page-shell { width: 100%; min-height: 100vh; margin: 0; overflow: hidden; border: 0; border-radius: 0; box-shadow: none; }
  .site-header { min-height: 80px; padding: 12px 18px 10px; }
  .brand { width: min(202px, 56vw); }
  .hero-section, .channels { padding-left: 18px; padding-right: 18px; }
  .photo-carousel { min-height: clamp(286px, 79vw, 350px); border-radius: 25px; }
  .carousel-slide[data-slide="0"] img { object-position: center 56%; }
  .carousel-slide[data-slide="1"] img { object-position: center 50%; }
  .carousel-slide[data-slide="2"] img { object-position: center 50%; }
  .carousel-slide[data-slide="3"] img { object-position: center 49%; }
  .photo-copy { left: clamp(18px, 5vw, 24px); bottom: 18px; max-width: min(72%, 300px); }
  .photo-copy p { font-size: clamp(19px, 5.8vw, 27px); line-height: 1.07; letter-spacing: -0.038em; }
  .photo-copy strong { font-size: 1.07em; }
  .photo-copy-rule { width: 25px; margin: 10px 0 6px; }
  .photo-copy small { max-width: 235px; font-size: clamp(7px, 1.9vw, 8.5px); line-height: 1.42; letter-spacing: 0.11em; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-arrow svg { width: 21px; height: 21px; }
  .carousel-arrow--previous { left: 13px; }
  .carousel-arrow--next { right: 13px; }
  .carousel-dots { right: clamp(22px, 7vw, 32px); bottom: 18px; gap: 9px; }
  .carousel-dot { width: 9px; height: 9px; flex-basis: 9px; }
  .institutional-card {
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(120px, 0.92fr);
    grid-template-areas:
      "accent art"
      "title art"
      "benefits benefits"
      "description description";
    column-gap: 4px;
    margin-top: 12px;
    padding: 22px 18px 20px;
  }
  .institutional-copy { display: contents; }
  .title-accent { position: relative; z-index: 3; grid-area: accent; align-self: end; width: 45px; margin: 0 0 12px; }
  .institutional-copy h1 {
    position: relative;
    z-index: 3;
    grid-area: title;
    align-self: start;
    font-size: clamp(25px, 7vw, 33px);
    line-height: 1.03;
  }
  .benefit-list { position: relative; z-index: 3; grid-area: benefits; gap: 7px; width: 100%; margin: 18px 0 12px; }
  .benefit-list li { min-height: 40px; gap: 9px; padding: 5px 9px; }
  .benefit-check { width: 29px; height: 29px; flex-basis: 29px; font-size: 19px; }
  .benefit-list strong { font-size: clamp(10px, 2.75vw, 11.5px); }
  .institutional-description {
    position: relative;
    z-index: 3;
    grid-area: description;
    width: 100%;
    font-size: clamp(12px, 3.2vw, 13.5px);
    line-height: 1.48;
  }
  .card-art {
    position: relative;
    grid-area: art;
    align-self: center;
    justify-self: end;
    width: 122%;
    top: auto;
    right: auto;
    transform: translateX(8%) rotate(-2.8deg);
    filter: drop-shadow(0 12px 17px rgba(0, 52, 111, 0.18));
  }
  .institutional-signature, .thumbnail-strip { display: none; }
  .channels { padding-top: 16px; }
  .section-divider { gap: 11px; margin-bottom: 13px; }
  .section-divider span { width: 41px; }
  .section-divider h2 { font-size: 9px; letter-spacing: 0.18em; }
  .channel-list { grid-template-columns: 1fr; gap: 9px; }
  .channel-card {
    --channel-icon-size: clamp(60px, 16vw, 66px);
    min-height: 92px;
    gap: clamp(10px, 3vw, 14px);
    padding: 9px clamp(12px, 4vw, 18px);
    border-radius: 20px;
  }
  .channel-icon { width: var(--channel-icon-size); height: var(--channel-icon-size); flex-basis: var(--channel-icon-size); }
  .channel-icon img { width: calc(var(--channel-icon-size) * 0.8); height: calc(var(--channel-icon-size) * 0.8); }
  .channel-icon .location-icon { width: calc(var(--channel-icon-size) * 0.64); height: calc(var(--channel-icon-size) * 0.64); }
  .channel-text { gap: 4px; }
  .channel-text strong { font-size: clamp(20px, 5.5vw, 22px); }
  .channel-text small { font-size: clamp(11.25px, 3vw, 12px); line-height: 1.36; }
  .channel-arrow { width: 38px; height: 38px; flex-basis: 38px; }
  .site-footer {
    min-height: 0;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 6px;
    padding: 17px 18px 21px;
    text-align: center;
  }
  .site-footer p { font-size: 9.5px; }
  .footer-label { font-size: 9.5px !important; }
}

@media (max-width: 470px) {
  .site-header { min-height: 76px; padding-top: 10px; padding-bottom: 9px; }
  .hero-section, .channels { padding-left: 14px; padding-right: 14px; }
  .photo-carousel { min-height: clamp(286px, 79vw, 330px); }
  .photo-copy { left: 18px; max-width: 70%; }
  .carousel-arrow { top: 49%; width: 39px; height: 39px; }
  .carousel-arrow--previous { left: 11px; }
  .carousel-arrow--next { right: 11px; }
  .carousel-dots { right: 20px; }
  .institutional-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(112px, 0.92fr);
    padding: 19px 15px 18px;
  }
  .title-accent { width: 42px; margin-bottom: 10px; }
  .benefit-list { gap: 6px; margin: 16px 0 11px; }
  .benefit-list li { min-height: 39px; gap: 8px; padding: 5px 8px; }
  .benefit-check { width: 27px; height: 27px; flex-basis: 27px; font-size: 17px; }
  .card-art { width: 124%; transform: translateX(9%) rotate(-2.8deg); }
  .channel-card { min-height: 90px; }
  .channel-arrow { width: 36px; height: 36px; flex-basis: 36px; }
}

@media (max-width: 350px) {
  .site-header { min-height: 72px; }
  .brand { width: min(188px, 59vw); }
  .hero-section, .channels { padding-left: 12px; padding-right: 12px; }
  .institutional-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(104px, 0.92fr);
    padding-left: 13px;
    padding-right: 13px;
  }
  .institutional-copy h1 { font-size: 24px; }
  .benefit-list strong { font-size: 9.75px; }
  .channel-card { --channel-icon-size: 58px; gap: 9px; padding-left: 11px; padding-right: 11px; }
  .channel-text small { font-size: 11px; }
  .channel-arrow { width: 34px; height: 34px; flex-basis: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
