/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  color: #141414;
  background: #f5f6fa;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===========================
   CONTAINERS E SEÇÕES
=========================== */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  background: #ffffff;
}

.section-alt {
  background: #f1f3f8;
}

.section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: #001369;
}

.section-subtitle {
  margin-bottom: 32px;
  font-size: 15px;
  color: #555;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
}

.two-columns.middle {
  align-items: center;
}

/* ===========================
   NAVBAR (TOPO)
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #e1e4ec;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #0026cf;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #0026cf;
  color: #0026cf;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #001369;
}

/* ===========================
   HERO (TOPO AZUL)
=========================== */
.hero {
  background: linear-gradient(135deg, #001369 0%, #001c93 60%, #0026cf 100%);
  color: #ffffff;
  padding: 120px 0 160px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

/* Badge */
.hero-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Título hero */
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-highlight {
  color: #00b8ff;
}

/* Texto hero */
.hero p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 24px;
}

/* Ações hero (botões) */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

/* Badges hero */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.hero-badges li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  font-size: 12px;
}

/* ===========================
   HERO - LOGO CÍRCULO
=========================== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-logo-img {
  width: 70%;
  height: auto;
}

/* ===========================
   BOTÕES (GERAL)
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #00b2ff;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 178, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 178, 255, 0.45);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
}

/* ===========================
   CARDS / GRIDS / TEXTOS
=========================== */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pill-card {
  background: #f1f3f8;
  border-radius: 16px;
  padding: 18px;
}

.pill-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #001c93;
  margin-bottom: 8px;
}

.pill-card p {
  font-size: 14px;
  color: #444;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.cards-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 18px;
  border: 1px solid #dde1ee;
  box-shadow: 0 10px 25px rgba(7, 15, 43, 0.04);
}

.card-soft {
  border-style: dashed;
}

.card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #001369;
}

.card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

.card ul {
  list-style: none;
  font-size: 13px;
  color: #555;
}

.card ul li::before {
  content: "• ";
  color: #0026cf;
}

/* Checklist (modelo para condomínios) */
.checklist {
  list-style: none;
  margin-top: 18px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  color: #00b442;
}

/* Card azul modelo */
.modelo-card {
  background: linear-gradient(145deg, #001369 0%, #0026cf 65%);
  border-radius: 22px;
  color: #ffffff;
  padding: 24px 22px 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.modelo-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.modelo-text {
  margin: 14px 0 18px;
  font-size: 15px;
  line-height: 1.6;
}

/* ===========================
   CONTATO / FORMULÁRIO
=========================== */
.section-contact {
  background: #ffffff;
}

.form-contato {
  background: #f7f8fc;
  border-radius: 24px;
  padding: 24px 24px 20px;
  border: 1px solid #e1e4ef;
  box-shadow: 0 16px 40px rgba(7, 15, 43, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid #ccd1e0;
  font-size: 14px;
  outline: none;
  background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0026cf;
  box-shadow: 0 0 0 1px rgba(0, 38, 207, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===========================
   DIFERENCIAIS
=========================== */

.section-diferenciais {
  background: #f6f8fc;
}

.section-diferenciais .container {
  max-width: 1100px;
}

.section-diferenciais h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.section-diferenciais .section-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Grid de destaques (3 colunas) */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.diferencial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 26px rgba(7, 15, 43, 0.06);
  border: 1px solid #dde1ee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 15, 43, 0.1);
}

.diferencial-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #001369;
}

.diferencial-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Bloco de texto mais longo (posicionamento) */
.diferenciais-highlight {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

.diferenciais-highlight h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #001369;
}

.diferenciais-highlight p + p {
  margin-top: 6px;
}

/* CTA FINAL (texto + botão) */
.diferenciais-cta {
  text-align: left;
  max-width: 820px;
  margin: 0 auto;
}

.diferenciais-cta h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #001369;
}

.diferenciais-cta p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px; /* AQUI ENTRA O ESPAÇO ANTES DO BOTÃO */
}

.diferenciais-cta .btn {
  margin-top: 0; /* já controlado pelo margin-bottom do parágrafo */
}

/* ===========================
   RODAPÉ
=========================== */
.footer {
  background: #001025;
  color: #ffffff;
  padding: 22px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 60px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.85;
}

.footer-copy {
  font-size: 12px;
  text-align: right;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 900px) {
  .two-columns,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 140px;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 32px;
  }

  .hero-logo-circle {
    width: 240px;
    height: 240px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .diferenciais-highlight,
  .diferenciais-cta {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px;
    gap: 10px;
    border-bottom-left-radius: 12px;
    border-left: 1px solid #e1e4ec;
    border-bottom: 1px solid #e1e4ec;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav-menu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .nav-container {
    padding: 10px 0;
  }

  .brand-logo {
    height: 40px;
  }
.pitch-image {
  width: 100%;
  max-width: 520px;          /* LIMITA O TAMANHO */
  margin: 0 auto;            /* CENTRALIZA */
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(7, 15, 43, 0.16);
  object-fit: cover;
}

/* Imagens dentro de cards */
.pitch-image--inside-card {
  max-width: 100%;
  margin-top: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(7, 15, 43, 0.14);
}

/* Imagem grande (problema / destaque) */
.pitch-image-wrapper .pitch-image {
  max-width: 720px;          /* um pouco maior */
}

.pitch-image--inside-card {
  margin-top: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(7, 15, 43, 0.16);
}

/* Responsivo para imagens */
@media (max-width: 768px) {
  .pitch-image-wrapper {
    margin-bottom: 22px;
  }

  .pitch-image {
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(7, 15, 43, 0.16);
  }
@media (max-width: 768px) {
  .pitch-image {
    max-width: 100%;
  }
/* ===========================
   PITCH – IMAGENS
=========================== */

/* Wrapper para a imagem grande do "problema" */
.pitch-image-wrapper {
  max-width: 900px;          /* largura máxima da imagem */
  margin: 24px auto 40px;    /* centraliza e dá espaço em cima/baixo */
}

/* Estilo padrão para todas as imagens do pitch */
.pitch-image {
  width: 100%;               /* ocupa a largura do container/wrapper */
  max-height: 420px;         /* limita a altura para não ficar gigante */
  object-fit: cover;         /* corta as bordas mantendo o foco central */
  border-radius: 18px;       /* cantos arredondados bonitos */
  display: block;
  box-shadow: 0 18px 40px rgba(0, 20, 80, 0.25);
}

/* Imagem que está dentro do card azul (modelo-card) */
.pitch-image--inside-card {
  max-height: 260px;
  margin-top: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Ajuste em telas menores */
@media (max-width: 768px) {
  .pitch-image-wrapper {
    max-width: 100%;
    margin: 20px 0 32px;
  }

  .pitch-image {
    max-height: 320px;
  }

  .pitch-image--inside-card {
    max-height: 220px;
  }
}


