:root {
  --bg: #061126;
  --bg-2: #071a36;
  --blue: #055ce8;
  --blue-light: #1685ff;
  --gold: #d9a653;
  --gold-2: #f2c36b;
  --text: #ffffff;
  --muted: #c5cde0;
  --card: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(5, 92, 232, 0.25), transparent 34%),
    linear-gradient(135deg, #030813 0%, var(--bg) 45%, #02050c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: linear-gradient(to bottom, rgba(2, 6, 14, 0.9), rgba(2, 6, 14, 0.28));
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217, 166, 83, 0.65);
  border-radius: 16px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: -2px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 26px rgba(217, 166, 83, 0.12);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.52em;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
}

.nav a:hover {
  color: var(--gold-2);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 6vw 80px;
  background:
    linear-gradient(90deg, rgba(2, 6, 14, 0.96) 0%, rgba(4, 13, 31, 0.78) 34%, rgba(4, 13, 31, 0.18) 66%, rgba(2, 6, 14, 0.5) 100%),
    url("assets/banner-rafaela-neves.png") 28% center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(2, 8, 20, 1), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}

h1 span {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: clamp(1.1rem, 2.7vw, 2.15rem);
  letter-spacing: 0.38em;
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-primary {
  color: #081326;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 40px rgba(217, 166, 83, 0.22);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-3px);
}

.banner-showcase {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 8vw));
  margin: -52px auto 40px;
  padding: 10px;
  border: 1px solid rgba(217, 166, 83, 0.32);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(217, 166, 83, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.banner-showcase img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.section {
  position: relative;
  padding: 96px 6vw;
}

.section-header {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-grid,
.values-grid,
.responsaveis-grid {
  display: grid;
  gap: 18px;
}

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

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.about-card,
.value-item,
.responsavel-card,
.cta {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.about-card {
  min-height: 230px;
  padding: 30px;
  border-radius: 28px;
}

.about-card.featured {
  background: linear-gradient(145deg, rgba(5, 92, 232, 0.32), rgba(255, 255, 255, 0.05));
}

.about-card h3 {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 1.28rem;
}

.about-card p,
.cta p {
  color: var(--muted);
  line-height: 1.75;
}

.values {
  background: linear-gradient(180deg, rgba(5, 92, 232, 0.08), rgba(0, 0, 0, 0));
}

.value-item,
.responsavel-card {
  min-height: 150px;
  padding: 26px;
  border-radius: 24px;
}

.value-item span,
.responsavel-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 900;
}

.value-item strong {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.responsaveis {
  background:
    radial-gradient(circle at center, rgba(217, 166, 83, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.02);
}

.responsavel-card {
  text-align: center;
}

.responsavel-card span {
  margin-bottom: 24px;
}

.responsavel-card h3 {
  color: var(--text);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta {
  width: min(1180px, calc(100% - 12vw));
  margin: 30px auto 110px;
  justify-content: space-between;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at right, rgba(217, 166, 83, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(5, 92, 232, 0.26), rgba(255, 255, 255, 0.04));
}

.cta div {
  max-width: 700px;
}

.cta p:last-child {
  margin-top: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 1.7rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 6vw;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

.footer span {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.12em;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    background-position: 30% center;
  }

  .about-grid,
  .values-grid,
  .responsaveis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 16px 5vw;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 820px;
    padding: 126px 5vw 60px;
    align-items: flex-end;
    background-position: 26% center;
  }

  h1 span {
    letter-spacing: 0.18em;
  }

  .btn {
    width: 100%;
    padding: 0 20px;
  }

  .banner-showcase {
    width: calc(100% - 10vw);
    margin-top: -30px;
    padding: 6px;
    border-radius: 22px;
  }

  .banner-showcase img {
    border-radius: 16px;
  }

  .section {
    padding: 72px 5vw;
  }

  .about-grid,
  .values-grid,
  .responsaveis-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    width: calc(100% - 10vw);
    padding: 28px;
    margin-bottom: 70px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}
