@import url('https://fonts.googleapis.com/css2?family=Forum&family=Jura:wght@300&display=swap');

:root{
  --bg: #e9eaee;         /* cinza claro */
  --card: #ffffff;       /* branco */
  --text: #0b0b0b;       /* preto */
  --muted: #475569;      /* cinza texto secundário */
  --accent: #0b3a4a;     /* azul petróleo (troque se quiser) */
  --border: #d7dde6;
}

* { box-sizing: border-box; }

body { margin: 0; font-family: "Forum", serif; font-style: normal; font-weight: 500; background: #f1f2f4; color: #000000; position: relative; overflow-x: hidden;}

body::before, body::after{ content:""; position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse at 15% 20%, rgb(240, 235, 235) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(ellipse at 85% 30%, rgba(210, 221, 210, 0.55) 0%, rgba(255,255,255,0) 50%),
    radial-gradient(ellipse at 60% 85%, rgba(104, 197, 204, 0.5) 0%, rgba(255,255,255,0) 55%);
  filter: blur(2px);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.nav { position: sticky; top: 0; background: rgba(246,247,251,.8); backdrop-filter: blur(10px); border-bottom: 1px solid #e5e7eb; }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 200; font-size: 200%; }
.links { display: flex; gap: 18px; align-items: center; }
.links a { text-decoration: none; color: #2f2f2f; }
.links a:hover { color: var(--accent); font-weight: 800; font-size: 16px;}

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 10px; border: 1px solid #e5e7eb; background: #fff; 
    transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.08); text-decoration: none;}
.btn.primary { background: #111827; color: #fff; border-color: #111827; }
.btn.ghost { background: transparent; border-color: #cfd5df; color: black ;}

.hero {
  padding: 72px 20px;
  display: grid;
  grid-template-columns: 1.0fr 1.0fr;
  gap: 20px;
  align-items: center;
}
.hero-content { max-width: 680px; }
.hero-image { display: flex; justify-content: flex-end; }
.hero-image img {
  width: min(100%, 100%);
  height: auto;
  display: block;
}
.hero h1 { font-size: 44px; line-height: 1.05; margin: 0 0 12px; }
.hero p { margin: 0 0 18px; font-size: 18px; color: #475569; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; }

.section { padding: 44px 20px; }
.section h2 { margin: 0 0 14px; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; min-height: 72px; box-shadow: 0 8px 20px rgba(0,0,0,.06) }

.footer { padding: 28px 0; border-top: 1px solid #636363; color: #000000; }

.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: #475569; line-height: 1.5; }

@media (max-width: 900px) {
  .brand { font-size: 120%; }
  .grid3 { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 52px 20px;
  }
  .hero-image { justify-content: center; }
  .hero h1 { font-size: 34px; }
}
