:root {
  --green-dark: #3f5a4e;
  --green: #6b8f7a;
  --cream: #f7f3ec;
  --text: #2b2b2b;
  --muted: #6a6a6a;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

.nav { display: flex; gap: 28px; }
.nav a { text-decoration: none; color: var(--text); font-size: 0.95rem; }
.nav a:hover { color: var(--green-dark); }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-outline { border: 1.5px solid var(--green-dark); color: var(--green-dark); }
.btn-small { padding: 8px 18px; font-size: 0.9rem; background: var(--green-dark); color: #fff; border-radius: 999px; text-decoration: none; }

.hero { background: var(--cream); padding: 80px 0; }
.hero-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.hero-text { flex: 1 1 420px; }
.eyebrow { color: var(--green-dark); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 16px; }
.hero h1 { font-size: 2.4rem; line-height: 1.25; margin-bottom: 18px; color: var(--green-dark); }
.lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image { flex: 1 1 280px; display: flex; justify-content: center; }
.hero-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.section { padding: 90px 0; }
.section-alt { background: #f9f9f7; }
.section h2 { font-size: 1.9rem; color: var(--green-dark); margin-bottom: 32px; }

.about-grid { display: grid; gap: 20px; max-width: 760px; }
.about-grid p { color: var(--muted); font-size: 1.05rem; text-align: justify; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 32px 28px; }
.card h3 { color: var(--green-dark); margin-bottom: 12px; font-size: 1.2rem; }
.card p { color: var(--muted); text-align: justify; }

.contact-grid { max-width: 640px; }
.contact-list { list-style: none; margin: 24px 0; }
.contact-list li { margin-bottom: 10px; }
.contact-list a { color: var(--green-dark); text-decoration: none; }

.footer { background: var(--green-dark); color: #fff; padding: 28px 0; text-align: center; font-size: 0.9rem; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 200;
}
.instagram-float {
  position: fixed;
  bottom: 24px;
  right: 92px;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 200;
}

#sobre {
  position: relative;
  overflow: hidden;
}

#sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('consultorio.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.10;
  z-index: 0;
}

#sobre .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .nav { display: none; }
  .hero h1 { font-size: 1.9rem; }
  .hero-image img { width: 240px; height: 240px; }
  .instagram-float { bottom: 92px; right: 24px; }
}