
:root {
  --brand-primary: #784b9d;
  --brand-secondary: #916dad;
  --brand-soft: #d7d0e2;
  --brand-accent: #fab24c;
  --neutral-100: #f1f1f1;
  --neutral-700: #404040;
  --neutral-900: #000000;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--neutral-100);
  color: var(--neutral-700);
}
header {
  background-color: var(--brand-primary);
  color: var(--neutral-100);
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
nav a {
  margin: 0 10px;
  color: var(--neutral-100);
  text-decoration: none;
}
.logo {
  height: 64px;
  width: auto;
  display: block;
}
.hero {
  background-color: var(--brand-secondary);
  color: var(--neutral-100);
  text-align: center;
  padding: 3em 1em;
}
.agendamento {
  background-color: var(--brand-secondary);
  color: var(--neutral-100);
}
section {
  padding: 2em;
  max-width: 900px;
  margin: auto;
}
ul {
  list-style-type: square;
  padding-left: 20px;
}
.icons img {
  width: 40px;
  margin: 10px;
}
.grid-sobre {
  padding: 60px 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.gridsobre-imagem {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.servicos {
  background-color: var(--brand-secondary);
  color: var(--neutral-100);
  padding: 60px 20px;
  text-align: center;
}

.servicos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: transparent;
  padding: 20px;
  text-align: center;
}

.card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}

.familia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.familia-item {
  text-align: center;
}

.familia-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
}

.contato {
  background-color: var(--brand-secondary);
  color: var(--neutral-100);
  text-align: left;
  padding: 3em 1em;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--brand-primary);
  padding: 20px;
  color: var(--neutral-100);
}

.coluna-contato,
.coluna-qrcode {
  flex: 1;
  min-width: 280px;
  margin: 10px;
}

.icones-sociais img {
  width: 30px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.icones-sociais img:hover {
  transform: scale(1.2);
}

.qrcode {
  width: 150px;
  height: auto;
  border: 3px solid var(--neutral-100);
  padding: 8px;
  background-color: var(--neutral-100);
  border-radius: 10px;
}


.qr-code {
  width: 150px;
  margin-top: 10px;
}
.btn-whatsapp {
  background-color: #25D366;
  padding: 1em;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}
footer {
  background-color: var(--brand-primary);
  text-align: center;
  color: var(--neutral-100);
  padding: 1em;
}

.agendamento {
  padding: 2.5rem 2rem;
}

.agendamento-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.agendamento-text {
  flex: 1 1 320px;
  padding: 1rem;
}

.agendamento-form {
  flex: 1 1 320px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--neutral-700);
}

.agendamento-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--brand-primary);
}

.agendamento-subtitle {
  margin-top: 0;
  font-size: 0.95rem;
  color: var(--neutral-700);
}

.localizacao {
  padding: 2rem;
  text-align: center;
}

.localizacao-title {
  color: var(--brand-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.localizacao-map {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Lead banner + modal */
.lead-top-banner {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: var(--brand-primary);
  color: var(--neutral-100);
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.lead-top-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lead-top-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.95rem;
  line-height: 1.25;
  flex: 1 1 520px;
}

.lead-top-banner__text span {
  opacity: 0.92;
}

.lead-top-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.lead-top-banner__btn {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: var(--neutral-100);
  color: var(--brand-primary);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.lead-top-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}

.lead-top-banner__close {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
}

.lead-top-banner__close:hover {
  background: rgba(255,255,255,0.12);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.lead-modal__card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 1;
}

.lead-modal__x {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: var(--brand-soft);
  color: var(--brand-primary);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-modal__title {
  margin: 0 0 6px;
  color: var(--brand-primary);
}

.lead-modal__subtitle {
  margin: 0 0 14px;
  color: var(--neutral-700);
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--brand-primary);
  font-weight: 700;
}

.lead-field input {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 1rem;
  outline: none;
}

.lead-field input:focus {
  border-color: rgba(120, 75, 157, 0.75);
  box-shadow: 0 0 0 3px rgba(120, 75, 157, 0.15);
}

.lead-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--neutral-700);
  line-height: 1.25;
  margin-top: 4px;
}

.lead-consent input {
  margin-top: 3px;
}

.lead-form__submit {
  width: 100%;
  margin-top: 4px;
}

.lead-ok {
  margin: 10px 0 0;
  color: var(--brand-primary);
  font-weight: 800;
  text-align: center;
  display: none;
}

@media (max-width: 520px) {
  .lead-top-banner__text {
    font-size: 0.9rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: none;
}

.cookie-banner__content {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--brand-primary);
  font-size: 0.95rem;
  line-height: 1.35;
  flex: 1 1 520px;
}

.cookie-banner__link {
  color: var(--brand-secondary);
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.cookie-banner__link:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner__btn {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: none;
  background: var(--brand-secondary);
  color: var(--neutral-100);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

@media (max-width: 520px) {
  .cookie-banner__content {
    padding: 12px 12px;
  }

  .cookie-banner__content p {
    font-size: 0.9rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  color: var(--neutral-100);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--neutral-100);
  margin: 0.5rem 0 0.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--neutral-100);
  margin-bottom: 0.75rem;
  max-width: 480px;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
  color: var(--neutral-100);
  font-size: 0.95rem;
}

.hero-list li::before {
  content: "• ";
}

.btn-cta-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--brand-accent);
  color: var(--neutral-900);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.diferenciais {
  padding: 3rem 1.5rem;
  text-align: center;
}

.diferenciais h2 {
  margin-bottom: 2rem;
  color: var(--brand-primary);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
  }
}

.diferencial-card {
  background: var(--brand-soft);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}

.diferencial-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
}

.depoimentos {
  padding: 3rem 1.5rem;
  background: var(--neutral-100);
  text-align: center;
}

.depoimentos h2 {
  margin-bottom: 2rem;
  color: var(--brand-primary);
}

.depoimento {
  display: none;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  text-align: left;
  font-size: 0.95rem;
}

.depoimento-ativo {
  display: block;
}

.depoimentos-carousel {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}

.depoimentos-viewport {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.depoimentos-nav {
  border: none;
  background: var(--brand-soft);
  color: var(--brand-primary);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.depoimentos-nav:hover {
  background: var(--brand-secondary);
  color: var(--neutral-100);
  transform: translateY(-1px);
}

.depoimento-texto {
  margin: 0 0 0.75rem;
  font-style: italic;
}

.depoimento-nome {
  margin: 0;
  font-weight: 600;
  color: var(--brand-primary);
}

.clinica {
  padding: 3rem 1.5rem;
  text-align: center;
}

.clinica-intro {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.clinica-carousel {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}

.clinica-viewport {
  flex: 1;
  overflow: hidden;
}

.clinica-slide {
  display: none;
  background: var(--brand-soft);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.clinica-slide-ativa {
  display: flex;
}

.clinica-img-wrapper {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 420px;
}

.clinica-img-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.clinica-content {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.clinica-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
}

.clinica-content p {
  margin: 0;
}

.clinica-nav {
  border: none;
  background: var(--brand-soft);
  color: var(--brand-primary);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.clinica-nav:hover {
  background: var(--brand-secondary);
  color: var(--neutral-100);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .clinica-slide {
    padding: 1.25rem;
  }

  .clinica-img-wrapper {
    max-width: 100%;
  }

  .clinica-img-wrapper img {
    max-height: 220px;
  }
}

.programas {
  padding: 3rem 1.5rem;
  background: var(--neutral-100);
  text-align: center;
}

.programas-intro {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.programas-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: var(--brand-soft);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}

.programas-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--brand-primary);
}

.programas-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
}

.cta-final {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--brand-secondary);
  color: var(--neutral-100);
}

.cta-final h2 {
  margin-bottom: 0.75rem;
}

.cta-final p {
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
