:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-alt: #eef4ff;
  --text: #122033;
  --muted: #5e6b85;
  --primary: #0f6fff;
  --primary-dark: #0a4fc0;
  --border: #dde6f3;
  --shadow: 0 18px 50px rgba(18, 32, 51, 0.08);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #4f8dff);
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 0.3rem;
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--text);
}

.hero {
  padding: 5rem 0;
  background:
    radial-gradient(circle at top right, rgba(15, 111, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.hero h1,
.section-heading h2,
.benefits h2,
.contact h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text,
.section-heading p,
.benefits p,
.contact p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1rem 0 1.5rem;
}

.registry-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--surface-alt);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.registry-text {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: #fff;
}

.btn-small {
  padding: 0.65rem 0.9rem;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-highlights li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: linear-gradient(180deg, #0d4fc3, #123b74);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  text-align: center;
}

.card-label {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: 1.4rem;
  margin: 0.4rem 0;
}

.quote-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
}

.quote-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.quote-meta.values {
  font-weight: 700;
  color: var(--text);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.partners {
  padding: 1rem 0 3rem;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.9rem 1rem;
}

.services,
.benefits,
.rates,
.contact,
.gallery {
  padding: 4.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.card-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.image-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.image-card div {
  padding: 1rem 1rem 1.2rem;
}

.image-card h3 {
  margin-bottom: 0.4rem;
}

.image-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-card,
.benefit-panel,
.contact-form,
.table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.8rem;
}

.icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--surface-alt);
  border-radius: 10px;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefits-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.benefit-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.benefit-panel {
  padding: 1rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
  border-bottom: 0;
}

.benefit-item span {
  color: var(--primary);
  font-weight: 800;
}

.table-wrap {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--surface-alt);
}

.contact-form {
  padding: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.site-footer {
  padding: 1.5rem 0 3rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  gap: 0.8rem;
}

.footer-cnpj {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-grid,
  .benefits-grid,
  .contact-grid,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero h1,
  .section-heading h2,
  .benefits h2,
  .contact h2 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.6rem;
  }
}
