/* ============================================
   SAÚDE ACESSO — Premium Landing Page CSS
   Modern Healthtech Design System
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --green-primary: #1da641;
  --green-dark: #158a33;
  --green-light: #e8f7ed;
  --green-glow: rgba(29, 166, 65, 0.15);

  --orange-primary: #f47b20;
  --orange-dark: #d96510;
  --orange-light: #fff4ec;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --black: #0a0a0a;

  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-green: 0 8px 32px rgba(29, 166, 65, 0.25);
  --shadow-orange: 0 8px 32px rgba(244, 123, 32, 0.30);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --container-max: 1200px;
  --section-padding: 96px 0;
  --section-padding-sm: 64px 0;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

details, summary {
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Primary — Green */
.btn-primary {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(29, 166, 65, 0.40);
  transform: translateY(-2px);
}

/* Orange */
.btn-orange {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  box-shadow: 0 12px 40px rgba(244, 123, 32, 0.40);
  transform: translateY(-2px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* White */
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.20);
}

/* Outline White */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Sizes */
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }
.btn-xl { padding: 22px 44px; font-size: 1.125rem; }
.btn-full { width: 100%; }

/* Pulse animation */
.btn-pulse {
  animation: btnPulse 3s ease infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-green); }
  50% { box-shadow: 0 8px 40px rgba(29, 166, 65, 0.5), 0 0 0 8px rgba(29, 166, 65, 0.1); }
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.highlight-green {
  color: var(--green-primary);
  position: relative;
}

.highlight-white {
  color: var(--white);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}

.navbar-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.navbar-links a:hover {
  color: var(--green-primary);
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.mobile-link:hover {
  background: var(--green-light);
  color: var(--green-primary);
}

.mobile-cta {
  font-size: 1.0625rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(29,166,65,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(29,166,65,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero Text */
.hero-text {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  animation: dotPulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29,166,65,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(29,166,65,0); }
}

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.price-highlight {
  color: var(--green-primary);
  position: relative;
  display: inline-block;
}

.price-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
  border-radius: 2px;
  opacity: 0.3;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-sub strong {
  color: var(--gray-800);
}

/* Benefits list */
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-benefits li .fa-circle-check {
  color: var(--green-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Hero actions */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-disclaimer {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

/* Social proof mini */
.social-proof-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.stars-row {
  display: flex;
  gap: 2px;
}

.stars-row .fa-star {
  color: #f59e0b;
  font-size: 0.875rem;
}

.social-proof-mini p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.social-proof-mini strong {
  color: var(--gray-900);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
}

.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  animation: floatCard 4s ease-in-out infinite;
}

.float-card--top {
  top: 24px;
  left: -20px;
  animation-delay: 0s;
}

.float-card--bottom {
  bottom: 24px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.float-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-card strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  display: block;
}

.float-card span {
  font-size: 0.75rem;
  color: var(--green-primary);
  font-weight: 500;
}

/* Trust seals */
.trust-seals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 520px;
}

.trust-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.trust-seal:hover {
  border-color: var(--green-primary);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.trust-seal i {
  font-size: 1.125rem;
  color: var(--green-primary);
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.benefit-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: var(--green-primary);
}

.benefit-icon i {
  font-size: 1.25rem;
  color: var(--green-primary);
  transition: color var(--transition-base);
}

.benefit-card:hover .benefit-icon i {
  color: var(--white);
}

.benefit-card h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}

.steps-wrapper {
  position: relative;
  margin-bottom: 56px;
}

.steps-line {
  position: absolute;
  top: 64px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
  opacity: 0.2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(29,166,65,0.35);
}

.step-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.step-content h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.how-cta {
  text-align: center;
}

.how-cta .btn {
  margin-bottom: 12px;
}

.micro-text {
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-light);
}

.testimonial-stars .fa-star {
  color: #f59e0b;
  font-size: 0.875rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}

.author-avatar--blue { background: #dbeafe; color: #1d4ed8; }
.author-avatar--purple { background: #ede9fe; color: #7c3aed; }
.author-avatar--orange { background: #fff7ed; color: #c2410c; }
.author-avatar--teal { background: #ccfbf1; color: #0f766e; }
.author-avatar--pink { background: #fce7f3; color: #be185d; }

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ============================================
   PLANS
   ============================================ */

.plans {
  padding: var(--section-padding);
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Featured plan */
.plan-card--featured {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green), var(--shadow-md);
  transform: scale(1.02);
  z-index: 2;
}

.plan-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 20px 60px rgba(29,166,65,0.25), var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: var(--shadow-green);
}

.plan-header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid var(--gray-200);
}

.plan-card--featured .plan-header {
  border-color: rgba(29,166,65,0.2);
}

.plan-name {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.price-currency {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-top: 8px;
}

.price-amount {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-primary);
  letter-spacing: -0.03em;
}

.price-amount sup {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: super;
}

.price-period {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 400;
  align-self: flex-end;
  padding-bottom: 6px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.plan-features li .fa-check {
  color: var(--green-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-btn {
  font-size: 1rem;
}

.plans-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 32px;
}

/* ============================================
   HUMANIZED SECTION — Teleconsulta para o que importa
   ============================================ */

.humanized {
  padding: var(--section-padding);
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.humanized::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(29,166,65,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Main two-column layout */
.humanized-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 48px;
}

.humanized-problems {
  display: flex;
  flex-direction: column;
}

/* ---- Problem List ---- */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: default;
}

.problem-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  transition: transform var(--transition-base);
}

.problem-item:hover .problem-icon {
  transform: scale(1.1);
}

.problem-icon--blue  { background: #dbeafe; color: #1d4ed8; }
.problem-icon--orange { background: #fff7ed; color: #c2410c; }
.problem-icon--purple { background: #ede9fe; color: #7c3aed; }
.problem-icon--teal  { background: #ccfbf1; color: #0f766e; }
.problem-icon--pink  { background: #fce7f3; color: #be185d; }
.problem-icon--green { background: var(--green-light); color: var(--green-dark); }

.problem-content strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.problem-content p {
  font-size: 0.8375rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

/* ---- Emergency Notice ---- */
.emergency-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-lg);
}

.emergency-icon {
  width: 36px;
  height: 36px;
  background: #fef3c7;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d97706;
  font-size: 1rem;
}

.emergency-text {
  font-size: 0.8375rem;
  color: #78350f;
  line-height: 1.6;
}

.emergency-text strong {
  color: #92400e;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* ---- Image Mosaic ---- */
.humanized-visuals {
  position: relative;
}

.img-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  height: 520px;
}

.mosaic-main {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mosaic-small {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex: 1;
  box-shadow: var(--shadow-lg);
}

.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.mosaic-main:hover .mosaic-img,
.mosaic-small:hover .mosaic-img {
  transform: scale(1.04);
}

/* Mosaic overlay badges */
.mosaic-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-800);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  transition: transform var(--transition-base);
  z-index: 10;
}

.mosaic-badge i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.mosaic-badge--1 {
  bottom: 20px;
  left: 16px;
  right: 16px;
  justify-content: center;
}

.mosaic-badge--1 i { color: var(--green-primary); }

.mosaic-badge--2 {
  bottom: 12px;
  left: 10px;
  right: 10px;
  justify-content: center;
  font-size: 0.75rem;
  padding: 7px 12px;
}

.mosaic-badge--2 i { color: #e11d48; }

.mosaic-badge--3 {
  bottom: 12px;
  left: 10px;
  right: 10px;
  justify-content: center;
  font-size: 0.75rem;
  padding: 7px 12px;
}

.mosaic-badge--3 i { color: #f59e0b; }

.mosaic-main:hover .mosaic-badge,
.mosaic-small:hover .mosaic-badge {
  transform: translateY(-3px);
}

/* ---- Bottom CTA Strip ---- */
.humanized-cta-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.humanized-cta-strip:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-lg);
}

.hcta-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hcta-icon i {
  font-size: 1.5rem;
  color: var(--green-primary);
}

.hcta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hcta-text strong {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gray-900);
}

.hcta-text span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---- Responsive — Tablet ---- */
@media (max-width: 1024px) {
  .humanized-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .img-mosaic {
    height: 380px;
  }

  .humanized-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .hcta-text {
    align-items: center;
  }
}

/* ---- Responsive — Mobile ---- */
@media (max-width: 640px) {

  .problem-item {
    padding: 14px 16px;
  }

  .problem-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .img-mosaic {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }

  .mosaic-main {
    height: 220px;
  }

  .mosaic-side {
    flex-direction: row;
    height: 140px;
  }

  .mosaic-small {
    flex: 1;
  }

  .humanized-cta-strip {
    padding: 24px 20px;
    border-radius: var(--radius-xl);
  }

  .hcta-icon {
    width: 48px;
    height: 48px;
  }

  .hcta-text strong {
    font-size: 1rem;
  }

  .humanized-cta-strip .btn {
    width: 100%;
  }
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: var(--section-padding);
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item[open] {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  transition: all var(--transition-fast);
  list-style: none;
  user-select: none;
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-icon {
  color: var(--gray-400);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--green-primary);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d7a2a 0%, #1da641 40%, #25c55a 100%);
}

.final-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.final-badge i {
  color: rgba(255,255,255,0.8);
}

.final-headline {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.final-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}

.final-sub strong {
  color: var(--white);
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.final-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.final-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.final-trust-item i {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

/* Pulse for white button */
.btn-white.btn-pulse {
  animation: btnPulseWhite 3s ease infinite;
}

@keyframes btnPulseWhite {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 10px rgba(255,255,255,0.15); }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--green-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-bottom-badges {
  display: flex;
  gap: 16px;
}

.footer-bottom-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-bottom-badges i {
  color: var(--green-primary);
  font-size: 0.75rem;
}

/* ============================================
   MOBILE FLOATING CTA
   ============================================ */

.mobile-float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1.5px solid var(--gray-200);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.10);
}

.mobile-float-btn {
  border-radius: var(--radius-lg) !important;
  font-size: 1rem;
}

/* ============================================
   AOS ANIMATIONS (Custom)
   ============================================ */

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="80"] { transition-delay: 80ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }

[data-aos=fade-right] { transform: translateX(-24px); }
[data-aos=fade-right].aos-animate { transform: translateX(0); }

[data-aos=fade-left] { transform: translateX(24px); }
[data-aos=fade-left].aos-animate { transform: translateX(0); }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 1024px) {

  :root {
    --section-padding: 72px 0;
  }

  /* Hero: tablet — volta para 1 coluna, imagem acima */
  .hero-inner {
    grid-template-columns: 1fr;
    margin-top: 72px;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
    height: 340px;
  }

  .hero-img {
    height: 340px;
    object-position: center 15%;
  }

  .hero-text {
    padding: 36px 24px 32px;
    align-items: flex-start;
  }

  .hero-seals-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .hero-seal {
    width: 50%;
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .hero-seal-divider {
    display: none;
  }

  .whatsapp-float {
    bottom: 72px;
  }

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

  .steps-line { display: none; }

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

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

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .plan-card--featured {
    transform: scale(1);
    order: -1;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .navbar-links, .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .proof-bar-inner {
    gap: 0;
  }

  .proof-stat {
    padding: 12px 24px;
  }

  .proof-divider {
    height: 30px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 640px) {

  :root {
    --section-padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero mobile */
  .hero-visual {
    height: 240px;
  }

  .hero-img {
    height: 240px;
    object-position: center 10%;
  }

  .hero-text {
    padding: 28px 16px 24px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-benefits-wrap {
    gap: 16px;
  }

  .hero-benefits-col li {
    font-size: 0.875rem;
  }

  .hero-float-badge {
    top: 12px;
    left: 12px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-social-proof {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  .hero-seals-inner {
    display: none; /* esconder selos no mobile, priorizando CTA */
  }

  .whatsapp-float {
    bottom: 72px;
    right: 12px;
  }

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

  .benefit-card {
    padding: 24px 20px;
  }

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

  .step-card {
    flex-direction: row;
    text-align: left;
    padding: 24px 20px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    align-items: flex-start;
    gap: 16px;
  }

  .step-number { display: none; }

  .step-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-icon i {
    font-size: 1.25rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plans-grid {
    max-width: 100%;
    gap: 16px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .plan-badge {
    font-size: 0.75rem;
    padding: 5px 16px;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .final-headline {
    font-size: 1.875rem;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .final-trust-row {
    gap: 20px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-float-cta {
    display: block;
  }

  /* Push content above mobile CTA */
  .final-cta {
    padding-bottom: 100px;
  }

  .faq-question {
    font-size: 0.9375rem;
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }
}

/* ============================================
   UTILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Smooth focus for accessibility */
:focus-visible {
  outline: 3px solid var(--green-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection color */
::selection {
  background: var(--green-light);
  color: var(--green-dark);
}

/* Scrollbar (Webkit) */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-primary);
}


/* =========================
   WhatsApp Flutuante
========================= */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #1ebe5d;
}

/* Tooltip */

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #111827;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Efeito Pulsando */

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .whatsapp-float {
        width: 58px;
        height: 58px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}



