:root {
  --brand-dark: #073763;
  --brand: #0b4f77;
  --accent: #f68b1f;
  --muted: #5d6b75;
  --bg: #f8fbfd;
  --bg-alt: #e9f2fa;
}

/* RESET BÁSICO */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2730;
  background: #ffffff;
  line-height: 1.6;
}
a {
  color: var(--brand);
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  border-bottom: 1px solid #dde4ec;
  background: #ffffff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.logo img {
  height: 180px;        /* Logo grande e destacado, 2x maior que padrão normal */
  display: block;
}

/* NAV */
nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  flex-wrap: wrap;
}
nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: #244055;
}
nav a:hover {
  background: #eef4fa;
}

/* HERO */
.hero {
  background: var(--bg-alt);
  padding: 40px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  font-size: 30px;
  color: var(--brand-dark);
  margin: 0 0 12px;
}
.hero .lead {
  font-size: 17px;
  color: #223442;
  margin-bottom: 20px;
}
.badge {
  display: inline-block;
  background: #d3e3f3;
  color: #204a64;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-image-wrapper {
  width: 100%;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* BOTÕES */
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  background: var(--brand);
  color: #ffffff;
}
.btn.secondary {
  background: var(--accent);
}
.btn.whatsapp {
  background: #25D366;
}

/* SEÇÕES */
.section {
  padding: 40px 0;
}
.section-alt {
  background: #f3f7fc;
}
.section-title {
  font-size: 24px;
  color: var(--brand-dark);
  margin: 0 0 8px;
}
.section-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}

/* LAYOUT 2 COLUNAS */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.two-col-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* TEXTOS E LISTAS */
p {
  margin: 0 0 10px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.list li {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
}
.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* GRID / CARDS DE SERVIÇOS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  border: 1px solid #dde5ee;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 14px 16px 16px;
}
.card-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--brand-dark);
}
.card-body p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #445666;
}
.mini-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}
.mini-list li {
  font-size: 13px;
  color: #556675;
  padding-left: 12px;
  position: relative;
}
.mini-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* FORMULÁRIOS */
.form-block {
  margin-top: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
label {
  font-size: 13px;
  font-weight: 600;
  color: #234054;
}
input, select, textarea {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccd7e3;
  font-size: 14px;
  font-family: inherit;
}
textarea {
  min-height: 90px;
  resize: vertical;
}

/* FOOTER */
footer {
  background: #f1f5fb;
  border-top: 1px solid #dde4ec;
}
.footer-inner {
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVO */
@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    order: 3;
  }
  .logo img {
    height: 150px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-image-wrapper {
    order: -1;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .logo img {
    height: 130px;
  }
}
