:root {
  --brand1: #d343be;
  --brand2: #7209b7;
  --brand3: #3b82f6;
  --brandDark: #345288;
  --bg: #f8f9fb;
  --card: #fff;
  --muted: #345288bb;
  --shadow: 0 8px 38px #3b82f614;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--brandDark);
  background: var(--bg);
  overflow-x: hidden;
}

/* background mesh */
.bg-mesh {
  position: fixed;
  width: 140vw; height: 120vh; left: -15vw; top: -10vh;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 70% 25%, #d343be30 0, #3b82f640 60%, #fff 100%),
    radial-gradient(circle at 25% 85%, #7209b733 0, #fff0 80%);
  filter: blur(10px); opacity: .9;
}

/* navbar */
.navbar { position: relative; z-index: 3; }
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 28px 22px 8px;
  display: flex; align-items: center; justify-content: space-between;
}
/* Navbar */
.logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
.logo-img {
  height: 200px;           /* ajusta aqui a altura do logo no header */
  width: auto;
  display: block;
}

/* Hero */
.symbol-bg {
  /* já deve existir – mantém o círculo “medalha” */
  width: 220px;           /* aumenta/diminui para ficar perfeito */
  height: 220px;
  border-radius: 50%;
  background: #ffffffd9;
  border: 2px solid #d343be1f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px #7209b71c;
}
.hero-logo {
  width: 100%;             /* controla o tamanho do logo dentro da “medalha” */
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(19,39,79,.12));
}



.gradient {
  background: linear-gradient(90deg, var(--brand1), var(--brand2), var(--brand3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
          background-clip: text;         color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--brandDark);
  font-size: 1.02rem; font-weight: 600; opacity: .9;
}
.nav-links a:hover { color: var(--brand1); }
.lang-switch { display: inline-flex; align-items: center; gap: 8px; margin-left: 6px; }
.lang-btn {
  border: 1px solid #e3e6ef; background: #fff; color: var(--brandDark);
  padding: 6px 10px; border-radius: 10px; font-weight: 700; cursor: pointer;
}
.lang-btn[aria-pressed="true"] { border-color: var(--brand2); color: var(--brand2); }
.lang-divider { color: #9aa6bf; }

/* hero */
.hero {
  max-width: 1280px; margin: 0 auto; padding: 40px 22px 10px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px;
  align-items: center; position: relative; z-index: 2;
  min-height: 420px;
}
.hero-title {
  font-size: 3rem; font-weight: 900; letter-spacing: -1.4px; margin: 0 0 16px;
  color: #1b1f2a;
}
.hero-desc { font-size: 1.14rem; color: var(--muted); margin: 0 0 20px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; text-decoration: none; color: #fff;
  background: linear-gradient(90deg, var(--brand1), var(--brand3));
  padding: 12px 24px; border-radius: 14px; font-weight: 800; letter-spacing: .02em;
  box-shadow: 0 3px 18px #d343be26;
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  display: inline-block; text-decoration: none; color: var(--brand2);
  padding: 12px 20px; border-radius: 14px; font-weight: 800; border: 2px solid var(--brand2);
  background: #fff;
}
.btn-ghost:hover { background: #faf7ff; }
.hero-right { display: flex; justify-content: center; }
.symbol-bg {
  width: 200px; height: 200px; border-radius: 50%;
  background: #ffffffd9; border: 2px solid #d343be1f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px #7209b71c;
}

/* sections */
.section { max-width: 1280px; margin: 0 auto; padding: 48px 22px; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 18px; }
.section h2 { font-size: 2rem; margin: 0 0 8px; }
.section-sub { font-size: 1.06rem; color: var(--muted); margin: 0; }

.cards { display: grid; gap: 18px; margin-top: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card); border: 1px solid #dfe3ef; border-radius: 16px;
  padding: 20px; box-shadow: var(--shadow);
}
.card h3 { margin: 8px 0 6px; }
.card p { margin: 0; color: #334059; }

/* icons */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.card-icon svg {
  width: 28px;
  height: 28px;
}


/* products */
.product .product-logo { height: 80px; display:flex; align-items:center; margin-bottom: 6px; }
.product svg { height: 80px; width: auto; }

/* form */
.contact-form {
  max-width: 720px; margin: 0 auto; background: var(--card);
  border: 1px solid #e6e8f2; border-radius: 16px; padding: 20px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 700; }
input, textarea {
  font: inherit; padding: 12px; border: 1px solid #cfd6ea; border-radius: 12px;
  outline: none; transition: border-color .15s;
}
input:focus, textarea:focus { border-color: var(--brand2); }
.form-actions { display: flex; align-items: center; gap: 12px; }
.status { font-size: .95rem; color: #53607a; min-height: 1.2em; }

/* footer */
.footer { text-align: center; padding: 28px 18px 40px; color: #66738f; }

/* responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-right { order: -1; }
}
@media (max-width: 860px) {
  .cards.three { grid-template-columns: 1fr 1fr; }
  .cards.two { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards.three { grid-template-columns: 1fr; }
  .logo-title { font-size: 1.3rem; }
  .logo-symbol { width: 52px; height: 52px; }
}

/* Responsivo */
@media (max-width: 560px) {
  .logo-img { height: 60px; }
  .symbol-bg { width: 200px; height: 200px; }
  .hero-logo { width: 80%; }
}
