@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Cores - Estilo Moderno / Clínico Premium */
  --navy: #082F63;
  --blue: #0056D2;
  --blue-hover: #0044A5;
  --sky-light: #F0F7FF;
  --sky-medium: #E1EFFF;
  --sky-dark: #BCD7F8;
  --text-dark: #1E2E44;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --border-color: #E2E8F0;
  --success: #16A34A;
  --whatsapp: #25D366;
  --risk: #DC2626;

  /* Fontes e Sombras */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-card: 0 10px 30px rgba(8, 47, 99, 0.05);
  --shadow-hover: 0 20px 40px rgba(8, 47, 99, 0.08);
  --radius-default: 8px;
  --radius-large: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--white);
}

body {
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.main-header {
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-icon {
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-default);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 86, 210, 0.15);
}

.btn-primary:hover {
  background-color: var(--blue-hover);
  box-shadow: 0 6px 18px rgba(0, 86, 210, 0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--sky-light);
  border-color: var(--sky-dark);
}

.btn-outline-whatsapp {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--navy);
}

.btn-outline-whatsapp:hover {
  border-color: var(--whatsapp);
  background-color: rgba(37, 211, 102, 0.05);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20BA56;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 86, 210, 0.25);
}

/* SVG Icon styles */
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(240, 247, 255, 0.65) 0%, rgba(255, 255, 255, 0.7) 100%), url('../imagens/hero_bg_pattern.webp') no-repeat center center;
  background-size: cover;
  padding: 60px 0 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  padding-bottom: 60px;
}

.hero-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Pricing Pill Badge */
.pricing-badge-wrapper {
  margin-bottom: 24px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: var(--navy);
  border-radius: 50px;
  padding: 10px 24px 10px 14px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(8, 47, 99, 0.15);
}

.pricing-badge-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background-color: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.pricing-badge-text {
  display: flex;
  flex-direction: column;
}

.pricing-badge-text span {
  font-size: 11px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-badge-text strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-badge-text em {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.prescription-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

.prescription-notice svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Hero Image & Cross Decorations */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  min-height: 480px;
}

.hero-doctor-circle {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 86, 210, 0.1) 0%, rgba(0, 86, 210, 0.01) 70%);
  border: 2px dashed rgba(0, 86, 210, 0.15);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: rotate-slow 30s linear infinite;
  pointer-events: none;
}

@keyframes rotate-slow {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

.hero-img {
  max-width: 90%;
  height: auto;
  max-height: 540px;
  display: block;
  z-index: 2;
  position: relative;
  margin-bottom: -60px; /* Efeito 3D saindo da seção para baixo */
  filter: drop-shadow(0 15px 35px rgba(8, 47, 99, 0.16));
}

/* Floating Cross Decorations */
.med-cross {
  position: absolute;
  color: var(--sky-dark);
  opacity: 0.4;
  font-size: 48px;
  font-weight: 300;
  user-select: none;
  pointer-events: none;
  animation: float-slow 6s ease-in-out infinite alternate;
}

.cross-1 { top: 15%; left: 5%; font-size: 36px; animation-delay: 0s; }
.cross-2 { top: 35%; right: 5%; font-size: 56px; animation-delay: 1.5s; }
.cross-3 { bottom: 20%; left: 15%; font-size: 40px; animation-delay: 3s; }

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(5deg); }
}

/* Section Common Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--sky-light);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-title-wrap h2 {
  font-size: 32px;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title-wrap h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--blue);
  border-radius: 2px;
}

/* Section: Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky-dark);
}

.benefit-icon-box {
  width: 64px;
  height: 64px;
  background-color: var(--sky-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-box {
  background-color: var(--blue);
  color: var(--white);
}

.benefit-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Section: O que é a Tirzepatida */
#sobre-tirzepatida {
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-light) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.whatis-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.whatis-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatis-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,86,210,0.12) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.whatis-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(8, 47, 99, 0.15));
}

.whatis-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.whatis-content h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 16px;
}

.whatis-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.whatis-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px auto 0;
  max-width: 500px;
  width: 100%;
}

.whatis-bullet-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-default);
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(8, 47, 99, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatis-bullet-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
  border-left-color: var(--blue-hover);
}

.whatis-bullet-icon {
  width: 44px;
  height: 44px;
  background-color: var(--sky-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.whatis-bullet-item:hover .whatis-bullet-icon {
  background-color: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

.whatis-bullet-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatis-bullet-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* Section: Como funciona */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
}

.step-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
}

.step-number-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 86, 210, 0.2);
}

.step-icon-wrap {
  color: var(--blue);
  margin-bottom: 20px;
}

.step-icon-wrap svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.step-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Step Connector Arrow */
.step-connector {
  position: absolute;
  top: 45%;
  font-size: 24px;
  color: var(--blue);
  font-weight: bold;
  opacity: 0.5;
  user-select: none;
}

.connector-1 { left: 30.5%; }
.connector-2 { left: 65%; }

/* Banner de Investimento */
.investment-banner {
  background: linear-gradient(135deg, #05234D 0%, #0045A9 100%);
  border-radius: var(--radius-large);
  padding: 48px 60px;
  color: var(--white);
  margin-top: 60px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(8, 47, 99, 0.15);
  position: relative;
  overflow: hidden;
}

.investment-banner::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.investment-vial-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.investment-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.investment-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.investment-price {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.investment-desc {
  font-size: 14px;
  opacity: 0.9;
}

.investment-action .btn {
  height: 52px;
  padding: 0 32px;
  font-size: 15px;
}

/* Section: FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--sky-dark);
  box-shadow: var(--shadow-card);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  justify-content: space-between;
}

.faq-trigger-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-trigger-icon {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-trigger-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.faq-chevron {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 24px 20px 60px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Active States */
.faq-item.open {
  border-color: var(--sky-dark);
  background-color: var(--sky-light);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-content {
  max-height: 300px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #003C95 100%);
  padding: 56px 0;
  color: var(--white);
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-banner-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
}

.cta-banner-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.cta-banner-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.cta-banner-right .btn {
  height: 52px;
  padding: 0 32px;
  font-size: 15px;
}

/* Section: Formulário */
.form-section {
  scroll-margin-top: 80px;
  background: linear-gradient(135deg, rgba(240, 247, 255, 0.7) 0%, rgba(225, 239, 255, 0.7) 100%), url('../imagens/form_bg_pattern.webp') no-repeat center center;
  background-size: cover;
}

.form-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  padding: 40px;
  box-shadow: 0 15px 45px rgba(8, 47, 99, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.form-steps-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.form-steps-nav::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.form-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: all 0.2s ease;
}

.form-step-dot.active {
  border-color: var(--blue);
  background-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 10px rgba(0, 86, 210, 0.25);
}

.form-step-dot.completed {
  border-color: var(--navy);
  background-color: var(--navy);
  color: var(--white);
}

.form-step-panel {
  display: none;
}

.form-step-panel.active {
  display: block;
}

.form-panel-title {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--sky-light);
  padding-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid-full {
  grid-column: span 2;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--risk);
  margin-left: 2px;
}

.form-control {
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font-family);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
  background-color: var(--sky-light);
  color: var(--text-dark);
  transition: all 0.2s ease;
}

textarea.form-control {
  height: auto;
  padding: 12px 16px;
}

.form-control:focus {
  border-color: var(--blue);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.15);
}

.form-help {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Error States */
.form-group.has-error .form-control {
  border-color: var(--risk);
  background-color: #FFF5F5;
}

.form-error-msg {
  font-size: 11px;
  color: var(--risk);
  font-weight: 500;
  margin-top: 4px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.consent-checkbox input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.consent-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-footer-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

/* Fallback WhatsApp */
.form-fallback-card {
  display: none;
  background-color: var(--sky-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}

.form-fallback-card h4 {
  color: var(--navy);
  margin-bottom: 12px;
}

.form-fallback-card p {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.whatsapp-msg-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
  padding: 16px;
  font-family: monospace;
  font-size: 11px;
  text-align: left;
  max-height: 150px;
  overflow-y: auto;
  margin-bottom: 16px;
  white-space: pre-wrap;
  color: var(--text-dark);
}

/* Footer Section */
.main-footer {
  background-color: #03172E;
  color: #8CA0B7;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col-desc a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col-desc a:hover {
  color: var(--white);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-col-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col-desc {
  line-height: 1.5;
  color: #8CA0B7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-legal-notice {
  font-size: 12px;
  line-height: 1.6;
  color: #5C7087;
  max-width: 800px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav-link {
  color: #8CA0B7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 11px;
  color: #4A5D72;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .prescription-notice {
    justify-content: center;
  }

  .hero-image-wrap {
    order: -1;
    min-height: auto;
    padding-bottom: 20px;
  }

  .hero-doctor-circle {
    width: 320px;
    height: 320px;
    bottom: 0;
  }

  .hero-img {
    max-height: 360px;
    margin-bottom: -30px;
  }

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

  .whatis-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .whatis-bullets {
    margin: 28px auto 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .investment-banner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-banner-left {
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .main-header {
    height: 72px;
  }

  .nav-link {
    display: none;
  }

  #header-cta {
    font-size: 12px;
    padding: 0 12px;
    height: 36px;
  }

  .hero-title {
    font-size: 32px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .whatis-bullets {
    margin: 24px auto 0;
    gap: 12px;
  }

  .form-card {
    padding: 24px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-full {
    grid-column: span 1;
  }

  .form-footer-buttons {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .form-footer-buttons .btn {
    width: 100%;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
