:root {
  --green: #007a45;
  --green-dark: #003f2a;
  --red: #d71920;
  --text: #101513;
  --muted: #5f6f68;
  --white: #ffffff;
  --soft: #f6f8f6;
  --shadow: 0 24px 80px rgba(0, 44, 28, .13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--soft);
  color: var(--text);
}

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

.page {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 32px 20px 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,122,69,.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(215,25,32,.12), transparent 25%),
    url("./assets/assados-guido.jpg") center/cover no-repeat;
  opacity: .18;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8faf8 58%, #edf7f1 100%);
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 64px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 12px 35px rgba(0,0,0,.07);
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(215,25,32,.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: center;
}

.copy {
  max-width: 680px;
  animation: rise .7s ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .92;
  letter-spacing: -.07em;
}

.subtitle {
  margin: 24px 0 0;
  color: var(--green-dark);
  font-size: clamp(21px, 2.3vw, 30px);
  font-weight: 900;
}

.text {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.notice {
  margin-top: 34px;
  max-width: 460px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.notice strong {
  display: block;
  margin-bottom: 5px;
  font-size: 21px;
}

.notice span {
  color: var(--muted);
  font-size: 16px;
}

.identity-card {
  position: relative;
  width: 360px;
  height: 360px;
  padding: 38px;
  border-radius: 42px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.identity-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,69,.22), transparent 68%);
}

.supporters {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-head p {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

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

.support-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(0,0,0,.12);
}

.image-wrap {
  height: 310px;
  background: #f3f5f3;
}

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

.logo-card {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  object-fit: contain;
}

.card-text {
  padding: 26px;
}

.card-text h3 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: -.03em;
}

.card-text p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .topbar {
    justify-content: center;
    margin-bottom: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .copy {
    margin: 0 auto;
  }

  .notice {
    margin-left: auto;
    margin-right: auto;
  }

  .identity-card {
    width: min(330px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

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

@media (max-width: 560px) {
  .hero {
    padding: 24px 18px 58px;
  }

  .content,
  .supporters,
  .footer {
    width: 100%;
  }

  h1 {
    font-size: 45px;
  }

  .text {
    font-size: 17px;
  }

  .identity-card {
    width: 260px;
    border-radius: 32px;
    padding: 28px;
  }

  .supporters {
    padding: 64px 20px;
  }

  .image-wrap {
    height: 260px;
  }

  .footer {
    padding: 26px 20px 36px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}