/* Logo no menu */
.menu-logo {
  height: 38px;
  width: 38px;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}

/* Banner imagem */
.banner-img {
  max-width: 420px;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* Formulário de cotação */
/* Formulário de cotação - visual moderno e compacto */
/* Formulário de cotação aprimorado */
.form-cotacao-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 70vh;
  padding-top: 3vw;
  background: var(--bg);
}
.form-cotacao {
  width: 100%;
  max-width: 560px;
  min-width: 0;
  box-shadow: 0 6px 32px #0001, 0 1.5px 8px #e5393511;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  padding: 2em 1.6em 1.4em 1.6em;
  border-radius: 20px;
  background: #fff;
  margin: 0 auto;
  border: 1.5px solid #f2f2f2;
}
.form-cotacao label {
  display: block;
  font-weight: 500;
  font-size: 0.98em;
  margin-bottom: 0.15em;
  color: #222;
}
.form-cotacao input,
.form-cotacao select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7em 0.9em;
  margin-top: 0.18em;
  border-radius: 12px;
  border: 1.2px solid #e0e0e0;
  font-size: 1em;
  background: #fafbfc;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1.5px 6px #0001;
}
.form-cotacao input:focus,
.form-cotacao select:focus {
  border: 1.2px solid var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px #e5393522;
}
.form-cotacao .checkbox-label {
  margin: 0.6em 0 0.4em 0;
  font-weight: 500;
  font-size: 0.97em;
}
.form-cotacao .btn {
  width: 100%;
  margin-top: 1em;
  font-size: 1.12em;
  padding: 0.85em 0;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 8px #e5393533;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.form-cotacao .btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px #e5393533;
}
@media (max-width: 700px) {
  .form-cotacao {
    max-width: 100%;
    width: 100%;
    padding: 1.2em 1em 1em 1em;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0001;
    gap: 0.75em;
  }
  .form-cotacao-container {
    padding-top: 0;
    min-height: unset;
    padding-left: 0;
    padding-right: 0;
  }
  .form-cotacao input,
  .form-cotacao select {
    padding: 0.75em 0.8em;
    font-size: 1em;
    border-radius: 8px;
  }
  .form-cotacao .btn {
    padding: 0.85em 0;
    font-size: 1.05em;
    border-radius: 8px;
    margin-top: 0.5em;
  }
}
@media (max-width: 430px) {
  .form-cotacao {
    padding: 1em 0.85em 0.85em 0.85em;
    border-radius: 10px;
    font-size: 0.96em;
    gap: 0.6em;
  }
  .form-cotacao label {
    font-size: 0.93em;
  }
}
/* Estilo base inspirado em https://ancore.app/ */

:root {
  --primary: #e53935;
  --primary-dark: #b71c1c;
  --secondary: #222;
  --accent: #fff;
  --bg: #f5f5f5;
  --text: #222;
  --radius: 10px;
  --menu-height: 60px;
}
body {
  margin: 0;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
header {
  background: var(--accent);
  box-shadow: 0 2px 8px #0001;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 2em 0.5em 1em;
  border-bottom: 1px solid #eee;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.logo img {
  height: 38px;
}
.logo span {
  font-size: 1.7em;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
}
.topbar .slogan {
  font-size: 1.1em;
  color: var(--secondary);
  font-weight: 500;
}
.social {
  display: flex;
  gap: 0.7em;
}
.social a {
  color: var(--primary);
  font-size: 1.5em;
  transition: color 0.2s;
}
.social a:hover {
  color: var(--primary-dark);
}
nav {
  background: var(--secondary);
  height: var(--menu-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav {
  background: var(--secondary);
  height: var(--menu-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-centered {
  margin: 0 auto;
}
.menu {
  display: flex;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li {
  display: inline-block;
}
.menu a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  padding: 0.5em 0.7em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.menu a:hover, .menu .active > a {
  background: var(--primary);
  color: #fff;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}

.associados-title {
  text-align: center;
  color: var(--primary);
}

.associados-carousel {
  margin-bottom: 2em;
}

.carousel-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px #0001;
  padding: 12px;
}

.assoc-consultor {
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 0.3em;
}

.assoc-data {
  font-size: 1.05em;
}

.assoc-cta {
  text-align: center;
}

.assoc-cta p {
  font-size: 1.1em;
  color: var(--primary);
}

.banner {
  background: linear-gradient(90deg, #fff 60%, #e53935 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px #0001;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em 2em 2em 1.5em;
  margin-bottom: 2em;
  min-height: 260px;
}
.banner .banner-text {
  flex: 1;
}
.banner h1 {
  color: var(--primary);
  font-size: 2.2em;
  font-weight: 800;
  margin: 0 0 0.5em 0;
  line-height: 1.1;
}
.banner .highlight {
  color: var(--primary);
  font-weight: 800;
}

.associado-foto {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1em;
}

.form-success-card {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.form-error-card {
  color: #c00;
}

.banner p {
  font-size: 1.2em;
  color: var(--secondary);
  margin: 0.5em 0 0 0;
}
.banner img {
  max-width: 320px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75em 2em;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  margin-top: 1em;
}
.btn:hover {
  background: var(--primary-dark);
}

.cta-block {
  text-align: center;
  margin: 2em 0;
}

.cta-note {
  margin-top: 1em;
  color: var(--primary);
  font-weight: 500;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 2em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}
.benefits li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px #0001;
  padding: 1em 1.5em;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1em;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.benefits li:before {
  content: '✔';
  color: var(--primary);
  font-size: 1.2em;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px #0001;
  padding: 1.2em;
  margin-bottom: 1.5em;
}
footer {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 1.2em 0 0.7em 0;
  margin-top: 2em;
  font-size: 1em;
}
/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: transparent;
  color: #25d366;
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  font-size: 2em;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float img {
  display: block;
  line-height: 1;
  width: 40px;
  height: 40px;
}
.whatsapp-float:hover {
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .banner { flex-direction: column; text-align: center; }
  .banner img { max-width: 220px; }
  .container { padding: 1.2rem; }
}
@media (max-width: 600px) {
  .container { padding: 0.7rem; }
  .container.form-cotacao-container { padding: 0.5rem; }
  .banner { padding: 0.8em 0.5em; margin-bottom: 1em; min-height: unset; }
  .banner img { max-width: 140px; }
  h1, .banner h1 { font-size: 1.1em; }
  .topbar { flex-direction: column; gap: 0.5em; padding: 0.5em 0.5em; }
  nav { height: auto; }
  .menu { gap: 0.2em; flex-wrap: nowrap; justify-content: center; }
  .menu a { font-size: 0.82em; padding: 0.45em 0.45em; white-space: nowrap; }
  .benefits {
    flex-direction: column;
    gap: 0.4em;
    margin: 0.8em 0 1em 0;
  }
  .benefits li {
    padding: 0.55em 0.9em;
    font-size: 0.92em;
    border-radius: 8px;
    flex: unset;
    gap: 0.5em;
  }
  .benefits li:before { font-size: 1em; }
  .card {
    padding: 0.85em 0.9em;
    margin-bottom: 0.8em;
    border-radius: 8px;
    font-size: 0.93em;
  }
  .card h3 { margin: 0 0 0.4em 0; font-size: 1em; }
  .card p { margin: 0.25em 0; }
  .btn { font-size: 0.97em; padding: 0.65em 1.4em; margin-top: 0.5em; }
  .whatsapp-float {
    right: calc(14px + env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }
}
