:root {
  --blue: #064894;
  --blue-dark: #05336f;
  --red: #e81931;
  --green: #21b15b;
  --ink: #172033;
  --muted: #5f6f84;
  --line: #dce4ef;
  --surface: #ffffff;
  --soft: #f6f8fc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  width: 100%;
  height: 100vh;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--soft);
  overflow: hidden;
}

main {
  height: calc(100vh - 252px);
}

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

.site-header {
  width: 100%;
  height: 104px;
  margin: 0 auto;
  padding: 10px 32px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 280px;
  max-width: 42vw;
  max-height: 84px;
  height: auto;
  display: block;
}

.restricted-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--blue-dark);
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue-dark);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(5, 51, 111, 0.22);
}

.restricted-link:hover,
.restricted-link:focus-visible {
  border-color: rgba(6, 72, 148, 0.5);
  outline: none;
}

.banner-section {
  width: 100%;
  height: calc(100% - 82px);
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #eef3f9;
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.1);
}

.banner-section::before {
  content: none;
}

.banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.24);
}

.banner-background {
  position: absolute;
  inset: -18px;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  display: block;
  object-fit: cover;
  object-position: center;
  filter: blur(14px);
  opacity: 0.42;
  transform: scale(1.04);
}

.main-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.action-grid {
  width: 100%;
  margin: 0 auto;
  height: 82px;
  padding: 10px 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.action-card {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(6, 72, 148, 0.35);
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.13);
  outline: none;
}

.action-card--primary {
  color: #ffffff;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #bb1025);
}

.action-card--whatsapp {
  color: #ffffff;
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green), #128c45);
  justify-content: flex-start;
}

.action-card__label,
.action-card__text {
  display: block;
}

.action-card__label {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}

.action-card__text {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.action-card--primary .action-card__text,
.action-card--whatsapp .action-card__text {
  color: rgba(255, 255, 255, 0.86);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-icon svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  fill: #ffffff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  height: 148px;
  padding: 12px 32px 10px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
}

.section-kicker {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.footer-copy p {
  margin-bottom: 4px;
}

.footer-copy strong {
  color: var(--blue-dark);
}

@media (max-width: 820px) {
  main {
    height: calc(100vh - 344px);
  }

  .site-header {
    height: 86px;
    padding: 9px 18px 7px;
  }

  .brand img {
    width: 210px;
    max-width: 50vw;
    max-height: 70px;
  }

  .restricted-link {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .banner-section {
    height: calc(100% - 222px);
  }

  .action-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .action-grid {
    height: 222px;
    padding: 10px 18px;
  }

  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 258px;
  }

  .action-card {
    min-height: 60px;
  }

  .action-card__label {
    font-size: 1rem;
  }

  .action-card__text {
    font-size: 0.82rem;
    margin-top: 3px;
  }
}

@media (max-width: 520px) {
  main {
    height: calc(100vh - 354px);
  }

  .site-header {
    height: 80px;
    padding: 8px 10px 6px;
  }

  .brand img {
    width: 166px;
    max-width: 48vw;
    max-height: 64px;
  }

  .restricted-link {
    max-width: 145px;
    min-height: 42px;
    text-align: center;
    line-height: 1.15;
  }

  .main-banner {
    object-position: center;
  }

  .banner-section {
    height: calc(100% - 216px);
  }

  .action-grid {
    height: 216px;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-inner {
    padding-left: 10px;
    padding-right: 10px;
    height: 274px;
  }
}
