:root {
  --verde-escuro: #0B5D4B;
  --verde-medio: #146b57;
  --verde-claro: #7BC8A4;
  --verde-suave: #eaf6f1;
  --texto: #2b2b2b;
  --texto-claro: #6c757d;
  --branco: #ffffff;
  --sombra: 0 10px 30px rgba(0, 0, 0, 0.08);
  --sombra-hover: 0 14px 35px rgba(0, 0, 0, 0.12);
  --borda-radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--texto);
  background-color: #fff;
  padding-top: 82px;
}

h1, h2, h3, h4, h5 {
  color: var(--verde-escuro);
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
}

p {
  line-height: 1.7;
  color: var(--texto);
}

section {
  padding: 80px 0;
}

.bg-verde {
  background-color: var(--verde-escuro);
  color: white;
}

.bg-suave {
  background-color: var(--verde-suave);
}

.text-muted {
  color: var(--texto-claro) !important;
}

/* NAVBAR */
.navbar {
  background-color: rgba(11, 93, 75, 0.96) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.navbar .nav-link {
  font-weight: 500;
  margin-left: 10px;
}

.navbar .nav-link:hover {
  color: var(--verde-claro) !important;
}

/* BOTÕES */
.btn-verde {
  background-color: var(--verde-escuro);
  color: white;
  border-radius: 999px;
  padding: 12px 26px;
  border: none;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-verde:hover {
  background-color: var(--verde-medio);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-verde {
  border: 2px solid var(--verde-escuro);
  color: var(--verde-escuro);
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-verde:hover {
  background-color: var(--verde-escuro);
  color: white;
}

/* HERO */
#inicio {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(11, 93, 75, 0.82), rgba(11, 93, 75, 0.78)),
    url('img/consultorio1.jpg') center/cover no-repeat;
  color: white;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255,255,255,0.16);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

#inicio h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

#inicio p {
  color: rgba(255,255,255,0.92);
  font-size: 1.08rem;
  max-width: 650px;
  margin: 0 auto 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-mini {
  margin-top: 30px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}

/* SEÇÃO TÍTULOS */
.section-header {
  text-align: center;
  margin-bottom: 46px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

/* CARDS */
.card-custom {
  height: 100%;
  border: none;
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #fff;
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.card-custom .card-body {
  padding: 28px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--verde-suave);
  color: var(--verde-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card-custom h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.card-custom ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.card-custom li {
  margin-bottom: 7px;
  line-height: 1.5;
}

/* QUEM SOMOS */
#quem-somos .content-box {
  background-color: white;
  border-radius: var(--borda-radius);
  box-shadow: var(--sombra);
  padding: 36px;
}

/* GALERIA */
#consultorio img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--sombra);
  transition: transform 0.3s ease;
}

#consultorio img:hover {
  transform: scale(1.02);
}

/* CONVÊNIOS */
.convenio-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--sombra);
  padding: 22px 16px;
  text-align: center;
  font-weight: 500;
  height: 100%;
  transition: 0.3s ease;
}

.convenio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

/* MAPA / ENDEREÇO */
#onde-estamos .map-frame,
#onde-estamos .endereco-card {
  border-radius: var(--borda-radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  background: #fff;
}

#onde-estamos .endereco-card .card-body {
  padding: 30px;
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.info-line i {
  color: var(--verde-escuro);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* FOOTER */
footer {
  background-color: var(--verde-escuro);
  color: white;
  padding: 26px 0;
}

footer p {
  color: white;
  margin: 0;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  color: white;
  transform: scale(1.06);
}

/* CTA faixa */
.cta-strip {
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
  color: white;
  border-radius: 24px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--sombra);
}

.cta-strip h3 {
  color: white;
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  section {
    padding: 68px 0;
  }

  #inicio {
    min-height: 70vh;
  }

  .navbar .nav-link {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 76px;
  }

  #inicio {
    min-height: auto;
    padding: 90px 0 80px;
  }

  #consultorio img {
    height: 220px;
  }

  .card-custom .card-body,
  #quem-somos .content-box,
  #onde-estamos .endereco-card .card-body {
    padding: 24px;
  }
}