:root {
  --navy: #06172b;
  --navy-2: #0b233f;
  --navy-3: #0f2f52;
  --brown: #4b2f22;
  --brown-2: #2f1d15;
  --orange: #f57c1f;
  --orange-2: #d96211;
  --text: #f4f7fb;
  --muted: #b8c4d6;
  --border: rgba(244, 247, 251, 0.16);
  --border-strong: rgba(244, 247, 251, 0.24);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-lg: 26px;
  --pill: 999px;
  --max: 1100px;
  --header-h: 74px;
  --t-fast: 0.16s ease-out;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--navy);
  background-image: url("img/site+bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden; /* sem scroll na página inteira */
  -webkit-font-smoothing: antialiased;
}

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

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

/* camada escura por cima do fundo */
.body-overlay {
  position: fixed;
  inset: 0;
  background:
 linear-gradient(
      to bottom,
      rgba(75, 47, 34, 0.42),
      rgba(75, 47, 34, 0.42)
    ),
    radial-gradient(
      circle at 20% 0%,
      rgba(245, 124, 31, 0.12),
      transparent 45%
    ),
    radial-gradient(circle at 80% 10%, rgba(75, 47, 34, 0.22), transparent 55%),
    linear-gradient(to bottom, rgba(6, 23, 43, 0.86), rgba(6, 23, 43, 0.93));
}

.wrapper {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* app layout */
.app {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* topbar */
.topbar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 23, 43, 0.86);
  border-bottom: 1px solid rgba(244, 247, 251, 0.08);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(11, 35, 63, 0.55);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo img {
  width: 34px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}


.brand-title {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub { display: none; /* oculto */

  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.72);
  white-space: nowrap;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 247, 251, 0.86);
}

.nav-links a {
  padding: 0.4rem 0.7rem;
  border-radius: var(--pill);
  border: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast),
    transform var(--t-fast), color var(--t-fast);
}

.nav-links a:hover {
  background: rgba(11, 35, 63, 0.7);
  border-color: rgba(244, 247, 251, 0.16);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: rgba(245, 124, 31, 0.14);
  border-color: rgba(245, 124, 31, 0.35);
  color: #fff;
}

.nav-cta {
  padding: 0.48rem 0.95rem;
  border-radius: var(--pill);
  border: 1px solid rgba(245, 124, 31, 0.22);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform var(--t-fast), filter var(--t-fast);
  white-space: nowrap;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: var(--pill);
  background: rgba(244, 247, 251, 0.9);
}

/* área que pode rolar */
.scroll-area {
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.35rem 0 2.2rem;
}

/* scrollbar bonita */
.scroll-area::-webkit-scrollbar {
  width: 10px;
}

.scroll-area::-webkit-scrollbar-thumb {
  background: rgba(244, 247, 251, 0.14);
  border-radius: var(--pill);
  border: 2px solid rgba(6, 23, 43, 0.35);
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
}

/* cards */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(11, 35, 63, 0.66);
  backdrop-filter: blur(10px);
}

.card.pad {
  padding: 1.25rem 1.3rem;
}

.card + .card {
  margin-top: 1rem;
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 124, 31, 0.88);
}

.h1 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1.12;
  margin-top: 0.65rem;
}

.h2 {
  font-size: 1.55rem;
  margin-top: 0.4rem;
}

.sub {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* hero */
.hero {
  padding: 2.3rem 0 1.1rem;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.hero-logo img {
  width: 170px;
  max-width: 60vw;
}

.hero-quote {
  margin: 1.1rem auto 0;
  max-width: 880px;
  font-size: 0.95rem;
  color: rgba(244, 247, 251, 0.84);
}

.hero-quote em {
  font-style: normal;
  color: #fff;
}

.actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.35rem;
  border-radius: var(--pill);
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast),
    border-color var(--t-fast), filter var(--t-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: rgba(245, 124, 31, 0.22);
  color: #fff;
}

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

.btn-ghost {
  background: rgba(11, 35, 63, 0.58);
  border-color: rgba(244, 247, 251, 0.16);
  color: rgba(244, 247, 251, 0.95);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(11, 35, 63, 0.72);
}

.small-note {
  margin-top: 0.95rem;
  font-size: 0.86rem;
  color: rgba(244, 247, 251, 0.74);
}

/* seção */
.section {
  padding: 1.35rem 0;
}

.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 1.1rem;
}

.section-head.left {
  text-align: left;
}

/* cards com banner */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: start;
}


.feature {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(11, 35, 63, 0.25);
  transform: translateY(0);
  transition: transform var(--t-fast), border-color var(--t-fast);
}


.feature-img {
  width: 100%;
  height: auto;
  display: block;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 124, 31, 0.32);
}

.feature .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.feature .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 23, 43, 0.96),
    rgba(6, 23, 43, 0.25)
  );
}

.feature .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.1rem 1.15rem;
}


.feature .title {
  font-size: 1.05rem;
  font-weight: 700;
}

.feature .desc {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: rgba(244, 247, 251, 0.82);
}

/* banner de página */
.page-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 247, 251, 0.16);
  background: rgba(11, 35, 63, 0.55);
}

.page-banner .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 23, 43, 0.92),
    rgba(6, 23, 43, 0.48)
  );
}

.page-banner .inner {
  position: relative;
  padding: 1.4rem 1.35rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.page-banner h1 {
  font-size: 1.7rem;
  line-height: 1.15;
}

.page-banner p {
  margin-top: 0.45rem;
  color: rgba(244, 247, 251, 0.82);
  max-width: 680px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--pill);
  border: 1px solid rgba(245, 124, 31, 0.28);
  background: rgba(245, 124, 31, 0.14);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* tabela */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table thead {
  background: rgba(6, 23, 43, 0.86);
}

.table th,
.table td {
  padding: 0.82rem 1rem;
  border-bottom: 1px solid rgba(244, 247, 251, 0.1);
  vertical-align: top;
}

.table th {
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.78);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* listas */
.ul {
  margin-top: 0.55rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.ul li {
  color: rgba(244, 247, 251, 0.86);
  font-size: 0.92rem;
}

.ul li + li {
  margin-top: 0.24rem;
}

.callout {
  margin-top: 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(245, 124, 31, 0.22);
  background: rgba(245, 124, 31, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.callout.dark {
  border-color: rgba(244, 247, 251, 0.14);
  background: rgba(11, 35, 63, 0.62);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.pill {
  padding: 0.32rem 0.85rem;
  border-radius: var(--pill);
  border: 1px solid rgba(244, 247, 251, 0.14);
  background: rgba(11, 35, 63, 0.58);
  color: rgba(244, 247, 251, 0.86);
  font-size: 0.82rem;
  white-space: nowrap;
}

.pill.orange {
  border-color: rgba(245, 124, 31, 0.28);
  background: rgba(245, 124, 31, 0.12);
}

/* contato */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.9rem;
  border-radius: var(--pill);
  border: 1px solid rgba(245, 124, 31, 0.24);
  background: rgba(245, 124, 31, 0.12);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform var(--t-fast), background var(--t-fast),
    border-color var(--t-fast);
}

.link-pill:hover {
  transform: translateY(-1px);
  background: rgba(245, 124, 31, 0.16);
  border-color: rgba(245, 124, 31, 0.35);
}

.link-pill.neutral {
  border-color: rgba(244, 247, 251, 0.16);
  background: rgba(11, 35, 63, 0.58);
  font-weight: 500;
}

.link-pill.neutral:hover {
  background: rgba(11, 35, 63, 0.72);
  border-color: rgba(244, 247, 251, 0.22);
}

/* footer */
.footer {
  margin-top: 1.6rem;
  text-align: center;
  color: rgba(244, 247, 251, 0.72);
  font-size: 0.82rem;
}

.footer a {
  color: rgba(245, 124, 31, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--header-h) - 10px);
    right: 1.2rem;
    left: 1.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(6, 23, 43, 0.94);
    border: 1px solid rgba(244, 247, 251, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

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

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

  .section-head.left {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-logo img {
    width: 150px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* utilidades */
.spacer { height: 1rem; }

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

.table-wrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(6, 23, 43, 0.35);
}

.table-wrap .table {
  min-width: 720px;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
}
