:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: rgba(107, 114, 128, 0.95);
  --border: rgba(31, 41, 55, 0.12);
  --accent: #b9d84a;
  --accent-strong: #39c1a2;
  --primary: #20b9b0;
  --primary-strong: #00b6d2;
  --primary-soft: rgba(0, 182, 210, 0.1);
  --shadow: 0 18px 50px rgba(31, 41, 55, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section h2,
.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.section p,
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.top-bar {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 50%, var(--primary-strong) 100%);
  color: #ffffff;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  font-size: 0.95rem;
}

.top-bar-link {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand img {
  width: 188px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:not(.button) {
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:not(.button):hover {
  color: var(--primary-strong);
  background: var(--primary-soft);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--accent-strong) 0%, var(--primary-strong) 100%);
  box-shadow: 0 16px 36px rgba(0, 182, 210, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(31, 41, 55, 0.04);
  border-color: rgba(31, 41, 55, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 193, 162, 0.18), transparent 42%),
    radial-gradient(circle at 84% 26%, rgba(185, 216, 74, 0.2), transparent 46%),
    radial-gradient(circle at 78% 78%, rgba(0, 182, 210, 0.12), transparent 44%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 44%, rgba(255, 255, 255, 0.64) 100%),
    url("./imagens/Banner Home.png") center/cover no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
  align-items: end;
  gap: 40px;
  min-height: calc(100vh - 84px);
  padding: 72px 0 88px;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 5.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-card-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-card-text {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-strong);
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-card-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(0, 182, 210, 0.16);
  border-radius: 999px;
  background: rgba(0, 182, 210, 0.06);
  color: rgba(107, 114, 128, 0.98);
  font-size: 0.9rem;
  font-weight: 600;
}

.projects {
  background: var(--bg-soft);
}

.projects-stage {
  padding: 38px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.projects-wheel {
  position: relative;
  width: min(880px, 100%);
  height: 320px;
  margin: 0 auto;
}

.projects-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 41, 55, 0.12);
  box-shadow: 0 22px 60px rgba(31, 41, 55, 0.14);
  display: grid;
  place-items: center;
  z-index: 2;
}

.projects-wheel-center::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 240deg,
      rgba(185, 216, 74, 0.96) 0%,
      rgba(57, 193, 162, 0.94) 45%,
      rgba(0, 182, 210, 0.92) 80%,
      rgba(185, 216, 74, 0.96) 100%
    );
  filter: blur(0.2px);
  z-index: -1;
}

.projects-wheel-center img {
  width: 175px;
  height: auto;
}

.pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 36px rgba(31, 41, 55, 0.14);
  transition: transform 180ms ease, filter 180ms ease;
}

.pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.pill-teal {
  background: rgba(57, 193, 162, 0.96);
}

.pill-blue {
  background: rgba(0, 182, 210, 0.96);
}

.pill-green {
  background: rgba(185, 216, 74, 0.96);
  color: rgba(31, 41, 55, 0.92);
}

.pill-pink {
  background: rgba(32, 185, 176, 0.96);
}

.pill-left {
  left: 0;
  top: 42%;
  transform: translateY(-50%);
}

.pill-left-bottom {
  left: 14%;
  bottom: 8%;
}

.pill-right {
  right: 0;
  top: 56%;
  transform: translateY(-50%);
}

.pill-right-top {
  right: 10%;
  top: 16%;
}

.about-grid,
.impact-grid,
.footer-grid {
  display: grid;
  gap: 40px;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  align-items: center;
}

.section-copy p + p {
  margin-top: 18px;
}

.about-media {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.principles-grid,
.axes-grid,
.audience-grid {
  display: grid;
  gap: 22px;
}

.principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.axes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.axis-card,
.audience-panel,
.cta-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card,
.axis-card,
.audience-panel {
  padding: 28px;
}

.info-card h3,
.axis-card h3,
.footer-column h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.info-card p,
.axis-card p,
.footer-brand p,
.footer-column a,
.footer-column span {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.checklist,
.bullet-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.checklist li + li,
.bullet-list li + li {
  margin-top: 10px;
}

.checklist strong {
  color: rgba(31, 41, 55, 0.88);
}

.audience-panel-secondary {
  background: linear-gradient(180deg, rgba(0, 182, 210, 0.06), rgba(57, 193, 162, 0.02));
}

.clients {
  background: var(--bg-soft);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.client-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.client-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 182, 210, 0.28);
}

.client-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(185, 216, 74, 0.26);
  color: rgba(31, 41, 55, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.client-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.client-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: rgba(0, 182, 210, 0.98);
}

.events-list {
  display: grid;
  gap: 32px;
}

.event-group {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.event-trigger {
  width: 100%;
  padding: 28px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.event-trigger:hover {
  transform: translateY(-2px);
}

.event-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.event-group-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.event-group-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 182, 210, 0.1);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-trigger:focus-visible,
.event-modal-close:focus-visible,
.event-modal-nav:focus-visible,
.event-modal-thumb:focus-visible {
  outline: 3px solid rgba(0, 182, 210, 0.28);
  outline-offset: 3px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-photo {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.event-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.modal-open {
  overflow: hidden;
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.event-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.event-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
}

.event-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.04);
  cursor: pointer;
}

.event-modal-header {
  margin-bottom: 20px;
  padding-right: 56px;
}

.event-modal-kicker {
  margin: 0 0 8px;
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-modal-header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.event-modal-content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.event-modal-nav {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.04);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.event-modal-figure {
  margin: 0;
}

.event-modal-figure img {
  width: 100%;
  max-height: 64vh;
  border-radius: 20px;
  object-fit: cover;
}

.event-modal-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.event-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.event-modal-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.event-modal-thumb.is-active {
  border-color: var(--primary-strong);
}

.event-modal-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  background:
    linear-gradient(120deg, rgba(185, 216, 74, 0.18), rgba(0, 182, 210, 0.08)),
    rgba(255, 255, 255, 1);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.cta-text {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.site-footer {
  padding: 32px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  align-items: start;
}

.footer-brand img {
  width: 180px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  color: rgba(107, 114, 128, 0.9);
  border-top: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .hero-content,
  .about-grid,
  .principles-grid,
  .axes-grid,
  .audience-grid,
  .clients-grid,
  .events-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: center;
  }

  .hero-card {
    max-width: 520px;
  }

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

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 72px 0 72px;
  }

  .projects-stage {
    padding: 28px;
  }

  .projects-wheel {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
  }

  .projects-wheel-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: 220px;
    grid-column: 1 / -1;
  }

  .pill {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-group-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-modal-dialog {
    padding: 22px;
  }

  .event-modal-content {
    grid-template-columns: 1fr;
  }

  .event-modal-nav {
    width: 100%;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }

  .header-content {
    min-height: 78px;
  }

  .brand img {
    width: 150px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .hero-actions,
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .info-card,
  .axis-card,
  .audience-panel,
  .cta-panel,
  .event-trigger {
    padding: 22px;
  }

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

  .event-modal {
    padding: 14px;
  }

  .event-modal-dialog {
    padding: 18px;
  }

  .event-modal-header {
    padding-right: 44px;
  }
}
