/* DRA. NATHALIA CAETANO - STYLE.CSS */

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}
ul, ol, menu { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #404040;
  background: #ffffff;
  overflow-x: hidden;
}

/* VARIAVEIS */
:root {
  --verde:    #195439;
  --roxo:     #56265c;
  --verde-bg: #dbe7c9;
  --branco:   #ffffff;
  --cinza:    #404040;
  --max-w:    1280px;
}

/* BOTOES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }
.btn-primary   { background: var(--verde); color: var(--branco); }
.btn-secondary { background: var(--branco); color: var(--cinza); }
.btn-white     { background: var(--branco); color: var(--verde); }

/* TOPBAR */
.topbar {
  background: var(--verde-bg);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  padding: 10px 80px;
}
.topbar-item { display: flex; align-items: center; gap: 8px; color: var(--cinza); font-size: 15px; }
.topbar-icon { width: 18px; height: 18px; object-fit: contain; }

/* NAVBAR */
.navbar {
  background: var(--branco);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.logo { width: 160px; height: auto; object-fit: contain; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--verde); font-size: 17px; transition: opacity .2s; }
.nav-links a:hover { opacity: .7; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--verde); border-radius: 2px; }

/* HERO DESKTOP */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 80px 0;
  min-height: 560px;
  overflow: hidden;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 580px;
  flex: 1 1 400px;
}
.hero-text h1 { font-size: 46px; line-height: 1.25; font-weight: 700; }
.hero-title-green  { color: var(--verde); }
.hero-title-purple { color: var(--roxo); }
.hero-subtitle { color: var(--cinza); font-size: 26px; font-weight: 400; line-height: 1.4; display: block; margin-top: 8px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-img-wrap { display: flex; align-items: flex-end; align-self: stretch; flex-shrink: 0; }
.hero-img { width: 460px; max-width: 100%; height: auto; object-fit: cover; display: block; }

/* DIFERENCIAIS DESKTOP */
.diferenciais {
  background: var(--branco);
  display: flex;
  flex-direction: row;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 70px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.diferencial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  flex: 1 1 260px;
}
.diferencial-card img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.diferencial-card h3 { color: var(--verde); font-size: 22px; font-weight: 700; line-height: 1.3; }
.diferencial-card p  { color: var(--cinza); font-size: 17px; line-height: 1.5; }
.diferencial-texto   { display: flex; flex-direction: column; gap: 6px; }

/* TRATAMENTOS */
.tratamentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  padding: 80px;
}
.tratamento-card {
  background: var(--branco);
  border-radius: 10px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.tratamento-card img { width: 80px; height: 80px; object-fit: contain; }
.tratamento-card h3  { color: var(--verde); font-size: 22px; font-weight: 700; line-height: 1.4; }
.tratamento-card p   { color: var(--cinza); font-size: 18px; }

/* SOBRE */
.sobre {
  background: var(--verde);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px;
}
.sobre-texto { display: flex; flex-direction: column; gap: 20px; max-width: 500px; flex: 1 1 360px; color: var(--branco); }
.sobre-nome          { font-size: 32px; font-weight: 700; display: block; }
.sobre-especialidade { font-size: 22px; font-weight: 400; display: block; margin-top: 4px; }
.sobre-texto p       { font-size: 18px; line-height: 1.6; }

/* MOLDURA FOTO */
.foto-frame { position: relative; flex-shrink: 0; }
.foto-frame::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 3px solid rgba(255,255,255,.35);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}
.foto-frame::after {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  background: rgba(0,0,0,.25);
  border-radius: 12px;
  z-index: -1;
  filter: blur(18px);
}
.sobre-foto, .contato-foto {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  display: block;
  box-shadow: 4px 8px 32px rgba(0,0,0,.35);
}
.sobre-foto   { width: 520px; max-width: 100%; height: auto; }
.contato-foto { width: 520px; max-width: 100%; height: auto; }
.foto-frame--contato::before { border-color: rgba(25,84,57,.3); }

/* DEPOIMENTOS */
.depoimentos {
  background: #f7faf5;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.depoimentos h2 { color: var(--verde); font-size: 32px; font-weight: 700; text-align: center; }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 900px;
}
.depoimento-card {
  background: var(--branco);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 28px rgba(25,84,57,.10);
  border: 1px solid rgba(25,84,57,.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s ease;
}
.depoimento-card.visivel { opacity: 1; transform: translateY(0); }
.depoimento-card:hover   { box-shadow: 0 12px 40px rgba(25,84,57,.18); transform: translateY(-4px); }
.depoimento-estrelas { display: flex; gap: 4px; }
.depoimento-estrelas span { color: #f5a623; font-size: 20px; line-height: 1; }
.depoimento-texto { color: var(--cinza); font-size: 16px; line-height: 1.65; font-style: italic; flex: 1; }
.depoimento-autor { display: flex; align-items: center; gap: 14px; padding-top: 8px; border-top: 1px solid rgba(25,84,57,.1); }
.depoimento-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--verde); color: var(--branco);
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.depoimento-autor strong { color: var(--verde); font-size: 15px; font-weight: 700; display: block; }
.depoimento-autor span   { color: #888; font-size: 13px; }

/* ATENDIMENTO */
.atendimento {
  background: var(--verde);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 80px;
}
.atendimento-col { display: flex; flex-direction: column; gap: 20px; flex: 1 1 360px; max-width: 480px; color: var(--branco); }
.atendimento-icon { width: 56px; height: 56px; object-fit: contain; }
.atendimento-col h2 { font-size: 32px; font-weight: 700; line-height: 1.2; }
.atendimento-col p  { font-size: 18px; line-height: 1.6; }
.atendimento-separador { width: 1px; background: rgba(255,255,255,.3); align-self: stretch; flex-shrink: 0; }
.tele-lista { display: flex; flex-direction: column; gap: 10px; }
.tele-lista li { display: flex; align-items: center; gap: 10px; font-size: 18px; line-height: 1.6; color: var(--branco); }
.tele-lista li img { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }

/* CONTATO */
.contato {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 80px;
}
.contato-info { display: flex; flex-direction: column; gap: 20px; max-width: 500px; flex: 1 1 340px; }
.contato-info h2 { color: var(--verde); font-size: 32px; font-weight: 700; }
.contato-item { display: flex; align-items: flex-start; gap: 12px; color: var(--verde); font-size: 18px; line-height: 1.5; }
.contato-item img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
.contato-item strong { font-weight: 700; }
.contato-mapa-wrap { width: 100%; max-width: 460px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.contato-mapa-wrap iframe { display: block; width: 100%; height: 220px; border: 0; }

/* FOOTER */
.footer { border-top: 1px solid #e0e0e0; padding: 40px 80px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand p { color: var(--verde); font-size: 18px; line-height: 1.5; }
.footer-divider { width: 1px; height: 180px; background: #ccc; flex-shrink: 0; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { display: flex; align-items: center; gap: 10px; color: var(--verde); font-size: 18px; transition: opacity .2s; }
.footer-link:hover { opacity: .7; }
.footer-link img { width: 22px; height: 22px; object-fit: contain; }

/* TABLET max 1024px */
@media (max-width: 1024px) {
  .topbar  { padding: 10px 48px; }
  .navbar  { padding: 10px 48px; }
  .hero    { padding: 48px 48px 0; gap: 40px; min-height: 480px; }
  .hero-text h1 { font-size: 36px; }
  .hero-img { width: 320px; }
  .diferenciais { padding: 60px 48px; gap: 40px; }
  .tratamentos-grid { padding: 60px 48px; grid-template-columns: repeat(2, 1fr); }
  .sobre    { padding: 60px 48px; }
  .sobre-foto, .contato-foto { width: 360px; }
  .depoimentos { padding: 60px 48px; }
  .depoimentos-grid { max-width: 100%; }
  .atendimento { padding: 60px 48px; }
  .contato  { padding: 60px 48px; }
  .footer   { padding: 40px 48px; }
}

/* MOBILE max 768px */
@media (max-width: 768px) {

  .topbar { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 20px; }

  .navbar { padding: 10px 20px; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--branco);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 8px 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 20px; font-size: 16px; border-bottom: 1px solid #f0f0f0; width: 100%; }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px 0;
    min-height: 0;
    gap: 0;
  }
  .hero-text {
    flex: 0 0 auto;
    gap: 12px;
    padding-bottom: 16px;
  }
  .hero-text h1  { font-size: 24px; line-height: 1.3; }
  .hero-subtitle { font-size: 16px; margin-top: 4px; }
  .hero-btns { flex-direction: row; gap: 10px; }
  .hero-btns .btn { flex: 1 1 auto; font-size: 14px; padding: 9px 14px; }
  .hero-img-wrap { width: 100%; align-self: auto; }
  .hero-img { width: 100%; }

  .diferenciais {
    flex-direction: column;
    padding: 28px 20px;
    gap: 16px;
    max-width: 100%;
  }
  .diferencial-card {
    flex-direction: row;
    align-items: flex-start;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }
  .diferencial-card img { flex-shrink: 0; margin-top: 2px; }
  .diferencial-card h3  { font-size: 18px; }
  .diferencial-card p   { font-size: 15px; }

  .tratamentos-grid { grid-template-columns: 1fr; padding: 36px 20px; gap: 16px; }

  .sobre { flex-direction: column; padding: 40px 20px; gap: 36px; }
  .sobre-texto { max-width: 100%; }
  .foto-frame { align-self: center; }
  .sobre-foto, .contato-foto { width: 100%; max-width: 380px; }
  .foto-frame::before { inset: -8px -8px 8px 8px; }

  .depoimentos { padding: 40px 20px; gap: 24px; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .atendimento { flex-direction: column; padding: 40px 20px; gap: 32px; }
  .atendimento-separador { width: 100%; height: 1px; }

  .contato { flex-direction: column; padding: 40px 20px; gap: 36px; }
  .contato-info { max-width: 100%; }

  .footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-divider { width: 100%; height: 1px; }
}

/* MOBILE PEQUENO max 400px */
@media (max-width: 400px) {
  .hero-text h1  { font-size: 22px; }
  .hero-subtitle { font-size: 15px; }
  .sobre-nome    { font-size: 24px; }
}