@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─────────────────────────────────────────────
   BASE RESET
   ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Red Hat Text', sans-serif;
  background: #fff;
  color: #1a1a18;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }

/* ─────────────────────────────────────────────
   PALETA
   ───────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --off:       #f7f8fa;
  --text:      #1a1a18;
  --muted:     #545454;
  --dark:      #0F1A3E;
  --navy:      #3B82F6;
  --navy-soft: #60A5FA;
  --navy-l:    #EEF2FF;
  --border:    #E8ECF0;
  --white:     #ffffff;
  --max:       1280px;
  --px:        clamp(20px, 5vw, 64px);
}

/* ─────────────────────────────────────────────
   ANNOUNCE BAR
   ───────────────────────────────────────────── */
.announce-bar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 10px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.announce-bar a { color: var(--navy-soft); }

/* ─────────────────────────────────────────────
   NAVBAR
   ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 36px; width: auto; }
.brand-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .2s;
}

/* Mobile nav drawer (funis; a home usa o painel lateral md-) */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block;
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
}
.nav-drawer a:hover { background: var(--off); }
.nav-drawer-close {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ─────────────────────────────────────────────
   HERO DARK (medvi clone)
   ───────────────────────────────────────────── */
.hero-dark {
  background: var(--dark);
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 88px var(--px) 0;
  position: relative;
  overflow: visible;   /* permite cards transbordarem */
  text-align: center;
}
.hero-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-dark-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-join {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.hero-join strong { color: #fff; font-weight: 700; }
.hero-dark h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);  /* medvi: ~60px, não 100px */
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-dark h1 em { font-style: normal; color: #93C5FD; }  /* azul suave, não forte */
.hero-dark .hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Category cards — transbordam para fora do hero (overlap) */
.hero-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 10;
  margin-bottom: -80px;  /* overlap na seção abaixo */
}
.hero-cat {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s;
}
.hero-cat:hover { transform: translateY(-4px); }
.hero-cat-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.hero-cat-img .ph-icon { width: 48px; height: 72px; }
.hero-cat-img .ph { gap: 0; }
.hero-cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-family: 'Red Hat Text', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.hero-cat-arrow { color: var(--muted); }

/* ─────────────────────────────────────────────
   PLACEHOLDER DE IMAGEM (foto do produto entra depois)
   ───────────────────────────────────────────── */
.ph {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
}
.ph-icon {
  width: 72px;
  height: 108px;
  color: rgba(15,26,62,.22);
  flex-shrink: 0;
}
.ph.on-dark .ph-icon { color: rgba(255,255,255,.28); }
.ph-label {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(15,26,62,.42);
}
.ph.on-dark .ph-label { color: rgba(255,255,255,.5); }
.ph-tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(15,26,62,.3);
  padding: 3px 10px;
  border: 1px solid rgba(15,26,62,.15);
  border-radius: 100px;
}
.ph.on-dark .ph-tag { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.2); }

/* ─────────────────────────────────────────────
   BENTO — seção de categoria (clone medvi)
   card+benefits à esquerda | título+2fotos+cta à direita
   ───────────────────────────────────────────── */
.bento { padding: 120px 0; }
.bento-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.bento-left { display: flex; flex-direction: column; gap: 36px; }
.bento-media {
  border-radius: 28px; overflow: hidden; aspect-ratio: 5/6;
  background: var(--bento-bg, #eef2ff);
  display: flex; align-items: center; justify-content: center;
}
.bento-media img { width: 100%; height: 100%; object-fit: cover; }
/* foto recortada (fundo removido): pessoa ancorada embaixo, pastel visível acima da cabeça */
.bento-media img.cut { object-fit: cover; object-position: center; width: 100%; height: 100%; }
.bento-media .ph-icon { width: 76px; height: 114px; color: rgba(15,26,62,.28); }
.bento-benefits h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 18px; }
.bento-check { display: flex; flex-direction: column; gap: 13px; }
.bento-check li { display: flex; align-items: center; gap: 12px; font-size: .9375rem; color: var(--text); }
.bento-check li::before {
  content: ''; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bento-accent, var(--navy));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.bento-right { display: flex; flex-direction: column; }
.bento-eyebrow { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--bento-accent, var(--navy)); margin-bottom: 14px; }
.bento-title { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 700; line-height: 1.08; letter-spacing: -.025em; color: var(--text); margin-bottom: 44px; }
.bento-title em { font-style: normal; color: var(--bento-accent, var(--navy)); }
.bento-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; align-items: start; }
.bento-photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 24px; background: var(--off); }
.bento-photos img:nth-child(1) { margin-top: 56px; }   /* 1ª desce (escalonamento) */
.bento-foot-title { font-size: clamp(1.25rem, 2.4vw, 1.75rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: 14px; max-width: 560px; }
.bento-foot-sub { font-size: 1rem; color: var(--muted); line-height: 1.6; max-width: 520px; margin-bottom: 28px; }
.bento-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px; border-radius: 100px;
  background: var(--bento-accent, var(--dark)); color: #fff;
  font-family: 'Red Hat Text', sans-serif; font-size: .9375rem; font-weight: 700;
  width: fit-content; transition: opacity .15s;
}
.bento-btn:hover { opacity: .85; }
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento-media { aspect-ratio: 16/10; }
}
@media (max-width: 560px) {
  .bento-photos { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy-l);
  padding: 14px 0;
  border-bottom: 1px solid #BFDBFE;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
}
.marquee-dot {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1;
}

/* ── FEATURE SECTIONS (medvi clone) ── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature.dark { background: var(--dark); }

/* Visual side: fundo colorido com imagem cortada ao frasco */
.feature-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}
.feature-placeholder {
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-placeholder .ph-icon { width: 88px; height: 132px; }

/* Content side */
.feature-content {
  padding: 80px clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: #fff;
}
.feature.dark .feature-content { background: var(--dark); }
.feature-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy);
}
.feature.dark .feature-label { color: #93C5FD; }
.feature-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text);
}
.feature.dark .feature-title { color: #fff; }
.feature-title em { font-style: normal; color: var(--navy); }
.feature.dark .feature-title em { color: #93C5FD; }
.feature-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}
.feature.dark .feature-sub { color: rgba(255,255,255,.5); }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--text);
}
.feature.dark .feature-list li { color: rgba(255,255,255,.8); }
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}
.feature.dark .feature-list li::before { background: #93C5FD; }
.feature-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 8px;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--dark);
  color: #fff;
  font-family: 'Red Hat Text', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  transition: opacity .15s;
  white-space: nowrap;
}
.btn-dark:hover { opacity: .8; }
.btn-dark.light { background: #fff; color: var(--dark); }

.btn-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .15s;
}
.btn-link.white { color: #fff; }
.btn-link:hover { opacity: .7; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  font-family: 'Red Hat Text', sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  transition: .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* ─────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────── */
.how { padding: 96px 0; background: var(--off); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.how-header p { font-size: 1rem; color: var(--muted); margin-top: 10px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: .9375rem; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────────
   CTA BAND
   ───────────────────────────────────────────── */
.cta-band { background: var(--dark); padding: 96px 0; text-align: center; }
.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p { font-size: 1rem; color: rgba(255,255,255,.5); margin-bottom: 32px; }

/* ─────────────────────────────────────────────
   PRODUTO CARDS CAROUSEL (medvi glp1 style)
   ───────────────────────────────────────────── */
.prod-section { padding: 80px 0; background: #fff; }
.prod-section-header { padding: 0 var(--px); margin-bottom: 40px; }
.prod-section-header .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.prod-section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.prod-section-header h2 em { font-style: normal; color: var(--navy); }
.prod-section-header p { font-size: 1rem; color: var(--muted); line-height: 1.65; }

.carousel-outer { overflow-x: auto; scrollbar-width: none; }
.carousel-outer::-webkit-scrollbar { display: none; }
.carousel-inner {
  display: flex;
  gap: 16px;
  padding: 0 var(--px) 24px;
  width: max-content;
}
.prod-card {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }
.prod-card-img {
  height: 260px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prod-card-img .ph-icon { width: 56px; height: 84px; }
.prod-card-img .ph { gap: 0; }
.prod-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prod-card-price { font-size: .8125rem; font-weight: 700; color: var(--navy); }
.prod-card-name { font-size: 1.1875rem; font-weight: 700; color: var(--text); line-height: 1.25; }
.prod-card-desc { font-size: .875rem; color: var(--muted); line-height: 1.5; flex: 1; }
.prod-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 100px;
  background: var(--dark);
  color: #fff;
  font-family: 'Red Hat Text', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  margin-top: 8px;
  transition: opacity .15s;
}
.prod-card-btn:hover { opacity: .8; }

/* ─────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────── */
.testimonials { padding: 80px 0; background: var(--off); }
.testimonials h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 48px;
}
.testimonials h2 em { font-style: normal; color: var(--navy); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-quote { font-size: 1rem; color: var(--text); line-height: 1.65; font-style: italic; flex: 1; }
.testi-author { font-size: .8125rem; font-weight: 600; color: var(--muted); }
.testi-stars { color: #F59E0B; letter-spacing: 2px; font-size: .875rem; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 0 36px;
  color: rgba(255,255,255,.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-brand-logotext {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
}
.footer-brand p { font-size: .85rem; line-height: 1.65; max-width: 220px; }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .85rem; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { font-size: .75rem; }
.footer-disc {
  font-size: .7rem;
  line-height: 1.7;
  color: rgba(255,255,255,.2);
  max-width: 720px;
  margin-bottom: 8px;
}

/* ─────────────────────────────────────────────
   MOBILE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature { grid-template-columns: 1fr; }
  .feature.reverse { direction: ltr; }
  .feature-visual { min-height: 320px; }
  .feature-placeholder img { min-height: 320px; object-position: center 8%; }
  .feature-content { padding: 48px 24px; }
  .hero-cats { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prod-section-header .split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-cats { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-dark h1 { font-size: 2.75rem; }
  .feature-content { padding: 48px 24px; }
}
