@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

#bcm * { margin: 0; padding: 0; box-sizing: border-box; }

#bcm {
  --blue: #15759c;        /* azul do BigCalm - cor de acao */
  --blue-dark: #0f6084;   /* hover */
  --blue-bright: #6cb4d8; /* azul pastel do produto - tarja, barra */
  --blue-pale: #e8f4fb;   /* fundo de badge */
  --blue-ink: #0e5a78;    /* texto legivel sobre creme/branco/azul-claro */
  --cream: #f6fafc;
  --black: #000;
  --gray: #5d5d5d;
  --border: #e4eef3;
  --star: #ffa800;
  --radius: 16px;
  --font-display: 'Archivo', Arial, sans-serif;
  --font-text: 'Inter', Arial, sans-serif;
}

#bcm {
  font-family: var(--font-text);
  font-weight: 400;
  background: var(--cream);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: block;
  width: 100%;
  text-align: left;
  padding-bottom: 110px;
}

#bcm img, #bcm video { max-width: 100%; display: block; }
#bcm a { color: inherit; text-decoration: none; }

#bcm .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
#bcm .bcm-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

#bcm .bcm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14.4px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

#bcm .bcm-header__inner > .btn {
  margin-left: auto;
  padding: 10.4px 20px;
  font-size: 11.2px;
  letter-spacing: 0.01em;
}

#bcm .bcm-header__logo { height: 30px; width: auto; }

#bcm .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 14.4px 28px;
  font-size: 12.8px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

#bcm .btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

#bcm .btn--pulse { animation: bcm-pulse 2.2s ease-in-out infinite; }

@keyframes bcm-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ---------- Hero ---------- */
#bcm .hero { padding: 56px 0 48px; }

#bcm .hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

#bcm .hero__badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-ink);
  border-radius: 99px;
  padding: 5.6px 14.4px;
  font-size: 11.2px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#bcm .hero__title {
  font-family: var(--font-display);
  font-size: clamp(27.2px, 3.2vw, 38.4px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#bcm .hero__text {
  color: var(--gray);
  font-size: 16px;
  max-width: 50ch;
  margin-bottom: 24px;
}

#bcm .hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

#bcm .hero__stat { line-height: 1.2; }
#bcm .hero__stat strong { font-size: 16.8px; }
#bcm .hero__stat span { display: block; font-size: 11.5px; color: var(--gray); }

#bcm .offer-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9.6px 19.2px;
}

#bcm .offer-pill__label {
  font-size: 9.9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
}

#bcm .offer-pill__value {
  font-weight: 700;
  font-size: 13.1px;
  color: var(--blue-ink);
}

#bcm .hero__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Marquee ---------- */
#bcm .marquee {
  background: var(--black);
  color: var(--blue-bright);
  overflow: hidden;
  padding: 11.2px 0;
}

#bcm .marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: bcm-marquee 28s linear infinite;
}

#bcm .marquee__item {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

#bcm .marquee__item::after { content: "🎁"; margin-left: 40px; }

@keyframes bcm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Review cards ---------- */
#bcm .reviews { padding: 48px 0 40px; text-align: center; }

#bcm .reviews__title {
  font-family: var(--font-display);
  font-size: clamp(22.4px, 2.6vw, 30.4px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6.4px;
}

#bcm .reviews__sub { color: var(--gray); font-size: 14.4px; margin-bottom: 28px; }

#bcm .reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

#bcm .review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14.4px;
}

#bcm .review-card__stars { color: var(--star); font-size: 13.6px; letter-spacing: 2px; }
#bcm .review-card__text { font-size: 13.6px; color: #333; flex: 1; }

#bcm .review-card__user {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9.6px;
  border-top: 1px solid var(--border);
  padding-top: 14.4px;
}

#bcm .review-card__initials {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11.2px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#bcm .review-card__name { font-weight: 700; font-size: 12.8px; }

#bcm .review-card__verified {
  display: flex;
  align-items: center;
  gap: 5.6px;
  font-size: 11.2px;
  color: var(--gray);
}

#bcm .review-card__verified::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 8.8px;
}

/* ---------- Motivos (numbered sections) ---------- */
#bcm .motivo { padding: 48px 0; }

#bcm .motivo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

#bcm .motivo__number {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15.2px;
  font-weight: 600;
  border-bottom: 1px solid var(--black);
  padding-bottom: 9.6px;
  margin-bottom: 24px;
}

#bcm .motivo__title {
  font-family: var(--font-display);
  font-size: clamp(22.4px, 2.6vw, 30.4px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 16px;
}

#bcm .motivo__text { color: var(--gray); font-size: 15.2px; margin-bottom: 14.4px; }

#bcm .motivo__img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* inline review inside motivo 03 */
#bcm .motivo__review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

#bcm .motivo__review p { font-size: 13.1px; color: #333; margin-bottom: 12.8px; }

#bcm .motivo__review .review-card__user {
  border: none;
  padding-top: 0;
}

#bcm .motivo__review-img {
  max-width: 220px;
  border-radius: 8px;
}

/* ---------- CTA ---------- */
#bcm .cta { padding: 64px 0 48px; text-align: center; scroll-margin-top: 48px; }

#bcm .cta__badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-ink);
  border-radius: 99px;
  padding: 5.6px 16px;
  font-size: 11.2px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

#bcm .cta__title {
  font-family: var(--font-display);
  font-size: clamp(27.2px, 3.4vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 24px;
}

#bcm .cta__sub { color: var(--gray); font-size: 14.4px; margin-bottom: 12.8px; }
#bcm .cta__sub strong { color: var(--black); }

/* ---------- Offer card ---------- */
#bcm .offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
  text-align: left;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

#bcm .offer__img { width: 100%; height: 100%; object-fit: cover; }

#bcm .offer__content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

#bcm .offer__tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

#bcm .offer__tag {
  font-size: 10.9px;
  font-weight: 700;
  border-radius: 99px;
  padding: 5.6px 12.8px;
}

#bcm .offer__tag--dark { background: var(--black); color: var(--blue-bright); }
#bcm .offer__tag--soft { background: var(--blue-pale); color: var(--blue-ink); }
#bcm .offer__tag--alert { background: #fdeee6; color: #b0400f; }

#bcm .offer__title {
  font-family: var(--font-display);
  font-size: clamp(20.8px, 2.4vw, 27.2px);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--black);
}

#bcm .offer__note { font-size: 12.8px; color: var(--gray); }
#bcm .offer__note strong { color: var(--black); }

#bcm .offer__btn {
  width: 100%;
  min-height: 57.6px;
  font-size: 13.6px;
}

#bcm .offer__timer {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#bcm .offer__timer span { font-variant-numeric: tabular-nums; }

#bcm .stock { width: 100%; }

#bcm .stock__label {
  display: flex;
  justify-content: center;
  gap: 4.8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6.4px;
}

#bcm .stock__label strong { color: var(--blue-ink); }

#bcm .stock__track {
  height: 8px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

#bcm .stock__fill {
  width: 92%;
  height: 100%;
  background: var(--blue-bright);
  border-radius: 99px;
}

#bcm .offer__trust {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue-ink);
}

#bcm .guarantee {
  display: flex;
  align-items: center;
  gap: 14.4px;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 17.6px;
  width: 100%;
  text-align: left;
}

#bcm .guarantee__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-ink);
  font-size: 17.6px;
  font-weight: 700;
  flex-shrink: 0;
}

#bcm .guarantee__title { font-size: 13.6px; font-weight: 700; }
#bcm .guarantee__text { font-size: 11.5px; color: var(--gray); }

/* ---------- Depoimentos ---------- */
#bcm .depoimentos { padding: 64px 0; text-align: center; }

#bcm .depoimentos__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 12.8px;
}

#bcm .depoimentos__sub { color: var(--gray); font-size: 14.4px; margin-bottom: 36px; }

#bcm .depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 96%);
  margin-bottom: 24px;
}

#bcm .btn--outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

#bcm .btn--outline:hover { background: var(--black); color: #fff; }

/* ---------- FAQ ---------- */
#bcm .faq { padding: 64px 0 80px; }

#bcm .faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

#bcm .faq__icon { font-size: 28.8px; margin-bottom: 16px; }

#bcm .faq__title {
  font-family: var(--font-display);
  font-size: clamp(28.8px, 3vw, 38.4px);
  font-weight: 600;
  line-height: 1.15;
}

#bcm .faq__item { border-top: 1px solid var(--black); }
#bcm .faq__item:last-child { border-bottom: 1px solid var(--black); }

#bcm .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17.6px 0;
  font-size: 14.7px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

#bcm .faq__question::-webkit-details-marker { display: none; }

#bcm .faq__question::after {
  content: "⌄";
  font-size: 16px;
  color: var(--blue-ink);
  flex-shrink: 0;
  transition: transform 0.25s;
}

#bcm details[open] .faq__question::after { transform: rotate(180deg); }

#bcm .faq__answer { padding: 0 0 20px; font-size: 13.9px; color: var(--gray); }
#bcm .faq__answer p { margin-bottom: 11.2px; }
#bcm .faq__answer strong { color: var(--black); }

/* ---------- Sticky CTA bar ---------- */
#bcm .sticky-bar {
  display: block;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 12.8px 20px 10.4px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

#bcm .sticky-bar--visible { transform: translateY(0); }

#bcm .sticky-bar__inner {
  max-width: 560px;
  margin: 0 auto;
}

#bcm .sticky-bar__btn {
  width: 100%;
  min-height: 54.4px;
  font-size: 13.6px;
}

#bcm .sticky-bar__checks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6.4px 24px;
  margin-top: 8.8px;
  font-size: 10.9px;
  font-weight: 500;
}

#bcm .sticky-bar__check::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 8.8px;
  margin-right: 5.6px;
  vertical-align: 1px;
}

/* ---------- Footer ---------- */
#bcm .brand-footer {
  width: 100%;
  background: #111111;
  color: #fff;
  padding: 64px 16px;
  font-family: var(--font-text);
  position: relative;
  overflow: hidden;
}

#bcm .brand-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

#bcm .brand-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

#bcm .brand-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#bcm .brand-footer__col--brand {
  gap: 24px;
  align-items: flex-start;
}

#bcm .brand-footer__logo {
  width: 192px;
  color: #fff;
}

#bcm .brand-footer__logo svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}

#bcm .brand-footer__meta {
  color: #bababa;
  font-size: 15px;
}

#bcm .brand-footer__meta p + p { margin-top: 16px; }
#bcm .brand-footer__meta a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
#bcm .brand-footer__meta a:hover { color: #fff; }

#bcm .brand-footer__heading {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

#bcm .brand-footer__info { color: #bababa; font-size: 15px; }
#bcm .brand-footer__info p + p { margin-top: 4px; }
#bcm .brand-footer__info p:first-child { color: #fff; font-weight: 700; }

#bcm .brand-footer__list {
  list-style: none;
  color: #bababa;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#bcm .brand-footer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

#bcm .brand-footer__link:hover { color: #fff; }
#bcm .brand-footer__icon { flex-shrink: 0; }

#bcm .brand-footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 16px 0 32px;
}

#bcm .brand-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-bottom: 16px;
}

#bcm .brand-footer__totop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #bababa;
  font-family: inherit;
  transition: color 0.15s ease;
}

#bcm .brand-footer__totop:hover { color: #fff; }
#bcm .brand-footer__totop-icon { transition: transform 0.2s ease; }
#bcm .brand-footer__totop:hover .brand-footer__totop-icon { transform: translateY(-4px); }
#bcm .brand-footer__totop span { font-size: 14px; }

@media (min-width: 768px) {
  #bcm .brand-footer__inner { padding: 0 32px; }
  #bcm .brand-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  #bcm .brand-footer { padding: 96px 16px; }
  #bcm .brand-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 64px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  #bcm .hero__grid, #bcm .motivo__grid, #bcm .offer, #bcm .faq__grid { grid-template-columns: minmax(0, 1fr); }
  #bcm .reviews__grid, #bcm .depoimentos__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #bcm .motivo__grid { gap: 24px; }

  /* mobile order: number → title → image → text */
  #bcm .motivo__content { display: contents; }
  #bcm .motivo__media { order: 1; }
  #bcm .motivo__body { order: 2; }
  #bcm .motivo__number, #bcm .motivo__title { margin-bottom: 0; }

  /* full-bleed image first (margens simetricas ancoradas no viewport) */
  #bcm .hero { padding-top: 0; overflow-x: clip; }
  #bcm .hero__media {
    order: -1;
    width: auto !important;
    max-width: none !important;
    margin: 0 calc(50% - 50vw) !important;
  }
  #bcm .hero__media img { border-radius: 0; aspect-ratio: 5 / 4; width: 100%; }
  #bcm .hero__cta { width: 100%; }

}

@media (max-width: 600px) {
  #bcm .bcm-header__inner { padding: 12px 14px; }
  #bcm .bcm-header__logo { height: 24px; }
  #bcm .bcm-header__inner > .btn { padding: 9px 14px; font-size: 9.6px; gap: 5px; }
  #bcm .hero__grid { gap: 32px; }
  #bcm .hero__meta { justify-content: center; }
  #bcm .offer-pill { width: 100%; text-align: center; }
  #bcm .motivo { padding: 32px 0; }
  #bcm .offer__content { padding: 28px 20px; }
  #bcm .faq__grid { gap: 32px; }

  /* reviews as swipeable carousel */
  #bcm .reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  #bcm .reviews__grid .review-card {
    min-width: 84%;
    scroll-snap-align: center;
  }
  #bcm .depoimentos__grid { grid-template-columns: minmax(0, 1fr); }
}
