/* ═══════════════════════════════════════════════════
   components.css — Cards, botões, formulário, UI
   Instituto Mariana Menegardo
   ═══════════════════════════════════════════════════ */

/* ─── Botão base ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background-color 0.45s var(--ease-brand),
    transform 0.45s var(--ease-brand),
    box-shadow 0.45s var(--ease-brand);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.97);
}

/* ─── Primário (coral) ─── */
.btn-primary {
  background: var(--color-cta);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  box-shadow: var(--shadow-brand);
}

/* ─── Secundário (outline) ─── */
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ─── Ghost (sem borda) ─── */
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: var(--space-2) var(--space-3);
}

.btn-ghost:hover {
  color: var(--color-primary);
}

/* ─── WhatsApp ─── */
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}

/* ─── Botão pequeno ─── */
.btn--sm {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-5);
  min-height: 44px;
}

/* ─── Botão grande ─── */
.btn--lg {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  padding: var(--space-5) var(--space-7);
  border-radius: var(--radius-lg);
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  padding: var(--space-4) 0;
  background: transparent;
  transition:
    background-color var(--duration-fast) var(--ease-brand),
    box-shadow var(--duration-fast) var(--ease-brand),
    padding var(--duration-fast) var(--ease-brand);
}

.navbar.scrolled {
  background: rgba(253, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3) 0;
}

.navbar.scrolled .divider-brand {
  opacity: 0;
}

.navbar .divider-brand {
  transition: opacity var(--duration-fast) var(--ease-brand);
}

.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.navbar__cta {
  white-space: nowrap;
}

.navbar > .container {
  padding-bottom: var(--space-3);
}

@media (max-width: 480px) {
  .navbar__logo img {
    height: 36px;
  }
}

/* ─── Linha decorativa coral ─── */
.divider-brand {
  height: 2px;
  background: var(--color-primary);
  width: 60px;
  border: none;
}

.divider-brand--center {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Badge ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: var(--color-surface);
}

/* ─── Card base ─── */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-base) var(--ease-brand),
    box-shadow var(--duration-base) var(--ease-brand);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── Tipografia base ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: var(--text-hero); font-weight: 300; }
h2 { font-size: var(--text-h2); font-weight: 400; }
h3 { font-size: var(--text-h3); font-weight: 400; }
h4 { font-size: var(--text-h4); font-weight: 500; }

p, li {
  font-family: var(--font-body);
  line-height: 1.7;
}

.text-muted {
  color: var(--color-text-muted);
}

/* ─── Formulário ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.form-input,
.form-select {
  width: 100%;
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-body);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: border-color var(--duration-fast) var(--ease-brand);
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--accent-selection);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C6E6A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-8);
}

/* ─── Loading spinner (botão) ─── */
.btn--loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-white);
  border-top-color: transparent;
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════
   Testimonial
   ═══════════════════════════════════════════════════ */
.testimonial__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.testimonial__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   Procedures Grid
   ═══════════════════════════════════════════════════ */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.procedure {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
}

.procedure--featured {
  background: linear-gradient(135deg, var(--color-bg-subtle) 0%, var(--color-white) 100%);
  border: 1.5px solid var(--color-border);
}

.procedure__badge {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: var(--space-6);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.procedure__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.procedure__name {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.procedure__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.procedure__wa {
  margin-top: var(--space-2);
  align-self: flex-start;
}

@media (max-width: 768px) {
  .procedures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .procedures-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   Como Funciona — Steps
   ═══════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  position: relative;
  transition: transform var(--duration-base) var(--ease-brand),
              box-shadow var(--duration-base) var(--ease-brand),
              border-color var(--duration-base) var(--ease-brand);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
  border-color: var(--color-border);
}

.step__number {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  opacity: 0.5;
  line-height: 1;
  letter-spacing: 0.08em;
}

.step__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ═══════════════════════════════════════════════════
   TrustBar
   ═══════════════════════════════════════════════════ */
.trustbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-6) 0;
}

.trustbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
}

.trustbar__number {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.trustbar__number::after {
  content: '+';
}

.trustbar__number[data-decimal="true"]::after {
  content: '';
}

.trustbar__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.trustbar__label svg {
  color: var(--color-primary);
}

.trustbar__sep {
  color: var(--color-border);
  font-size: var(--text-h3);
  font-weight: 200;
  line-height: 1;
}

@media (max-width: 540px) {
  .trustbar {
    flex-direction: column;
    gap: var(--space-5);
  }

  .trustbar__sep {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--color-bg);
  padding: var(--space-9) 0 var(--space-6);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand img {
  width: 650px;
  height: auto;
  display: block;
  max-width: 100%;
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-brand);
}

.footer__social-link:hover {
  color: var(--color-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer__credit {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer__credit a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease-brand);
}

.footer__credit a:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 540px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
  }

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

/* ═══════════════════════════════════════════════════
   CTA Final
   ═══════════════════════════════════════════════════ */
.final-cta {
  background: var(--color-text);
  position: relative;
  overflow: hidden;
}

.final-cta__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  pointer-events: none;
  z-index: 0;
}

.final-cta__content {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.final-cta__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
}

.final-cta__buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-3);
}

.final-cta__wa:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

@media (max-width: 480px) {
  .final-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

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

/* ═══════════════════════════════════════════════════
   FAQ Accordion
   ═══════════════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

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

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration-fast) var(--ease-brand);
}

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

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--duration-fast) var(--ease-brand);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.faq-item__body p {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   Waitlist
   ═══════════════════════════════════════════════════ */
.waitlist-wrapper {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.waitlist-incentive {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.waitlist-incentive__icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.waitlist-incentive p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}

.waitlist-spots {
  text-align: center;
  font-size: var(--text-body);
  color: var(--color-text);
}

.waitlist-spots strong {
  color: var(--color-primary);
  font-size: var(--text-h4);
  font-family: var(--font-display);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.waitlist-form__submit {
  width: 100%;
}

.waitlist-form__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
}

.waitlist-form__note svg {
  color: var(--color-whatsapp);
  flex-shrink: 0;
}

/* Sucesso */
.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  padding: var(--space-8) var(--space-5);
}

.waitlist-success svg:first-child {
  color: var(--color-whatsapp);
}

.waitlist-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: var(--color-text);
}

.waitlist-success p {
  max-width: 380px;
}

/* ═══════════════════════════════════════════════════
   Before / After Sliders
   ═══════════════════════════════════════════════════ */
.ba-sliders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.ba-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.ba-slider__container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  --clip-position: 50%;
  background: linear-gradient(135deg, var(--color-bg-subtle) 0%, var(--color-base-rose) 100%);
}

.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ba-slider__after {
  clip-path: inset(0 calc(100% - var(--clip-position)) 0 0);
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--clip-position);
  transform: translateX(-50%);
  width: 3px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: var(--z-above);
}

.ba-slider__handle svg {
  background: var(--color-white);
  color: var(--color-text);
  border-radius: var(--radius-full);
  padding: 6px;
  width: 32px;
  height: 32px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.ba-slider__labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ba-slider__labels span {
  transition: opacity var(--duration-fast) var(--ease-brand);
}

@media (max-width: 1024px) {
  .ba-sliders {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ba-sliders {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: var(--space-5);
    max-width: none;
    padding-bottom: var(--space-3);
  }

  .ba-slider {
    min-width: 280px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}

/* ═══════════════════════════════════════════════════
   Procedures
   ═══════════════════════════════════════════════════ */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.procedure {
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-brand),
              box-shadow var(--duration-base) var(--ease-brand);
  gap: var(--space-3);
  position: relative;
}

.procedure:hover {
  box-shadow: var(--shadow-brand);
}

.procedure--featured {
  border: 1.5px solid var(--color-primary);
}

.procedure__badge {
  position: absolute;
  top: calc(-1 * var(--space-3));
  left: var(--space-5);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.procedure__icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.procedure__name {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 500;
  color: var(--color-text);
}

.procedure__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.procedure__wa {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .procedures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .procedures-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   Testimonials
   ═══════════════════════════════════════════════════ */
.testimonials {
  margin-top: var(--space-8);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.testimonial__ig {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-brand);
}

.testimonial__ig:hover {
  color: var(--color-primary);
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-base-rose);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.3;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--color-primary);
}

.testimonial__text {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--space-12) + var(--space-7));
  padding-bottom: var(--space-11);
  background: var(--color-bg);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero__badge {
  align-self: flex-start;
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__highlight {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero__divider {
  margin: var(--space-1) 0;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--color-bg-subtle) 0%, var(--color-base-rose) 100%);
  will-change: transform;
  cursor: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ─── Hero ≤ 1024px ─── */
@media (max-width: 1024px) {
  .hero__grid {
    gap: var(--space-7);
  }
}

/* ─── Hero ≤ 768px — stack ─── */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--space-11) + var(--space-5));
    padding-bottom: var(--space-9);
    position: relative;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .hero__image {
    position: absolute;
    inset: 0;
    border-radius: 0;
    z-index: 0;
    aspect-ratio: auto;
  }

  .hero__image img {
    border-radius: 0;
    height: 100%;
  }

  .hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(253, 250, 248, 0.92) 0%,
      rgba(253, 250, 248, 0.85) 50%,
      rgba(253, 250, 248, 0.95) 100%
    );
  }

  .hero__content {
    position: relative;
    z-index: 1;
  }

  .hero__title {
    letter-spacing: -0.02em;
  }
}

/* ─── Hero ≤ 480px ─── */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

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

/* ─── WhatsApp Sticky ─── */
.whatsapp-sticky {
  display: none;
}

@media (max-width: 768px) {
  .whatsapp-sticky {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    position: fixed;
    bottom: var(--space-5);
    right: var(--space-5);
    z-index: var(--z-sticky);
    background: var(--color-whatsapp);
    color: var(--color-white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition:
      transform var(--duration-fast) var(--ease-brand),
      opacity var(--duration-fast) var(--ease-brand);
  }

  .whatsapp-sticky:active {
    transform: scale(0.95);
  }

  .whatsapp-sticky.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }

  .whatsapp-sticky svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}
