@charset "utf-8";

/* ============================================================
   LP Dra. Simone — estilos das seções
   ============================================================ */

/* ---------- Utilidades ---------- */
.secao-titulo {
  font-family: var(--fonte-titulo);
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  letter-spacing: .02em;
}

.secao-titulo--magenta { color: var(--magenta-forte); }
.secao-titulo--branco  { color: var(--branco); }

.btn {
  display: inline-block;
  font-family: var(--fonte-corpo);
  font-weight: bold;
  font-style: italic;
  font-size: 1.05rem;
  padding: .8em 2em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.btn:hover { transform: scale(1.04); filter: brightness(1.08); }

.btn-magenta {
  background: var(--magenta);
  color: var(--branco);
}

.btn-branco {
  background: var(--branco);
  color: var(--magenta-forte);
}

.btn-largo { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  background: var(--branco);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
}

.header-inner {
  max-width: var(--largura-max);
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo { flex-shrink: 0; }

.header-logo img {
  width: clamp(140px, 22vw, 220px);
  height: auto;
}

.site-nav ul {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.site-nav a {
  color: var(--magenta-forte);
  font-family: var(--fonte-destaque);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--magenta); }

.header-cta {
  background: var(--magenta-forte);
  color: var(--branco) !important;
  font-size: .95rem;
  padding: .55em 1.6em;
  white-space: nowrap;
}

/* CTA dentro do menu: só aparece no mobile */
.nav-cta-item { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--magenta-forte);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--magenta-forte);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--largura-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza o texto verticalmente */
  padding: 2.5rem 0;
}

.hero-titulo {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  color: var(--branco);
}

.hero-titulo--destaque {
  display: block;
  color: var(--rosa-claro);
}

.hero-texto {
  color: var(--branco);
  line-height: 1.55;
  margin: 1.4rem 0 2rem;
  max-width: 440px;
}

.hero-botoes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-foto {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
}

.hero-foto img {
  max-height: 560px;
  object-fit: contain;
}

/* ---------- Biografia ---------- */
.biografia {
  background: var(--cinza-claro);
  padding: 4rem 1.5rem;
}

.bio-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.bio-foto img {
  width: clamp(260px, 32vw, 420px);
  border-radius: 22px;
}

.bio-texto {
  flex: 1;
  text-align: right;
}

.bio-titulo {
  text-align: right;
  color: var(--magenta-forte);
  margin-bottom: 1.4rem;
  line-height: 1.15;
}

.bio-texto p {
  color: var(--rosa);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-size: .92rem;
}

/* ---------- Compromissos ---------- */
.compromissos {
  background: var(--magenta-forte);
  padding: 4rem 1.5rem;
}

.compromissos-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--branco);
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.compromissos-titulo {
  color: var(--magenta-forte);
  text-align: left;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  padding: 1.8rem 2rem 1.4rem;
  margin-bottom: 0;
}

.tabela-pilares {
  width: 100%;
  border-collapse: collapse;
}

.tabela-pilares th,
.tabela-pilares td {
  padding: 1.1rem 1.6rem;
  vertical-align: middle;
}

.tabela-pilares th {
  background: var(--preto);
  color: var(--branco);
  font-weight: bold;
  text-align: left;
  font-size: .95rem;
}

.tabela-pilares th:last-child { text-align: center; }

/* Linhas intercaladas: branco, preto, branco, preto */
.tabela-pilares tbody tr:nth-child(even) td { background: var(--preto); }
.tabela-pilares tbody tr:nth-child(odd) td  { background: var(--branco); }

.pilar-nome {
  color: var(--magenta);
  font-weight: bold;
  font-size: .95rem;
  width: 38%;
}

.pilar-foco {
  color: var(--rosa);
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

/* ---------- Depoimentos ---------- */
.depoimentos {
  background: var(--branco);
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.depoimentos-titulo {
  color: var(--magenta-forte);
  text-align: center;
  max-width: var(--largura-max);
  margin: 0 auto 2.5rem;
}

.doctoralia-widget {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.carrossel-controles {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin: 1.6rem 0;
}

.carrossel-seta {
  width: 52px;
  height: 34px;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--branco);
}

.carrossel-seta--prev { background: var(--rosa-claro); }
.carrossel-seta--next { background: var(--magenta); }

.carrossel {
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.carrossel-trilho {
  display: flex;
  gap: 2rem;
  transition: transform .4s ease;
  align-items: flex-start; /* cada card com a altura do próprio conteúdo */
}

.depoimento-card {
  flex: 0 0 100%;
  background: var(--rosa-claro);
  border-radius: 22px;
  padding: 1.8rem 2rem;
  text-align: left;
  opacity: .35;
  transition: opacity .4s ease;
}

.depoimento-card.ativo { opacity: 1; }

.depoimento-texto {
  font-style: italic;
  font-weight: bold;
  line-height: 1.5;
  font-size: .9rem;
}

.depoimento-autor {
  margin-top: 1.3rem;
  color: var(--magenta);
  font-weight: bold;
  font-style: italic;
  font-size: .95rem;
}

.depoimento-cargo {
  color: var(--magenta);
  font-style: italic;
  font-size: .72rem;
  margin-top: .15rem;
}

.depoimentos-fonte {
  margin: 2rem 0 1.4rem;
  font-weight: bold;
  font-style: italic;
}

/* ---------- Novidades (carrossel de notícias) ---------- */
.novidades {
  background: var(--rosa-claro);
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.novidades-titulo {
  color: var(--magenta-forte);
  margin-bottom: 2.5rem;
}

/* Modo feeds (redes configuradas no painel) */
.novidades-sub {
  margin: -1.5rem auto 2.5rem;
  max-width: 380px;
  line-height: 1.4;
}

.novidades-grid {
  max-width: var(--largura-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  justify-items: center;
}

.rede { width: 100%; min-width: 0; } /* min-width:0 deixa o item do grid encolher */

.rede-embed > iframe,
.rede-embed > blockquote { max-width: 100% !important; }

.rede h3 {
  font-family: var(--fonte-destaque);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.rede-embed {
  display: flex;
  justify-content: center;
}

.rede--youtube .rede-embed iframe {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
}

.rede-cartao {
  background: var(--branco);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  color: var(--magenta-forte);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.rede-cartao__nome {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--preto);
}

.rede-cartao__desc {
  font-size: .85rem;
  color: var(--preto);
  line-height: 1.4;
}

.rede--instagram .rede-embed iframe,
.rede--instagram .rede-embed blockquote { margin: 0 auto !important; }

.carrossel--noticias { max-width: 380px; }

.noticia-card {
  flex: 0 0 100%;
  text-align: left;
  opacity: .35;
  transition: opacity .4s ease;
}

.noticia-card.ativo { opacity: 1; }

.noticia-foto img {
  width: 100%;
  border-radius: 16px;
}

.noticia-titulo {
  font-family: var(--fonte-corpo);
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: .9rem;
}

.noticia-legenda {
  font-size: .8rem;
  margin-top: .25rem;
  line-height: 1.4;
}

/* ---------- Contato ---------- */
.contato {
  background: radial-gradient(circle at 50% 0%, var(--magenta) 0%, var(--magenta-forte) 70%);
  padding: 4rem 1.5rem 0;
  overflow: hidden;
}

.contato-topo {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contato-topo .secao-titulo { margin-bottom: 1.4rem; line-height: 1.2; }

.contato-sub {
  color: var(--branco);
  line-height: 1.5;
  font-size: 1.02rem;
}

.contato-inner {
  max-width: var(--largura-max);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-end;
}

.contato-texto {
  flex: 1;
  padding-bottom: 3rem;
}

.btn-rosa {
  background: var(--rosa-claro);
  color: var(--branco);
}

.contato-foto {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.contato-foto img { max-height: 520px; object-fit: contain; }

.contato-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 420px;
}

.contato-form input[type="text"],
.contato-form input[type="tel"] {
  padding: .7em 1.2em;
  border: none;
  border-radius: 999px;
  font-family: var(--fonte-corpo);
  font-size: .95rem;
}

.contato-interesses {
  background: var(--branco);
  border: none;
  border-radius: 18px;
  padding: 1rem 1.4rem 1.2rem;
}

.contato-interesses legend {
  /* legend por padrão senta na borda do fieldset; float traz pra dentro da caixa */
  float: left;
  width: 100%;
  font-weight: bold;
  padding: 0;
  margin-bottom: .7rem;
}

.contato-interesses label {
  clear: both;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  margin-bottom: .5rem;
}

.contato-interesses label:last-child { margin-bottom: 0; }

.form-erro {
  clear: both;
  color: var(--magenta-forte);
  font-size: .8rem;
  font-weight: bold;
  margin-top: .6rem;
}

.form-aviso {
  border-radius: 12px;
  padding: .9rem 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: .92rem;
}

.form-aviso--ok   { background: var(--branco); color: var(--verde); }
.form-aviso--erro { background: var(--branco); color: var(--magenta-forte); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--preto);
  padding: 1.4rem 1.5rem;
}

.footer-inner {
  max-width: var(--largura-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-aviso {
  color: var(--branco);
  font-size: .62rem;
  line-height: 1.5;
  max-width: 420px;
}

.footer-redes {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}

.footer-redes a { color: var(--branco); display: flex; }

.footer-redes a:hover { color: var(--rosa-claro); }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--branco);
    padding: 1rem 1.5rem 1.6rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
  }

  .site-nav.active { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* CTA sai da barra e entra no menu hambúrguer */
  .header-cta--desktop { display: none; }
  .nav-cta-item { display: block; margin-top: .4rem; }

  /* Hero — empilha e centraliza tudo */
  .hero-inner { flex-direction: column; align-items: center; padding-top: 2.5rem; }
  .hero-content { max-width: 100%; text-align: center; padding-bottom: 2rem; }
  .hero-texto { margin-left: auto; margin-right: auto; }
  .hero-botoes { align-items: center; }
  .hero-foto { justify-content: center; }
  .hero-foto img { max-height: 55vh; }

  /* Biografia — foto em cima, texto centralizado */
  .bio-inner { flex-direction: column; align-items: center; }
  .bio-texto { text-align: center; }
  .bio-titulo { text-align: center; }

  /* Compromissos — título centralizado, tabela empilhada */
  .compromissos-titulo { text-align: center; padding: 1.6rem 1.2rem 1.2rem; }
  .tabela-pilares thead { display: none; }
  .tabela-pilares tr { display: block; }
  .tabela-pilares td { display: block; width: auto; }
  .tabela-pilares tbody tr:nth-child(even) .pilar-foco,
  .tabela-pilares tbody tr:nth-child(even) .pilar-nome { background: var(--preto); }
  .pilar-nome { padding-bottom: .3rem; text-align: center; }
  .pilar-foco { text-align: center; padding-top: 0; }

  /* Novidades — feeds empilhados e sem estouro lateral */
  .novidades-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rede-embed { max-width: 100%; overflow: hidden; }
  .rede-embed .tiktok-embed,
  .rede-embed .instagram-media { min-width: 0 !important; max-width: 100% !important; }

  /* Carrosséis — respiro lateral e setas maiores pro dedo */
  .carrossel { max-width: 100%; }
  .carrossel--noticias { max-width: 100%; }
  .depoimento-card { padding: 1.5rem 1.4rem; }
  .carrossel-seta { width: 60px; height: 42px; font-size: 1.3rem; }

  /* Contato — formulário centralizado, foto abaixo */
  .contato-inner { flex-direction: column; align-items: center; }
  .contato-texto { padding-bottom: 2rem; width: 100%; }
  .contato-form { margin: 0 auto; }
  .contato-foto { justify-content: center; }
  .contato-foto img { max-height: 55vh; }

  /* Footer — empilhado e centralizado */
  .footer-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
  .footer-aviso { max-width: 100%; }
  .footer-redes { justify-content: center; }
}
