:root {
  --primary: #1554c0;
  --primary-dark: #0f3f92;
  --primary-light: #eaf2ff;
  --secondary: #11b874;
  --secondary-dark: #0d9a61;
  --text: #17324d;
  --text-soft: #5f748b;
  --bg: #f4f8fc;
  --white: #ffffff;
  --border: #dbe6f2;
  --shadow: 0 14px 40px rgba(21, 84, 192, 0.12);
  --shadow-soft: 0 8px 24px rgba(15, 63, 146, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #f7fbff 0%, #f2f7fc 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* UTILIDADES */
.section {
  padding: 88px 20px;
}

.section-small {
  padding: 28px 20px;
}

.section-alt {
  background: linear-gradient(180deg, #f9fcff 0%, #edf5fb 100%);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2 {
  margin: 12px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--primary-dark);
}

.section-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(21, 84, 192, 0.08);
}

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  font-size: 14px;
}

.topbar-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 600;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(21, 84, 192, 0.08);
}

.header-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 56px;
  height: 56px;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #2f78f0);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(21, 84, 192, 0.22);
}

.logo-title {
  margin: 0;
  font-size: 20px;
  color: var(--primary-dark);
  line-height: 1.1;
}

.logo-subtitle {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: 0.25s ease;
}

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

.btn-header,
.btn-primary,
.btn-secondary {
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 700;
}

.btn-header,
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #20d58c);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(17, 184, 116, 0.24);
}

.btn-header:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

.btn-header {
  padding: 12px 18px;
  font-size: 14px;
}

.btn-primary {
  padding: 15px 26px;
  font-size: 15px;
}

.btn-secondary {
  padding: 15px 24px;
  font-size: 15px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(21, 84, 192, 0.14);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #f7fbff;
}

.btn-full {
  width: 100%;
}

/* HERO */
.hero {
  padding: 72px 20px 46px;
  background:
    radial-gradient(circle at top left, rgba(46, 120, 240, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(17, 184, 116, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
}

.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.hero-text h2 {
  margin: 16px 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  color: var(--primary-dark);
  max-width: 760px;
}

.hero-text p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(21, 84, 192, 0.08);
  color: var(--primary);
  border: 1px solid rgba(21, 84, 192, 0.08);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.hero-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-infos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-info-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.hero-info-card strong {
  display: block;
  font-size: 17px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.hero-info-card span {
  display: block;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(46, 120, 240, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(17, 184, 116, 0.12), transparent 24%);
  pointer-events: none;
}

.hero-card h3,
.hero-card p,
.hero-mini-grid {
  position: relative;
  z-index: 1;
}

.hero-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--primary-dark);
}

.hero-card p {
  margin: 0 0 24px;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-box {
  background: var(--white);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: 18px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.mini-box strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(17, 184, 116, 0.12);
  color: var(--secondary-dark);
  font-size: 16px;
}

.mini-box span {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

/* TRUST STRIP */
.trust-strip {
  max-width: calc(var(--container) - 40px);
  margin: 0 auto;
  padding: 0 20px 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--white);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft);
}

/* GRIDS */
.steps-grid,
.benefit-grid,
.depoimentos-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.depoimentos-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.benefit-card,
.testimonial-card,
.form-card {
  background: var(--white);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.step-card,
.benefit-card,
.testimonial-card {
  padding: 28px;
  transition: 0.25s ease;
}

.step-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #347ef2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card h3,
.benefit-card h3,
.testimonial-card strong {
  margin: 0 0 10px;
  color: var(--primary-dark);
}

.step-card p,
.benefit-card p,
.testimonial-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 15px;
}

.stars {
  margin-bottom: 14px;
  color: #f4b400;
  letter-spacing: 2px;
  font-size: 18px;
}

/* FILA */
.fila {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff9df, #fff3c1);
  color: #7a5a00;
  border: 1px solid rgba(226, 174, 0, 0.24);
  border-radius: 18px;
  padding: 18px 24px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(180, 143, 0, 0.08);
  animation: pulse 1.7s infinite;
}

/* FORM */
.form-section {
  padding-top: 26px;
}

.form-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.form-left {
  padding: 16px 8px;
}

.form-left h2 {
  margin: 14px 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--primary-dark);
}

.form-left p {
  margin: 0 0 22px;
  color: var(--text-soft);
  line-height: 1.8;
}

.form-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.form-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.form-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 800;
}

.form-card {
  padding: 28px;
}

#form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fdfefe;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(21, 84, 192, 0.35);
  box-shadow: 0 0 0 4px rgba(21, 84, 192, 0.08);
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

#resultado {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.pergunta {
  padding: 20px 22px;
  background: linear-gradient(90deg, rgba(21, 84, 192, 0.06), rgba(17, 184, 116, 0.06));
  color: var(--primary-dark);
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}

.resposta {
  display: none;
  padding: 20px 22px;
  color: var(--text-soft);
  line-height: 1.8;
  background: var(--white);
}

/* CTA FINAL */
.cta-final {
  padding: 20px 20px 80px;
}

.cta-final-box {
  max-width: 980px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, var(--primary-dark), var(--primary), #1c66da);
  color: var(--white);
  border-radius: 30px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: 0 20px 48px rgba(21, 84, 192, 0.22);
}

.cta-final-box h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-final-box p {
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

/* CHAT */
.chat-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  max-width: 250px;
  background: linear-gradient(135deg, var(--primary), #2f78f0);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(21, 84, 192, 0.24);
  font-size: 14px;
  line-height: 1.6;
}

#chatMsg {
  display: inline-block;
  margin-top: 4px;
  color: rgba(255,255,255,0.86);
}

/* NOTIFICAÇÃO */
.notificacao {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
  background: var(--white);
  color: var(--text);
  padding: 15px 18px;
  border-radius: 16px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  font-size: 14px;
  animation: slideUp 0.45s ease;
}

/* ANIMAÇÕES */
.fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .hero-container,
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid,
  .depoimentos-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .header-container,
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-infos,
  .steps-grid,
  .benefit-grid,
  .depoimentos-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-text h2,
  .form-left h2,
  .section-header h2,
  .cta-final-box h2 {
    font-size: 30px;
  }

  .hero-card {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .section,
  .cta-final {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-container,
  .topbar-content,
  .hero,
  .trust-strip,
  .section-small {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-area {
    align-items: flex-start;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .logo-title {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-header {
    width: 100%;
    justify-content: center;
  }

  .mini-box {
    padding: 16px 12px;
  }

  .form-card,
  .step-card,
  .benefit-card,
  .testimonial-card {
    padding: 22px;
  }

  .chat-box {
    right: 14px;
    left: 14px;
    bottom: 14px;
    max-width: none;
  }

  .notificacao {
    left: 14px;
    right: 14px;
    bottom: 84px;
  }
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
@media (max-width: 820px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 84, 192, 0.08);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(21, 84, 192, 0.12);
  box-shadow:
    0 10px 30px rgba(21, 84, 192, 0.10),
    0 2px 10px rgba(15, 63, 146, 0.06);
}

.header-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  transition: padding 0.28s ease;
}

.header.scrolled .header-container {
  padding: 12px 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  transition: width 0.28s ease, height 0.28s ease, transform 0.28s ease;
}

.header.scrolled .logo-img {
  width: 48px;
  height: 48px;
  transform: scale(0.98);
}

.logo-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  color: var(--primary-dark);
  transition: font-size 0.28s ease;
}

.logo-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-soft);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.header.scrolled .logo-title {
  font-size: 18px;
}

.header.scrolled .logo-subtitle {
  opacity: 0.82;
  transform: translateY(-1px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: 0.25s ease;
}

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

.btn-header {
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #20d58c);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(17, 184, 116, 0.22);
}

.btn-header:hover {
  transform: translateY(-2px);
}

/* botão hamburguer */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(21, 84, 192, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(21, 84, 192, 0.08);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1101;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 999px;
  transition: 0.28s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(21, 84, 192, 0.10);
    border-radius: 20px;
    box-shadow:
      0 18px 40px rgba(21, 84, 192, 0.12),
      0 6px 18px rgba(15, 63, 146, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid rgba(21, 84, 192, 0.06);
  }

  .nav a.btn-header {
    text-align: center;
    margin-top: 4px;
  }
}

@media (max-width: 640px) {
  .header-container {
    padding: 14px 16px;
  }

  .header.scrolled .header-container {
    padding: 10px 16px;
  }

  .logo-img {
    width: 46px;
    height: 46px;
  }

  .header.scrolled .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-title {
    font-size: 16px;
  }

  .header.scrolled .logo-title {
    font-size: 15px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  .nav {
    left: 16px;
    right: 16px;
  }
}
@media (max-width: 640px) {
  .logo-subtitle {
    display: none;
  }
}
.medicos-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.medicos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.medicos-text {
  text-align: center;
  margin-bottom: 40px;
}

.medicos-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #17324d;
}

.medicos-text p {
  color: #5f748b;
  max-width: 600px;
  margin: 0 auto;
}

.medicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.medico-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.medico-card:hover {
  transform: translateY(-6px);
}

.medico-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.medico-info {
  padding: 16px;
}

.medico-info strong {
  display: block;
  font-size: 18px;
  color: #17324d;
}

.medico-info span {
  font-size: 14px;
  color: #5f748b;
}

.medico-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #ecfdf5;
  color: #166534;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  font-weight: bold;
}
.google-proof {
  max-width: var(--container);
  margin: 34px auto 0;
}

.google-proof-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.google-proof-img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(21, 84, 192, 0.08);
  box-shadow: var(--shadow-soft);
}

.google-proof-text h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--primary-dark);
}

.google-proof-text p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 15px;
}

@media (max-width: 900px) {
  .google-proof-card {
    grid-template-columns: 1fr;
  }
}
/* =========================
   LGPD / CONSENTIMENTO UI
========================= */

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-container {
  max-width: 980px;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(21, 84, 192, 0.08);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-container p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* CHECKBOX LGPD */
.form-consent {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

.form-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

/* MODAL TERMOS */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 50, 0.55);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.hidden {
  display: none;
}

.modal-content {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #ffffff, #f5faff);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(21, 84, 192, 0.08);
  box-shadow: var(--shadow);
  animation: fadeUp 0.3s ease;
}

.modal-content h2 {
  margin-top: 0;
  color: var(--primary-dark);
}

.modal-content p {
  color: var(--text-soft);
  line-height: 1.7;
}

.modal-content ul {
  padding-left: 18px;
  color: var(--text);
  margin: 16px 0 22px;
}

.modal-content li {
  margin-bottom: 8px;
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}