/* ============================================================
   MEDIC FÁCIL RJ — CSS Global  /MF/assets/style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --roxo:        #651695;
  --roxo-escuro: #4a0f6e;
  --roxo-claro:  #8B2FC9;
  --verde:       #73FF3E;
  --verde-escuro:#5CE62E;
  --preto:       #1C1C2E;
  --cinza:       #6B6B8A;
  --cinza-claro: #F5F2FA;
  --branco:      #ffffff;
  --sombra-roxo: 0 8px 32px rgba(101,22,149,0.18);
  --fonte:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte);
  color: var(--preto);
  background: var(--branco);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Containers ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }
.anim-delay-7 { transition-delay: 0.7s; }
.anim-delay-8 { transition-delay: 0.8s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ede8f5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(101,22,149,0.07);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--preto);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--roxo);
  border-bottom-color: var(--roxo);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cinza-claro);
  color: var(--roxo);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.header-social a:hover {
  background: var(--roxo);
  color: var(--branco);
  transform: translateY(-2px);
}

/* hamburger mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--preto);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(101,22,149,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(115,255,62,0.05) 0%, transparent 60%),
    var(--branco);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content { padding-bottom: 80px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(101,22,149,0.25);
  color: var(--roxo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--verde);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--preto);
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--roxo);
}

.hero-sub {
  font-size: 18px;
  color: var(--cinza);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 460px;
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--branco);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 14px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wpp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-wpp:active { transform: scale(0.97); }
.btn-wpp svg { flex-shrink: 0; }

.hero-image { align-self: flex-end; }

.hero-image img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 48px rgba(101,22,149,0.12);
}

/* ============================================================
   FAIXA DE CREDIBILIDADE
   ============================================================ */
.cred-band {
  background: var(--preto);
  padding: 48px 0;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.cred-item:hover {
  background: rgba(115,255,62,0.06);
  border-color: rgba(115,255,62,0.25);
  transform: translateY(-3px);
}

.cred-item__icon {
  width: 52px;
  height: 52px;
  background: rgba(115,255,62,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.3;
  display: block;
}

.cred-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  display: block;
}

/* ============================================================
   PROPOSTA DE VALOR
   ============================================================ */
.valor {
  background: var(--cinza-claro);
  padding: 96px 0;
}

.valor .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.valor-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--preto);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.valor-text h2 span { color: var(--roxo); }

.valor-text p {
  font-size: 16px;
  color: var(--cinza);
  line-height: 1.75;
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-block;
  background: var(--roxo);
  color: var(--branco);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(101,22,149,0.3);
}
.btn-cta:hover {
  background: var(--roxo-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(101,22,149,0.4);
}
.btn-cta:active { transform: scale(0.97); }

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.servico-item {
  background: var(--branco);
  border-radius: 14px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--preto);
  border: 1.5px solid #ede8f5;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.servico-item:hover {
  border-color: var(--roxo);
  box-shadow: 0 8px 24px rgba(101,22,149,0.12);
  transform: translateY(-3px);
}

.servico-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #F0E8FA;
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.servico-item:hover .icon {
  background: #e0ccf5;
}

/* ============================================================
   TAGLINE BAND
   ============================================================ */
.tagline-band {
  background: var(--roxo);
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tagline-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(115,255,62,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.tagline-band p {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 800;
  color: var(--branco);
  line-height: 1.45;
  position: relative;
  letter-spacing: -0.3px;
}

.tagline-band p span { color: var(--verde); }

/* ============================================================
   SEÇÃO DE COTAÇÃO / BENEFÍCIOS
   ============================================================ */
.cotacao {
  padding: 96px 0;
  background: var(--branco);
}

.cotacao .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.cotacao-text h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  color: var(--preto);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cotacao-text h2 span { color: var(--roxo); }

.cotacao-text p {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.75;
}

.cotacao-text .trust-items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--preto);
  font-weight: 500;
}

.trust-item .check {
  width: 22px;
  height: 22px;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--preto);
  flex-shrink: 0;
}

/* Botão externo */
.btn-form {
  display: block;
  width: 100%;
  background: var(--roxo);
  color: var(--branco);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--fonte);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(101,22,149,0.25);
}

.btn-form:hover {
  background: var(--roxo-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(101,22,149,0.35);
}
.btn-form:active { transform: scale(0.97); }

/* Caixa de benefícios (lado direito da cotação) */
.beneficios-box {
  background: var(--cinza-claro);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1.5px solid #ede8f5;
  box-shadow: 0 4px 32px rgba(101,22,149,0.06);
}

.beneficios-grupo { padding: 4px 0 8px; }

.beneficios-grupo__titulo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--preto);
  margin-bottom: 14px;
}

.beneficios-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beneficios-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3C3C5A;
  line-height: 1.5;
}

.bcheck {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--preto);
  margin-top: 1px;
}

.bcheck--roxo {
  background: var(--roxo);
  color: var(--branco);
}

.beneficios-divider {
  border: none;
  border-top: 1.5px solid #ddd6f0;
  margin: 22px 0;
}

.btn-form--link {
  display: block;
  width: 100%;
  background: var(--roxo);
  color: var(--branco);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(101,22,149,0.25);
}

.btn-form--link:hover {
  background: var(--roxo-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(101,22,149,0.35);
}
.btn-form--link:active { transform: scale(0.97); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--preto);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
  border-top: 3px solid var(--roxo);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--branco);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--verde); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--roxo);
  color: var(--branco);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: var(--verde); }

/* ============================================================
   PÁGINA DE PREÇOS — hero
   ============================================================ */
.precos-hero {
  background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-escuro) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.precos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(115,255,62,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.precos-hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
}

.precos-hero h1 span { color: var(--verde); }

.precos-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .cred-grid { max-width: 100%; }
}

@media (max-width: 900px) {
  .hero .container,
  .valor .container,
  .cotacao .container {
    grid-template-columns: 1fr;
  }

  .hero-image { display: none; }
  .hero { padding: 56px 0 56px; }
  .hero-content { padding-bottom: 0; }

  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--branco);
    padding: 20px 24px;
    border-bottom: 1px solid #ede8f5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 99;
  }
  .hamburger { display: flex; }
  .header-social { display: none; }

  .cred-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .beneficios-box { padding: 24px 20px; }
  .cotacao { padding: 64px 0; }
  .valor { padding: 64px 0; }
}

@media (max-width: 420px) {
  .cred-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
}