/* ==========================================================================
   Beefelina — Design tokens
   ========================================================================== */
:root {
  --bg: #ffffff;
  --bg-alt: #faf7f8;
  --surface: #ffffff;
  --surface-2: #f4f0f2;
  --border: rgba(32, 22, 26, 0.09);
  --border-strong: rgba(32, 22, 26, 0.16);

  --text: #423b40;
  --text-secondary: #756d74;
  --text-muted: #aaa1a7;
  --ink: #3d2e37;

  --pink: #ec7ea6;
  --pink-strong: #e2568f;
  --pink-soft: #fbe3ec;
  --silver: #c7c6cc;
  --silver-light: #edecef;
  --silver-dark: #8b8a92;
  --wine: #d391ae;

  --shadow-sm: 0 1px 3px rgba(32, 22, 26, 0.05);
  --shadow-md: 0 20px 40px -24px rgba(32, 22, 26, 0.18);
  --shadow-lg: 0 30px 60px -28px rgba(32, 22, 26, 0.2);

  --hex-clip: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);

  /* Favo de mel — textura tileável (tile 78x135), usada como camada decorativa */
  --honeycomb-tile: 90px 155.8px;
  --honeycomb-silver: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='78' height='135'%3E%3Cg fill='none' stroke='%23c7c6cc' stroke-width='1.3'%3E%3Cpath d='M39,0 L0,22.5 L0,67.5 L39,90 L78,67.5 L78,22.5 Z'/%3E%3Cpath d='M0,67.5 L-39,90 L-39,135 L0,157.5 L39,135 L39,90 Z'/%3E%3Cpath d='M78,67.5 L39,90 L39,135 L78,157.5 L117,135 L117,90 Z'/%3E%3Cpath d='M0,-67.5 L-39,-45 L-39,0 L0,22.5 L39,0 L39,-45 Z'/%3E%3Cpath d='M78,-67.5 L39,-45 L39,0 L78,22.5 L117,0 L117,-45 Z'/%3E%3C/g%3E%3C/svg%3E");
  --honeycomb-pink: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='78' height='135'%3E%3Cg fill='none' stroke='%23e2568f' stroke-width='1.3'%3E%3Cpath d='M39,0 L0,22.5 L0,67.5 L39,90 L78,67.5 L78,22.5 Z'/%3E%3Cpath d='M0,67.5 L-39,90 L-39,135 L0,157.5 L39,135 L39,90 Z'/%3E%3Cpath d='M78,67.5 L39,90 L39,135 L78,157.5 L117,135 L117,90 Z'/%3E%3Cpath d='M0,-67.5 L-39,-45 L-39,0 L0,22.5 L39,0 L39,-45 Z'/%3E%3Cpath d='M78,-67.5 L39,-45 L39,0 L78,22.5 L117,0 L117,-45 Z'/%3E%3C/g%3E%3C/svg%3E");
  --honeycomb-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='78' height='135'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.3'%3E%3Cpath d='M39,0 L0,22.5 L0,67.5 L39,90 L78,67.5 L78,22.5 Z'/%3E%3Cpath d='M0,67.5 L-39,90 L-39,135 L0,157.5 L39,135 L39,90 Z'/%3E%3Cpath d='M78,67.5 L39,90 L39,135 L78,157.5 L117,135 L117,90 Z'/%3E%3Cpath d='M0,-67.5 L-39,-45 L-39,0 L0,22.5 L39,0 L39,-45 Z'/%3E%3Cpath d='M78,-67.5 L39,-45 L39,0 L78,22.5 L117,0 L117,-45 Z'/%3E%3C/g%3E%3C/svg%3E");


  --script: "Courgette", cursive;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 220ms;
  --dur-med: 380ms;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, p {
  margin: 0;
}

svg {
  display: block;
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--pink);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--silver-dark), var(--pink));
}

h2.section-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-desc {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 52ch;
}

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

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  transition-delay: calc(var(--stagger-i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-h: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: var(--btn-h);
  padding-inline: 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-strong), var(--pink));
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(226, 86, 143, 0.45);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 900ms var(--ease);
}
.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: translateX(120%);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(226, 86, 143, 0.55);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--pink);
  color: var(--pink-strong);
  background: rgba(226, 86, 143, 0.06);
}

.btn-outline-light {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  border-color: var(--pink);
  background: rgba(226, 86, 143, 0.08);
}

.btn-sm {
  --btn-h: 2.5rem;
  padding-inline: 1.25rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Abelha que sobrevoa em círculo os CTAs principais, no hover/focus */
.btn-wrap {
  position: relative;
  display: inline-flex;
}

.btn-bee-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.btn-wrap:hover .btn-bee-orbit,
.btn-wrap:focus-within .btn-bee-orbit {
  opacity: 1;
  animation: btn-bee-spin 1.7s linear infinite;
}

.btn-bee-orbit svg {
  position: absolute;
  top: -44px;
  left: -8px;
  width: 16px;
  height: 16px;
  color: var(--pink-strong);
  animation: bee-flap 0.4s ease-in-out infinite;
}

@keyframes btn-bee-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1.35rem;
  transition: padding var(--dur-med) var(--ease), background var(--dur-med) var(--ease),
    box-shadow var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease);
}

.site-header.is-scrolled {
  padding-block: 0.85rem;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--border), 0 20px 40px -30px rgba(32, 22, 26, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 34px;
  width: auto;
  transition: height var(--dur-med) var(--ease), transform var(--dur-fast) var(--ease);
}

.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.04) rotate(-2deg);
}

.site-header.is-scrolled .brand img {
  height: 28px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.primary-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding-block: 0.3rem;
  transition: color var(--dur-fast) var(--ease);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--pink);
  transition: right var(--dur-med) var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text);
}

.mobile-nav .btn {
  margin-top: 1rem;
}

@media (min-width: 940px) {
  .primary-nav {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 939px) {
  .primary-nav {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(7.5rem, 14vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 82% 10%, rgba(226, 86, 143, 0.12), transparent 60%),
    radial-gradient(50% 45% at 6% 88%, rgba(199, 198, 204, 0.4), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fdfbfb 55%, #ffffff 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-silver);
  background-size: var(--honeycomb-tile);
  opacity: 0.55;
  mask-image: radial-gradient(75% 65% at 62% 25%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(75% 65% at 62% 25%, black, transparent 75%);
}

.hero-hex {
  position: absolute;
  z-index: -1;
  color: var(--silver-dark);
  opacity: 0.22;
  pointer-events: none;
}
.hero-hex-1 {
  top: 6%;
  right: 4%;
  width: 220px;
  height: 220px;
  transform: rotate(8deg);
}
.hero-hex-2 {
  bottom: -4%;
  left: 2%;
  width: 130px;
  height: 130px;
  color: var(--pink);
  opacity: 0.18;
  transform: rotate(-6deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.45rem 0.9rem 0.45rem 0.65rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink-strong);
  margin-bottom: 1.75rem;
}

.hero-eyebrow .icon-bee {
  width: 15px;
  height: 15px;
  color: var(--pink-strong);
}

.hero-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hero-title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-strong), var(--pink-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-trust svg {
  color: var(--pink);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-bee {
  display: none;
  position: absolute;
  color: var(--pink-strong);
  pointer-events: none;
  z-index: 3;
}

@media (min-width: 900px) {
  .hero-bee {
    display: block;
  }
}

.hero-bee-1 {
  width: 26px;
  height: 26px;
  top: 8%;
  left: -6%;
  opacity: 0.85;
  animation: bee-hover-1 2.6s ease-in-out infinite;
}
.hero-bee-2 {
  width: 17px;
  height: 17px;
  top: 30%;
  left: -14%;
  opacity: 0.55;
  color: var(--silver-dark);
  animation: bee-hover-2 3.1s ease-in-out infinite 0.4s;
}
.hero-bee-3 {
  width: 20px;
  height: 20px;
  top: -6%;
  right: 8%;
  opacity: 0.5;
  color: var(--pink);
  pointer-events: none;
  animation: bee-hover-3 2.9s ease-in-out infinite 0.8s;
}

@keyframes bee-hover-1 {
  0%, 100% { transform: rotate(-18deg) translateY(0) scale(1); }
  50% { transform: rotate(-10deg) translateY(-5px) scale(1.08); }
}
@keyframes bee-hover-2 {
  0%, 100% { transform: rotate(10deg) translateY(0) scale(1); }
  50% { transform: rotate(17deg) translateY(-7px) scale(1.05); }
}
@keyframes bee-hover-3 {
  0%, 100% { transform: rotate(16deg) translateY(0) scale(1); }
  50% { transform: rotate(8deg) translateY(6px) scale(1.08); }
}

/* Abelha "voadora" — percorre um trajeto e pousa perto do selo, só em telas maiores */
.hero-bee-flyer {
  display: none;
  position: absolute;
  width: 22px;
  height: 22px;
  color: var(--pink-strong);
  z-index: 4;
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero-bee-flyer {
    display: block;
    offset-path: path("M 430,30 C 500,120 500,260 430,360 C 500,420 520,520 460,600 C 400,660 260,650 160,600 C 60,550 -10,470 30,400 C 70,340 180,340 240,280 C 300,220 260,120 320,60 C 360,20 400,10 430,30 Z");
    offset-rotate: auto;
    animation: bee-fly-path 11s ease-in-out infinite;
  }
}

.hero-bee-flyer svg {
  display: block;
  animation: bee-flap 0.45s ease-in-out infinite;
}

@keyframes bee-fly-path {
  0% { offset-distance: 0%; }
  36% { offset-distance: 54%; }
  40% { offset-distance: 56%; }
  62% { offset-distance: 58%; }
  66% { offset-distance: 60%; }
  100% { offset-distance: 100%; }
}

@keyframes bee-flap {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  50% { transform: scaleY(0.82) scaleX(1.06); }
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #ffffff, var(--silver-light) 55%, var(--pink-soft) 165%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(226, 86, 143, 0.16), transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(199, 198, 204, 0.5), transparent 60%);
}


.placeholder-photo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.placeholder-photo svg {
  width: 44px;
  height: 44px;
  color: var(--pink-strong);
  opacity: 0.8;
}

.placeholder-photo span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-secondary);
  max-width: 20ch;
}

.hero-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  padding: 1rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-badge img {
  width: 30px;
  height: auto;
}

.hero-badge-text strong {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text);
}
.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* ==========================================================================
   Feature strip
   ========================================================================== */
.feature-strip {
  position: relative;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fffdfe;
  overflow: hidden;
}

.feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-pink);
  background-size: var(--honeycomb-tile);
  opacity: 0.14;
  mask-image: radial-gradient(65% 130% at 50% 50%, black, transparent 85%);
  -webkit-mask-image: radial-gradient(65% 130% at 50% 50%, black, transparent 85%);
}

.feature-strip .container {
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 480px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-strong);
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid rgba(226, 86, 143, 0.3);
  clip-path: var(--hex-clip);
  filter: drop-shadow(0 2px 4px rgba(32, 22, 26, 0.07));
}

.feature-icon svg {
  position: relative;
}

.feature-item h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Products
   ========================================================================== */
.products-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-chip {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--dur-fast) var(--ease);
}

.filter-chip:hover {
  border-color: var(--pink);
  color: var(--text);
}

.filter-chip.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

.product-track-wrap {
  position: relative;
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease),
    box-shadow var(--dur-med) var(--ease);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 30px 50px -26px rgba(32, 22, 26, 0.22), 0 10px 22px -14px rgba(226, 86, 143, 0.25);
}

.product-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--silver-light), #ffffff 55%, var(--pink-soft) 190%);
  overflow: hidden;
}

.product-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 70% at 100% 0%, rgba(226, 86, 143, 0.14), transparent 55%);
}

.product-photo .placeholder-photo {
  padding: 1.25rem;
}
.product-photo .placeholder-photo svg {
  width: 30px;
  height: 30px;
}
.product-photo .placeholder-photo span {
  font-size: 0.68rem;
  max-width: 16ch;
}

/* Abelha que "pousa" no card ao passar o mouse */
.product-bee {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  opacity: 0;
  color: var(--pink-strong);
  transform: translate(16px, -16px) scale(0.5) rotate(25deg);
  transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
  pointer-events: none;
}

.product-card:hover .product-bee,
.product-card:focus-within .product-bee {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
}

.product-bee svg {
  display: block;
  animation: bee-flap 0.4s ease-in-out infinite;
}

.product-status {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  z-index: 2;
}

.product-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.product-status.is-available .dot {
  background: #2fae63;
  box-shadow: 0 0 8px 1px rgba(47, 174, 99, 0.45);
}
.product-status.is-available {
  color: #1f7a45;
}

.product-gradient {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.97) 88%);
  z-index: 1;
}

.product-body {
  position: relative;
  z-index: 2;
  margin-top: -3.25rem;
  padding: 0 1.25rem 1.25rem;
}

.product-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.product-price {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--pink-strong);
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.85rem;
  min-height: 2.6em;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.product-tags li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  transition: all var(--dur-fast) var(--ease);
}

.product-card:hover .product-cta {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--ink);
}

.product-cta svg {
  transition: transform var(--dur-fast) var(--ease);
}
.product-card:hover .product-cta svg {
  transform: translateX(3px);
}

.products-empty {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
}
.products-empty.is-visible {
  display: block;
}

.products-footer {
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 699px) {
  .product-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
    margin: 0 calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-grid::-webkit-scrollbar {
    display: none;
  }
  .product-grid .product-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.carousel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all var(--dur-fast) var(--ease);
}
.carousel-dots button.is-active {
  background: var(--pink);
  width: 22px;
  border-radius: 4px;
}

@media (min-width: 700px) {
  .carousel-dots {
    display: none;
  }
}

/* ==========================================================================
   Editorial / connection section
   ========================================================================== */
.editorial {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}

.editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-silver);
  background-size: var(--honeycomb-tile);
  opacity: 0.3;
  mask-image: radial-gradient(65% 60% at 82% 85%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(65% 60% at 82% 85%, black, transparent 75%);
}

.editorial .container {
  position: relative;
}

.editorial-hex {
  position: absolute;
  bottom: -10%;
  right: 4%;
  width: 160px;
  height: 160px;
  color: var(--silver-dark);
  opacity: 0.25;
  transform: rotate(14deg);
  z-index: -1;
  pointer-events: none;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.editorial-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: linear-gradient(155deg, #ffffff, var(--silver-light) 55%, var(--pink-soft) 180%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.editorial-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 0% 0%, rgba(226, 86, 143, 0.16), transparent 55%);
}

.editorial-text h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.editorial-text p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  max-width: 52ch;
}

.editorial-text .btn {
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .editorial-grid.reverse .editorial-visual {
    order: 2;
  }
}

/* ==========================================================================
   Process steps — trajeto de voo conectando os passos
   ========================================================================== */
.steps-flight-wrap {
  display: none;
}

@media (min-width: 860px) {
  .steps-flight-wrap {
    display: block;
    width: 100%;
    max-width: 760px;
    margin: 0 auto -0.5rem;
  }
}

.steps-flight-path {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.steps-flight-line {
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 10;
  stroke-dashoffset: 0;
  opacity: 0.8;
}

.section-pink .steps-flight-line {
  stroke: rgba(255, 255, 255, 0.65);
}

.steps-flight-bee {
  color: #ffffff;
  opacity: 0;
}

.steps-flight-wrap.is-active .steps-flight-bee {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--script);
  font-size: 2.8rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pink-strong);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.step-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-strong);
  margin-bottom: 1.1rem;
}

.step-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  border: 1px solid rgba(226, 86, 143, 0.25);
  clip-path: var(--hex-clip);
}

.step-icon svg {
  position: relative;
}

.step-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.step-connector {
  display: none;
}

@media (min-width: 860px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ==========================================================================
   Trust / testimonials
   ========================================================================== */
.trust-section {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-pink);
  background-size: var(--honeycomb-tile);
  opacity: 0.22;
  mask-image: radial-gradient(70% 60% at 20% 90%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(70% 60% at 20% 90%, black, transparent 70%);
}

.trust-section .container {
  position: relative;
}

.products-section {
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-pink);
  background-size: var(--honeycomb-tile);
  opacity: 0.22;
  mask-image: radial-gradient(60% 55% at 90% 10%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 55% at 90% 10%, black, transparent 75%);
}

.products-section .container {
  position: relative;
}

.products-hex {
  position: absolute;
  top: 2%;
  right: -3%;
  width: 210px;
  height: 210px;
  color: var(--silver-dark);
  opacity: 0.22;
  transform: rotate(12deg);
  z-index: -1;
  pointer-events: none;
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-silver);
  background-size: var(--honeycomb-tile);
  opacity: 0.28;
  mask-image: radial-gradient(60% 60% at 8% 92%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 60% at 8% 92%, black, transparent 75%);
}

.faq-section .container {
  position: relative;
}

.faq-hex {
  position: absolute;
  bottom: -8%;
  left: -4%;
  width: 190px;
  height: 190px;
  color: var(--pink);
  opacity: 0.18;
  transform: rotate(-10deg);
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   Seção com fundo rosa (variante usada em "Como funciona")
   ========================================================================== */
.section-pink {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ea6ea0 0%, #d94f8c 45%, #a83a70 100%);
}

.section-pink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-white);
  background-size: var(--honeycomb-tile);
  opacity: 0.28;
  mask-image: radial-gradient(75% 80% at 50% 30%, black, transparent 85%);
  -webkit-mask-image: radial-gradient(75% 80% at 50% 30%, black, transparent 85%);
}

.section-pink .container {
  position: relative;
}

.section-pink .eyebrow {
  color: #ffffff;
}
.section-pink .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
}

.section-pink .section-title {
  color: #ffffff;
}

.section-pink .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

.section-pink .step-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 44px -22px rgba(30, 10, 20, 0.4);
}

.trust-honeycomb {
  position: absolute;
  bottom: -6%;
  left: -3%;
  width: 200px;
  height: auto;
  color: var(--silver-dark);
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.trust-card.is-placeholder {
  border-style: dashed;
  border-color: var(--border-strong);
}

.trust-quote-mark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--pink-strong);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-card blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.55;
}

.trust-card cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.trust-pillar {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-pillar .pillar-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-inline: auto;
  margin-bottom: 0.9rem;
  box-sizing: border-box;
  padding: 10px;
  color: var(--pink-strong);
}

.trust-pillar .pillar-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid rgba(226, 86, 143, 0.25);
  clip-path: var(--hex-clip);
  filter: drop-shadow(0 2px 4px rgba(32, 22, 26, 0.06));
}

.trust-pillar .pillar-icon svg {
  position: relative;
  flex-shrink: 0;
}

.trust-pillar h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.trust-pillar p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 700px) {
  .trust-pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0.25rem;
  text-align: left;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.faq-question .icon svg {
  transition: transform var(--dur-fast) var(--ease);
}

.faq-item.is-open .faq-question .icon {
  background: var(--pink);
  border-color: var(--pink);
}
.faq-item.is-open .faq-question .icon svg {
  transform: rotate(45deg);
  color: var(--ink);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height var(--dur-med) var(--ease);
}

.faq-answer-inner {
  padding: 0 0.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.96rem;
  max-width: 62ch;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, #ea6ea0 0%, #d94f8c 45%, #a83a70 100%);
}

.final-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--honeycomb-white);
  background-size: var(--honeycomb-tile);
  opacity: 0.35;
  mask-image: radial-gradient(70% 75% at 50% 40%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 75% at 50% 40%, black, transparent 80%);
}

.final-cta-hex {
  display: none;
}

.final-cta img {
  height: 40px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.final-cta h2 {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  line-height: 1.25;
  max-width: 16ch;
  margin-inline: auto;
  color: #ffffff;
}

.final-cta-bee {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  margin-left: 0.15em;
  color: #ffffff;
  opacity: 0.9;
  transform: rotate(-12deg) translateY(-0.15em);
  vertical-align: middle;
}

.final-cta p {
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  font-size: 1.05rem;
}

.final-cta .btn,
.final-cta .btn-wrap {
  margin-top: 2.25rem;
}

.final-cta .btn-primary {
  background: #ffffff;
  color: var(--pink-strong);
  box-shadow: 0 14px 30px -10px rgba(30, 10, 20, 0.35);
}
.final-cta .btn-primary:hover,
.final-cta .btn-primary:focus-visible {
  box-shadow: 0 18px 36px -10px rgba(30, 10, 20, 0.4);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding-block: 3.5rem 2rem;
  background: var(--bg-alt);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--honeycomb-silver);
  background-size: var(--honeycomb-tile);
  background-position: center top;
  opacity: 0.4;
  mask-image: linear-gradient(180deg, black, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, black, transparent 70%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 34ch;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--dur-fast) var(--ease);
}
.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease);
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--pink-soft);
}

.info-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.info-notice svg {
  flex-shrink: 0;
  color: var(--pink-strong);
  margin-top: 0.15rem;
}

.footer-bee {
  display: inline-flex;
  color: var(--pink-strong);
  opacity: 0.8;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.info-notice strong {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
}
.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: var(--pink-soft);
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* ==========================================================================
   Toast / microcopy feedback
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 12px);
  background: var(--text);
  border: 1px solid var(--border-strong);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  box-shadow: var(--shadow-md);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ==========================================================================
   Scroll progress
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  z-index: 101;
  transition: width 90ms linear;
}

/* ==========================================================================
   Abelha companheira — acompanha o progresso de leitura da página
   ========================================================================== */
.scroll-bee {
  position: fixed;
  top: 8px;
  left: 0;
  width: 22px;
  height: 22px;
  z-index: 101;
  color: var(--pink-strong);
  pointer-events: none;
  opacity: 0;
  transform: translateX(0) rotate(0deg);
  transition: opacity 0.3s ease;
  will-change: transform;
}

.scroll-bee.is-visible {
  opacity: 0.9;
}

.scroll-bee svg {
  display: block;
  filter: drop-shadow(0 2px 3px rgba(32, 22, 26, 0.25));
  animation: bee-flap 0.35s ease-in-out infinite;
}

@media (max-width: 599px) {
  .scroll-bee {
    display: none;
  }
}

/* ==========================================================================
   Explosão de "pólen" ao clicar em Comprar
   ========================================================================== */
.pollen-burst {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-strong);
  pointer-events: none;
  z-index: 400;
  animation: pollen-pop 0.7s ease-out forwards;
}

@keyframes pollen-pop {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--pollen-x), var(--pollen-y)) scale(0.3);
    opacity: 0;
  }
}

/* ==========================================================================
   Páginas legais (Termos, Privacidade, Trocas e devoluções)
   ========================================================================== */
.legal-header {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-page {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.legal-page .container {
  max-width: 780px;
}

.legal-page h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal-notice {
  display: flex;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--pink-soft);
  border: 1px solid rgba(226, 86, 143, 0.3);
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-placeholder {
  color: var(--pink-strong);
  font-weight: 600;
}

/* ==========================================================================
   Mobile — conteúdo centralizado (títulos, subtítulos, textos e blocos)
   ========================================================================== */
@media (max-width: 899px) {
  .hero-content {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    text-align: left;
  }
  .hero-subtitle {
    margin-inline: auto;
  }

  .section-head {
    text-align: center;
    margin-inline: auto;
  }
  .section-desc {
    margin-inline: auto;
  }
  .eyebrow {
    justify-content: center;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-card {
    text-align: center;
  }
  .step-number,
  .step-icon {
    margin-inline: auto;
  }

  .editorial-text {
    text-align: center;
  }
  .editorial-text p {
    margin-inline: auto;
  }

  .trust-card {
    text-align: center;
  }
  .trust-quote-mark {
    display: block;
    margin-inline: auto;
  }

  .product-name,
  .product-price,
  .product-desc {
    text-align: center;
  }
  .product-tags {
    justify-content: center;
  }

  .info-notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-col {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
