/* ============================================
   ClubePharma Landing Page — Styles
   Brand: #3596C0 (Blue) / #1AAB8A (Teal)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --blue: #3596C0;
  --blue-dark: #2A7A9E;
  --blue-light: #E8F4FA;
  --teal: #1AAB8A;
  --teal-dark: #138D70;
  --teal-light: #E6F7F3;
  --gradient: linear-gradient(135deg, #3596C0 0%, #1AAB8A 100%);
  --gradient-reverse: linear-gradient(135deg, #1AAB8A 0%, #3596C0 100%);
  --gradient-subtle: linear-gradient(135deg, #E8F4FA 0%, #E6F7F3 100%);
  --dark: #0F172A;
  --dark-card: #1E293B;
  --dark-lighter: #334155;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --white: #FFFFFF;
  --orange: #F59E0B;
  --pink: #EC4899;
  --purple: #8B5CF6;
  --green: #10B981;
  --red: #EF4444;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow-blue: 0 0 40px rgba(53,150,192,0.3);
  --shadow-glow-teal: 0 0 40px rgba(26,171,138,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  background: var(--dark);
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.4;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(53,150,192,0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(53,150,192,0.45);
}

.btn--gradient {
  background: linear-gradient(135deg, #1AAB8A 0%, #3596C0 50%, #8B5CF6 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,171,138,0.35);
}

.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,171,138,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  z-index: 10;
  flex-shrink: 0;
}

.navbar__logo strong {
  font-weight: 800;
}

.navbar--scrolled .navbar__logo {
  color: var(--gray-800);
}

.navbar__logo-icon {
  height: 72px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}

.navbar__links {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px max(24px, calc((100vw - 1200px) / 2 + 24px));
  gap: 8px;
  pointer-events: none;
  background: transparent;
  transition: padding var(--transition);
}

.navbar__links .navbar__link {
  pointer-events: auto;
}

.navbar__links.navbar--scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.navbar__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.navbar--scrolled .navbar__link {
  color: var(--gray-600);
}

.navbar--scrolled .navbar__link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.navbar__link.btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.navbar--scrolled .navbar__link.btn--outline {
  border-color: var(--blue);
  color: var(--blue);
}

.navbar__link.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(53,150,192,0.3);
}

/* Mobile menu backdrop */
.navbar__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.navbar__backdrop.open {
  opacity: 1;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar--scrolled .navbar__toggle span {
  background: var(--gray-700);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #0F2A3D 0%, #1A4B6B 30%, #3596C0 60%, #1AAB8A 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--white);
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title .gradient-text {
  background: linear-gradient(135deg, #7DD3FC 0%, #6EE7B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero__support {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__support strong {
  color: rgba(255,255,255,0.9);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.hero__stat-number small {
  font-size: 20px;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Hero Phone Mock */
.hero__phone {
  width: 300px;
  margin: 0 auto;
  background: var(--gray-900);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 80px rgba(53,150,192,0.15);
  position: relative;
}

.hero__phone-notch {
  width: 120px;
  height: 24px;
  background: var(--gray-900);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero__phone-screen {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 16px 16px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-800);
}

.hero__app-logo {
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
}

.hero__app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  animation: slideInCard 0.6s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.hero__app-card:nth-child(2) { animation-delay: 0.5s; }
.hero__app-card:nth-child(3) { animation-delay: 1s; }
.hero__app-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes slideInCard {
  to { opacity: 1; transform: translateY(0); }
}

.hero__app-card svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__app-card strong {
  display: block;
  font-size: 13px;
  color: var(--gray-800);
}

.hero__app-card small {
  font-size: 11px;
  color: var(--gray-500);
}

.hero__app-card--1 {
  background: var(--teal-light);
}
.hero__app-card--1 svg { color: var(--teal); }

.hero__app-card--2 {
  background: var(--blue-light);
}
.hero__app-card--2 svg { color: var(--blue); }

.hero__app-card--3 {
  background: #FEF3C7;
}
.hero__app-card--3 svg { color: var(--orange); }

.hero__app-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px;
  margin-top: auto;
  border-top: 1px solid var(--gray-200);
}

.hero__app-nav svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

.hero__app-nav svg:first-child {
  color: var(--blue);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

.hero__scroll-indicator svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTIONS — General
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--accent {
  background: var(--gray-50);
}

.section--light {
  background: var(--white);
}

/* Fix sub-pixel gap between sections on mobile zoom-out */
section, .hero {
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section__tag--light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__title--light {
  color: var(--white);
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
}

.section__subtitle--light {
  color: rgba(255,255,255,0.65);
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   O QUE OFERECEMOS — Feature Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 24px;
}

.feature-card--wide p {
  margin: 0;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card--wide .feature-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__icon--blue { background: var(--blue-light); color: var(--blue); }
.feature-card__icon--teal { background: var(--teal-light); color: var(--teal); }
.feature-card__icon--purple { background: #F3E8FF; color: var(--purple); }
.feature-card__icon--orange { background: #FEF3C7; color: var(--orange); }
.feature-card__icon--pink { background: #FCE7F3; color: var(--pink); }
.feature-card__icon--green { background: #D1FAE5; color: var(--green); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   PLANOS — Plan Cards
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-lighter);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.plan-card--popular {
  border-color: var(--blue);
  box-shadow: var(--shadow-glow-blue);
  transform: scale(1.03);
}

.plan-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-card--premium {
  border-color: var(--teal);
}

.plan-card--premium:hover {
  box-shadow: var(--shadow-glow-teal);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--gradient);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card__badge--premium {
  background: linear-gradient(135deg, #1AAB8A 0%, #8B5CF6 100%);
}

.plan-card__header {
  margin-bottom: 16px;
}

.plan-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.plan-card__currency {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.plan-card__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.plan-card__amount small {
  font-size: 28px;
}

.plan-card__period {
  font-size: 15px;
  color: var(--gray-500);
}

.plan-card__desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 24px;
}

.plan-card__features {
  flex: 1;
  margin-bottom: 32px;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.plan-card__features li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.plans__disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plans__disclaimer svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   VANTAGENS — Split Layout
   ============================================ */
.vantagens-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vantagens-split--reverse {
  direction: rtl;
}

.vantagens-split--reverse > * {
  direction: ltr;
}

.vantagens-list {
  margin: 32px 0;
}

.vantagens-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.vantagens-list li:last-child {
  border-bottom: none;
}

.vantagens-list__icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vantagens-list__icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.vantagens-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.vantagens-list li p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Dashboard Mock */
.dashboard-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.dashboard-mock__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

.dashboard-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-mock__dot--red { background: #EF4444; }
.dashboard-mock__dot--yellow { background: #F59E0B; }
.dashboard-mock__dot--green { background: #10B981; }

.dashboard-mock__body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dashboard-mock__metric {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  text-align: center;
}

.dashboard-mock__metric small {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.dashboard-mock__metric strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-800);
}

.dashboard-mock__trend {
  font-size: 12px;
  font-weight: 700;
}

.dashboard-mock__trend--up { color: var(--green); }
.dashboard-mock__trend--down { color: var(--green); }

.dashboard-mock__chart {
  grid-column: span 3;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.dashboard-mock__bar {
  flex: 1;
  background: var(--gradient);
  border-radius: 4px 4px 0 0;
  min-height: 10px;
  transition: height 1s ease;
}

/* Farmácias Visual */
.farmacias-visual {
  background: var(--gradient-subtle);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}

.farmacias-visual__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.farmacias-visual__icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.farmacias-visual h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.farmacias-visual p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.farmacias-visual__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.farmacias-visual__tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.farmacias-visual__tags span svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

/* Médico Visual */
.medico-visual {
  position: relative;
  padding: 40px;
}

.medico-visual__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.medico-visual__card--main {
  margin-bottom: 24px;
}

.medico-visual__card--stat {
  margin-left: 32px;
  margin-bottom: 16px;
}

.medico-visual__card--stat2 {
  margin-left: 64px;
}

.medico-visual__avatar {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.medico-visual__avatar svg {
  width: 24px;
  height: 24px;
}

.medico-visual__card strong {
  display: block;
  font-size: 15px;
  color: var(--gray-800);
}

.medico-visual__card small {
  font-size: 12px;
  color: var(--gray-500);
}

.medico-visual__card svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================
   PACIENTES — Cards
   ============================================ */
.pacientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.paciente-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}

.paciente-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.paciente-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.paciente-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.paciente-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.paciente-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   COMO FUNCIONA — Steps
   ============================================ */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-lighter);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.step-card__number {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.step-card__connector {
  display: flex;
  align-items: center;
}

.step-card__connector svg {
  width: 28px;
  height: 28px;
  color: var(--gray-500);
}

.steps__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

/* ============================================
   DEPOIMENTOS — Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  fill: var(--orange);
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card blockquote strong {
  color: var(--gray-800);
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--gray-800);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--gray-500);
}

/* ============================================
   PRICING B2B
   ============================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-b2b-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition);
}

.pricing-b2b-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-b2b-card--highlight {
  border-color: var(--blue);
  box-shadow: var(--shadow-glow-blue);
}

.pricing-b2b-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pricing-b2b-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.pricing-b2b-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.pricing-b2b-card__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.pricing-b2b-card__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-b2b-card__detail {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pricing-b2b-card__tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.pricing-b2b__note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-b2b__note svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SEGURANÇA
   ============================================ */
.seguranca-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 48px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.seguranca__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seguranca__icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.seguranca__content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.seguranca__content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.seguranca__badges {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.seguranca__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.seguranca__badge svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--blue);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item--open .faq-item__question svg {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq__cta {
  text-align: center;
  margin-top: 48px;
}

.faq__cta p {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sobre__text {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 16px;
}

.sobre__team h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 24px;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-card {
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.team-card__avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.team-card__avatar svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.team-card strong {
  display: block;
  font-size: 16px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.team-card span {
  display: block;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 4px;
}

.team-card small {
  font-size: 12px;
  color: var(--gray-500);
}

/* ============================================
   CONTATO
   ============================================ */
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contato__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contato__channel:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.contato__channel svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.contato__channel strong {
  display: block;
  font-size: 15px;
  color: var(--white);
}

.contato__channel span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.contato__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contato__form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.12);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-800);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__logo strong {
  font-weight: 800;
}

.footer__logo-icon {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: var(--transition);
}

.footer__col a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
}

.footer__legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__legal a:hover {
  color: var(--teal);
}

.footer__legal span {
  color: var(--gray-700);
}

.footer__disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--gray-600);
  font-style: italic;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.65), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-blue);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle,
  .hero__support {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--wide {
    grid-column: span 2;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vantagens-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vantagens-split--reverse {
    direction: ltr;
  }

  .vantagens-split__visual {
    order: -1;
  }

  .pacientes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* FAB — Material Design: 16px edge margin + iOS safe area (34px home indicator) */
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  /* Back to top — above FAB: 80px bottom + 52px height + 12px gap = 144px */
  .back-to-top {
    bottom: 144px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  /* Section spacing — 48px per UX/Material guidelines for mobile */
  .section {
    padding: 48px 0;
  }

  /* Section header — 40px on mobile (5×8pt grid) */
  .section__header {
    margin-bottom: 40px;
  }

  /* Hero spacing — hierarquia: badge→H1: 12px, H1→subtitle: 16px, subtitle→CTA: 24px */
  .hero__badge {
    margin-bottom: 12px;
  }

  .hero__title {
    margin-bottom: 16px;
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .hero__support {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero__ctas {
    gap: 12px;
    margin-bottom: 32px;
  }

  .navbar__backdrop {
    display: block;
    pointer-events: none;
  }
  .navbar__backdrop.open {
    pointer-events: auto;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 32px 32px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    gap: 4px;
    align-items: stretch;
    z-index: 1001;
    overflow-y: auto;
    pointer-events: auto;
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__link {
    color: var(--gray-700);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }

  .navbar__link:hover {
    background: var(--gray-100);
    color: var(--blue);
  }

  .navbar__link.btn--primary {
    text-align: center;
  }

  .navbar__link.btn--outline {
    color: var(--blue);
    border-color: var(--blue);
    text-align: center;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__logo-icon {
    height: 48px;
    max-width: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card--popular {
    transform: none;
  }

  .plan-card--popular:hover {
    transform: translateY(-4px);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .step-card__connector {
    transform: rotate(90deg);
  }

  .steps__ctas {
    flex-direction: column;
    align-items: center;
  }

  .pacientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .seguranca-inner {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .seguranca__badges {
    justify-content: center;
  }

  .seguranca__content .btn {
    margin: 0 auto;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .dashboard-mock__body {
    grid-template-columns: 1fr;
  }

  .dashboard-mock__chart {
    grid-column: span 1;
  }

  .medico-visual__card--stat {
    margin-left: 0;
  }

  .medico-visual__card--stat2 {
    margin-left: 0;
  }

  .medico-visual {
    padding: 0;
  }

  /* Hero CTAs — full width on mobile for better conversion */
  .hero__ctas .btn {
    width: 100%;
  }

  /* Section subtitle — 16px base body size on mobile */
  .section__subtitle {
    font-size: 16px;
  }

  /* Feature card — tighter padding on mobile */
  .feature-card {
    padding: 24px;
  }

  /* Plan card — mobile padding */
  .plan-card {
    padding: 24px;
  }

  /* Vantagens list — tighter on mobile */
  .vantagens-list {
    margin: 16px 0;
  }

  .vantagens-list li {
    padding: 12px 0;
    gap: 12px;
  }

  /* Form label — readable on mobile */
  .form-group label {
    font-size: 13px;
  }

  /* FAQ question padding on mobile */
  .faq-item__question {
    padding: 16px 0;
    font-size: 15px;
  }

  /* Step number smaller on mobile */
  .step-card__number {
    font-size: 40px;
  }

  /* Section CTA margin-top on mobile */
  .section__cta {
    margin-top: 32px;
  }

  /* Team cards gap */
  .team-cards {
    gap: 16px;
  }

  /* Segurança content on mobile */
  .seguranca__content h2 {
    font-size: 20px;
  }

  /* Contato channels on mobile */
  .contato__channel {
    padding: 16px;
  }

  /* Footer disclaimer */
  .footer__disclaimer {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .pacientes-grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 100px 0 60px;
  }

  /* Extra small screens — hero */
  .hero__badge {
    font-size: 12px;
  }

  .hero__stat-number {
    font-size: 28px;
  }

  .hero__stat-label {
    font-size: 12px;
  }

  /* Feature card extra small */
  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 16px;
  }
}
