/* ==========================================================================
   Flow Studio — Landing Page
   ========================================================================== */

:root {
  --bg-obsidian: #0E1014;
  --bg-graphite: #181C22;
  --primary: #8E7CF7;
  --primary-rgb: 142, 124, 247;
  --heading: #F5F2EC;
  --body-text: #B0B3B8;
  --border: rgba(255, 255, 255, 0.08);

  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-card: 22px;
  --radius-pill: 999px;

  --container-w: 1140px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-obsidian);
  color: var(--body-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #0E1014;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  z-index: 1000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 88px 0;
}
.section-sm {
  position: relative;
  padding: 48px 0;
}

.text-lavender {
  color: var(--primary);
}

.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ---------- Decorative background layers ---------- */
.bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-glow--hero {
  background: radial-gradient(ellipse 65% 45% at 20% 88%, rgba(var(--primary-rgb), 0.18), transparent 70%);
}
.bg-glow--plans {
  background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(var(--primary-rgb), 0.08), transparent 65%);
}
.bg-glow--final {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(var(--primary-rgb), 0.09), transparent 70%);
}

.ring {
  position: absolute;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ring--hero {
  display: none;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -140px;
}
.ring--final {
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -100px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #14121F;
  box-shadow: 0 0 0 rgba(var(--primary-rgb), 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(var(--primary-rgb), 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-xl {
  padding: 20px 44px;
  font-size: 17px;
  box-shadow: 0 0 60px -12px rgba(var(--primary-rgb), 0.5);
}

.btn-block {
  width: 100%;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ---------- Placeholders ---------- */
.placeholder {
  background: var(--bg-graphite);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: rgba(176, 179, 184, 0.6);
  font-size: 13px;
  position: relative;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 16, 20, 0.4);
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(14, 16, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-header .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(14, 16, 20, 0.96) 0%, rgba(14, 16, 20, 0.62) 42%, rgba(14, 16, 20, 0.08) 78%),
    linear-gradient(90deg, rgba(14, 16, 20, 0.92) 0%, rgba(14, 16, 20, 0.48) 38%, rgba(14, 16, 20, 0) 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: 76% 20%;
  padding-top: 40px;
  padding-bottom: 56px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 34px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  max-width: 480px;
}

.hero-price-line {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 8px;
  margin-bottom: 24px;
}

.hero-media {
  display: none;
  position: relative;
}

.hero-img-wrap {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
}

.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-obsidian) 0%, transparent 45%);
  pointer-events: none;
}

.mockup-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 24px 24px 72px;
}

.mockup-glow {
  position: absolute;
  width: 60%;
  max-width: 480px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.mockup-fan {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mockup-img {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65);
  display: block;
}

.mockup-img--center {
  width: 200px;
  z-index: 2;
  position: relative;
}

.mockup-img--side {
  width: 140px;
  margin-bottom: 28px;
  opacity: 0.85;
}

.mockup-img--left {
  transform: rotate(-7deg);
  margin-right: -22px;
}

.mockup-img--right {
  transform: rotate(7deg);
  margin-left: -22px;
  z-index: 1;
}

/* ---------- Promise ---------- */
.promise {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0E1014 0%, #14161f 100%);
  padding: 32px 0;
}
.promise-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: left;
}
.promise h2 {
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.promise-text {
  font-size: 16px;
}
.promise-text strong {
  font-weight: 600;
  color: var(--heading);
}

.bg-glow--promise {
  background: radial-gradient(ellipse 55% 60% at 82% 40%, rgba(var(--primary-rgb), 0.07), transparent 65%);
  filter: blur(10px);
}

.ring--promise {
  width: 420px;
  height: 420px;
  bottom: -200px;
  right: -140px;
  border: none;
  background: conic-gradient(from 200deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0) 55%);
  -webkit-mask-image: radial-gradient(circle, transparent calc(50% - 1.5px), #000 calc(50% - 1.5px) 50%, transparent 50%);
  mask-image: radial-gradient(circle, transparent calc(50% - 1.5px), #000 calc(50% - 1.5px) 50%, transparent 50%);
}

/* ---------- Features ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child {
  border-bottom: none;
}

.feature-media {
  position: relative;
  background: var(--bg-graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.feature-img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.6);
}

.feature-media--duo {
  position: relative;
  min-height: 320px;
  padding: 32px 24px;
}
.feature-media--duo .feature-img {
  position: absolute;
  max-height: 300px;
}
.feature-media--duo .feature-img--back {
  left: 10%;
  top: 8%;
  z-index: 1;
}
.feature-media--duo .feature-img--front {
  right: 8%;
  bottom: 8%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Glass duo variant — Planner, Progresso and Receitas blocks only ----------
   Purely additive: the shared .feature-media--duo / .feature-img--back / --front
   rules above are untouched, so the AI block (which also uses --duo) is unaffected.
   These selectors only ever match elements that also carry .feature-media--glass. */
.feature-media--glass {
  /* The glass-panel span is the only background/border behind the
     phones now — the shared card look (bg + border) from
     .feature-media is cleared here so there's no double box. */
  background: none;
  border: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: normal flow + negative margin, so the overlap amount is a
   fixed px value instead of a %-of-container offset (which shrinks
   away on narrow viewports). Desktop restores the absolute-position
   diagonal stagger below. */
.feature-media--glass .feature-img--back {
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
}
.feature-media--glass .feature-img--front {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  margin-left: -26px;
  margin-top: 36px;
}
.feature-media--glass .feature-img--back,
.feature-media--glass .feature-img--front {
  box-shadow: 0 28px 48px -16px rgba(0, 0, 0, 0.65);
}

.glass-panel {
  position: absolute;
  inset: 8% 4%;
  z-index: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  pointer-events: none;
}
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
}

.glass-blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}
.glass-blob--lavender {
  background: radial-gradient(circle, #8e7cf7 0%, transparent 70%);
}
.glass-blob--plum {
  background: radial-gradient(circle, #5b3d76 0%, transparent 70%);
}

.feature-media--glass-planner .glass-blob--lavender {
  width: 220px;
  height: 220px;
  top: 0;
  left: 0;
}
.feature-media--glass-planner .glass-blob--plum {
  width: 180px;
  height: 180px;
  bottom: 0;
  right: 8%;
}

.feature-media--glass-progresso .glass-blob--lavender {
  width: 230px;
  height: 230px;
  bottom: 0;
  right: 0;
}
.feature-media--glass-progresso .glass-blob--plum {
  width: 170px;
  height: 170px;
  top: 0;
  left: 14%;
}

.feature-media--glass-receitas .glass-blob--lavender {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 0;
}
.feature-media--glass-receitas .glass-blob--plum {
  width: 220px;
  height: 220px;
  bottom: 0;
  left: 0;
}

/* ---------- Feature hero variant (fixed phone frame + sliding screen carousel) ---------- */
.feature-media--hero {
  background: none;
  border: none;
  padding: 56px 20px 8px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.feature-hero-ring {
  position: absolute;
  top: 50%;
  left: 46%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 50%;
}

.feature-hero-glow {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), transparent 65%);
  filter: blur(60px);
}

/* Phone frame: stays fixed in place. Only the track inside the
   screen moves — the device itself never translates. */
.phone-carousel-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 250px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(165deg, #34373f, #101217 55%);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 30px 60px -16px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-frame-island {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 60px;
  height: 12px;
  transform: translateX(-50%);
  background: #05060a;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: var(--bg-obsidian);
}

/* Plain print variant — Programas estruturados carousel only.
   No device chrome: just the screenshot with soft rounded corners. */
.phone-screen--plain {
  width: 250px;
  aspect-ratio: 9 / 19.5;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.6);
}

.phone-track {
  display: flex;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  cursor: grab;
  will-change: transform;
}
.phone-track.is-dragging {
  cursor: grabbing;
}

.phone-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  border-radius: 0;
  box-shadow: none;
}

/* Discreet side arrows — same size and style at every breakpoint,
   sitting just outside the plain print (no device bezel to buffer
   them anymore, so the offset clears the screenshot entirely). */
.carousel-arrow {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--primary);
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.carousel-arrow:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.carousel-arrow--prev {
  left: -48px;
}
.carousel-arrow--next {
  right: -48px;
}

.carousel-dots {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}
.carousel-dot.is-active {
  width: 20px;
  background: var(--primary);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.feature-hero-shadow {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -16px;
  width: 68%;
  height: 26px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 2;
}
/* Mobile has little room beside the phone before hitting the
   viewport edge, so cards sit closer in than on desktop — see the
   768px override below for the fuller "mostly outside" treatment. */
.floating-card--chip {
  top: 16px;
  left: calc(100% - 86px);
  transition-delay: 0.2s;
}
.floating-card--exercise {
  bottom: 16px;
  right: calc(100% - 90px);
  width: 150px;
  transition-delay: 0.35s;
}

.floating-card-extra {
  display: none;
}

.floating-card-inner {
  background: var(--bg-graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  animation: float-card 6s ease-in-out infinite alternate;
}
.floating-card--chip .floating-card-inner {
  animation-delay: 0s;
}
.floating-card--exercise .floating-card-inner {
  animation-delay: 1.2s;
}

.floating-card-inner--chip {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  white-space: nowrap;
}
.floating-card-inner--chip span {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
}
.floating-card-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.8);
}

.floating-card-inner strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}
.floating-card-inner span {
  font-size: 12.5px;
  color: var(--primary);
}

@keyframes float-card {
  0% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(6px);
  }
}

.feature-copy h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.feature-copy p {
  font-size: 15.5px;
}

.badge-ia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.badge-ia--inline {
  margin-bottom: 14px;
}

/* ---------- AI block — single static phone-frame mockup ----------
   Reuses the exact phone-frame/ring/glow/shadow markup and CSS from
   the "Programas estruturados" carousel (untouched, shared classes),
   just with a plain image instead of a sliding track. */
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Subtle radial glow + corner dot-grid behind the AI block only.
   .feature-row--ai is exclusive to this block, so extending it here
   doesn't touch any other section. */
.feature-row--ai {
  position: relative;
}
.feature-row--ai::before {
  content: '';
  position: absolute;
  inset: -24px -12px;
  background: radial-gradient(ellipse 55% 50% at 28% 38%, rgba(var(--primary-rgb), 0.11), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.feature-row--ai::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at top right, black, transparent 72%);
  mask-image: radial-gradient(circle at top right, black, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.feature-row--ai > .feature-media,
.feature-row--ai > .feature-copy {
  position: relative;
  z-index: 1;
}

/* ---------- AI flow sequence — normal flow, no absolute positioning ---------- */
.ia-flow {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ia-flow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #181c22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #b0b3b8;
  font-size: 13.5px;
  font-weight: 500;
}

.ia-flow-connector {
  width: 1px;
  height: 22px;
  margin-left: 26px;
  background: rgba(255, 255, 255, 0.14);
}
.ia-flow-connector--gradient {
  height: 26px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.14), rgba(var(--primary-rgb), 0.8));
}

.ia-flow-result {
  padding: 14px 20px;
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  border-radius: 16px;
  animation: ia-result-pulse 3s ease-in-out infinite;
}
.ia-flow-result-title {
  color: var(--heading);
  font-weight: 600;
  font-size: 14.5px;
}
.ia-flow-result-sub {
  color: var(--primary);
  font-size: 12.5px;
  margin-top: 4px;
}

.ia-flow-chip-text-short {
  display: none;
}

.ia-mobile-shot {
  display: none;
}

/* ---------- AI block — mobile-only layout (<=640px) ----------
   Desktop/tablet (>640px) keep the stacked phone-frame treatment
   untouched above. Below this width, the row becomes a small grid:
   badge/title/paragraph span full width, then chips (left) and the
   full, uncropped screenshot (right) share a row. .feature-copy is
   unwrapped with display:contents so its children (badge/h3/p/
   ia-flow) can each land in their own grid area — .feature-media
   stays a normal box, placed whole into the "shot" area, so its
   grid cell naturally grows to fit the full-height screenshot
   (no absolute positioning, so nothing needs clipping). */
@media (max-width: 640px) {
  .feature-row--ai {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas:
      "badge badge"
      "title title"
      "para  para"
      "chips shot";
    column-gap: 0;
  }

  .feature-row--ai > .feature-copy {
    display: contents;
  }
  .feature-row--ai .badge-ia--inline {
    grid-area: badge;
    justify-self: start;
  }
  .feature-row--ai .feature-copy h3 {
    grid-area: title;
  }
  .feature-row--ai .feature-copy > p {
    grid-area: para;
  }
  .ia-flow {
    grid-area: chips;
    align-self: start;
    margin-top: 28px;
    margin-right: -24px;
    position: relative;
    z-index: 2;
  }

  .feature-row--ai > .feature-media {
    grid-area: shot;
    align-self: center;
    justify-self: end;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .feature-row--ai .phone-carousel-wrap {
    display: none;
  }

  .ia-mobile-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.55);
  }

  .ia-flow-chip {
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.65);
  }
  /* .ia-flow-result already animates box-shadow (the pulse glow), which
     would silently replace a plain static box-shadow declared here — so
     the depth shadow is folded into a mobile-only animation variant
     that keeps both layers (see ia-result-pulse-mobile below). */
  .ia-flow-result {
    animation-name: ia-result-pulse-mobile;
  }

  .ia-flow-chip-text-full {
    display: none;
  }
  .ia-flow-chip-text-short {
    display: inline;
  }
}

@keyframes ia-result-pulse-mobile {
  0%, 100% {
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.65), 0 0 0 rgba(var(--primary-rgb), 0);
  }
  50% {
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.65), 0 0 22px -4px rgba(var(--primary-rgb), 0.35);
  }
}

@keyframes ia-result-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(var(--primary-rgb), 0);
  }
  50% {
    box-shadow: 0 0 22px -4px rgba(var(--primary-rgb), 0.35);
  }
}

/* ---------- "Montar treino manual" block ----------
   Reuses the static phone-frame + ring/glow markup from "Programas
   estruturados" (shared classes, untouched), just with a more
   discreet glow scoped to this row only. */
.feature-row--manual {
  position: relative;
}
.feature-row--manual .feature-hero-glow {
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.09), transparent 65%);
}

.manual-cards {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.manual-card {
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  border-radius: 16px;
  padding: 12px 16px;
}
.manual-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}
.manual-card-sub {
  font-size: 13px;
  color: var(--body-text);
  margin-top: 2px;
}

.manual-mobile-shot {
  display: none;
}

/* Mobile-only (<=640px): desktop/tablet keep the standard two-column
   layout above untouched. Below this width the row becomes a small
   grid — same pattern as the AI block: title/paragraph span full
   width, then cards (left) and the full, uncropped screenshot
   (right) share a row. .feature-copy is unwrapped with
   display:contents so its children each land in their own grid
   area; .feature-media stays a normal box, placed whole into the
   "shot" area, so the cell naturally grows to fit the full-height
   screenshot — nothing needs clipping. */
@media (max-width: 640px) {
  .feature-row--manual {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas:
      "title title"
      "para  para"
      "cards shot";
    column-gap: 0;
  }

  .feature-row--manual > .feature-copy {
    display: contents;
  }
  .feature-row--manual .feature-copy h3 {
    grid-area: title;
  }
  .feature-row--manual .feature-copy > p {
    grid-area: para;
  }
  .manual-cards {
    grid-area: cards;
    align-self: start;
    margin-top: 28px;
    margin-right: -24px;
    position: relative;
    z-index: 2;
  }
  .manual-card {
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.65);
  }

  .feature-row--manual > .feature-media {
    grid-area: shot;
    align-self: center;
    justify-self: end;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .feature-row--manual .phone-carousel-wrap {
    display: none;
  }

  .manual-mobile-shot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.55);
  }
}

/* ---------- How it works ---------- */
/* Compact, transitional section — pull the top padding in so it
   doesn't read as a big empty gap after the last feature block. */
.how {
  padding-top: 48px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  /* This block reuses .reveal for its enter-viewport trigger only —
     the fade/translate itself is cancelled below so just the
     connecting line's draw-in animation is driven by is-visible. */
  opacity: 1;
  transform: none;
  transition: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #8E7CF7 0%, rgba(142, 124, 247, 0) 100%);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.8s var(--ease);
}
.timeline.is-visible::before {
  transform: scaleY(1);
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.timeline-step:nth-child(1) { transition-delay: 0ms; }
.timeline-step:nth-child(2) { transition-delay: 150ms; }
.timeline-step:nth-child(3) { transition-delay: 300ms; }
.timeline-step:nth-child(4) { transition-delay: 450ms; }

.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-graphite);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.timeline-step:first-child .timeline-number {
  box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.12), 0 0 22px rgba(var(--primary-rgb), 0.5);
}

.timeline-content {
  max-width: 320px;
  padding-top: 6px;
}

.timeline-step h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.timeline-step p {
  font-size: 14.5px;
}

/* ---------- Plans ---------- */
.plans {
  background: var(--bg-graphite);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: rgba(24, 28, 34, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  position: relative;
}

.plan-card--highlight {
  border-color: var(--primary);
  box-shadow: 0 0 60px -18px rgba(var(--primary-rgb), 0.55);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.plan-name {
  font-size: 18px;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-price-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
}
.plan-price-period {
  font-size: 15px;
  color: var(--body-text);
}

.plan-note {
  font-size: 13.5px;
  margin-bottom: 24px;
}
.plan-note--tight {
  margin-bottom: 10px;
}

.plan-offer-chip {
  display: inline-block;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 14.5px;
  padding-left: 26px;
  position: relative;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.plan-feature-highlight {
  color: #8E7CF7;
  font-weight: 600;
}

.plan-card .btn-primary {
  color: #FFFFFF;
}

/* ---------- Trust badges ---------- */
.trust-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--heading);
  text-align: center;
}

.trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #8E7CF7;
}

@media (min-width: 640px) {
  .trust-row {
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 56px;
  }
  .trust-item {
    flex: 0 1 auto;
    flex-direction: row;
    gap: 9px;
    font-size: 15px;
    padding: 0 36px;
    white-space: nowrap;
  }
  .trust-item + .trust-item {
    border-left: 1px solid var(--border);
  }
  .trust-icon {
    width: 20px;
    height: 20px;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--body-text);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
}
.testimonial-meta {
  font-size: 12.5px;
  color: var(--body-text);
}

/* ---------- FAQ ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--bg-graphite);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--heading);
  text-align: left;
}

.accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.accordion-icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}
.accordion-icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 7px;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 22px;
}
.accordion-panel p {
  font-size: 14.5px;
  padding-bottom: 20px;
}
.accordion-trigger[aria-expanded="true"] + .accordion-panel {
  padding-top: 0;
}

/* ---------- Final CTA ---------- */
.final-cta {
  overflow: hidden;
  text-align: center;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: 30px;
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-graphite);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-tagline {
  font-size: 13.5px;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact a:hover {
  color: var(--primary);
}
.footer-hours {
  color: rgba(176, 179, 184, 0.6);
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(176, 179, 184, 0.5);
  text-align: center;
}

/* ---------- Legal pages ---------- */
.legal-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0 24px;
}

.legal-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--heading);
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.legal-updated {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 48px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 21px;
  line-height: 1.3;
  margin-top: 44px;
  margin-bottom: 16px;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 16.5px;
  line-height: 1.3;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-body p {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body-text);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.legal-body ul {
  margin: 0 0 20px;
}
.legal-body li {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body-text);
  font-size: 15.5px;
  line-height: 1.8;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.legal-body li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--primary);
}
.legal-body strong {
  color: var(--heading);
  font-weight: 600;
}
.legal-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 640px) {
  .legal-title {
    font-size: 42px;
  }
  .legal-body h2 {
    font-size: 24px;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ia-flow-result {
    animation: none;
  }
  .floating-card-inner {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
  .phone-track {
    transition: none !important;
  }
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 640px) {
  .hero-title {
    font-size: 46px;
  }
  .trust-row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mockup-img--center {
    width: 240px;
  }
  .mockup-img--side {
    width: 170px;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 112px 0;
  }
  .promise {
    padding: 48px 0;
  }
  .how {
    padding-top: 56px;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .section-title {
    font-size: 38px;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 56px 0;
  }
  .feature-row--reverse .feature-media {
    order: 2;
  }
  .feature-row--reverse .feature-copy {
    order: 1;
  }

  .feature-media {
    min-height: 320px;
  }
  .feature-img {
    max-height: 480px;
  }
  .feature-media--duo {
    min-height: 420px;
  }
  .feature-media--duo .feature-img {
    max-height: 380px;
  }
  .feature-media--glass {
    display: block;
  }
  .feature-media--glass .feature-img--back {
    position: absolute;
    left: 23%;
    top: 9%;
    margin: 0;
  }
  .feature-media--glass .feature-img--front {
    position: absolute;
    right: 11%;
    bottom: 5%;
    left: auto;
    top: auto;
    margin: 0;
  }
  .feature-media--hero {
    padding: 64px 32px 8px;
  }
  .phone-frame {
    width: 300px;
  }
  .phone-screen--plain {
    width: 300px;
  }
  .floating-card--chip {
    top: 36px;
    left: calc(100% - 30px);
  }
  .floating-card--exercise {
    bottom: 10px;
    right: calc(100% - 30px);
    width: 190px;
  }
  .floating-card-extra {
    display: inline;
  }

  .timeline {
    flex-direction: row;
    max-width: 1000px;
    margin: 0 auto;
    gap: 24px;
  }
  .timeline::before {
    left: 12.5%;
    right: 12.5%;
    top: 20px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, #8E7CF7 0%, rgba(142, 124, 247, 0.35) 100%);
    transform-origin: left;
    transform: scaleX(0);
  }
  .timeline.is-visible::before {
    transform: scaleX(1);
  }
  .timeline-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .timeline-content {
    max-width: 220px;
    padding-top: 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 72px;
  }
  .hero-scrim {
    display: none;
  }
  .bg-glow--hero {
    background: radial-gradient(ellipse 70% 60% at 30% 0%, rgba(var(--primary-rgb), 0.10), transparent 65%);
  }
  .ring--hero {
    display: block;
  }
  .hero-grid {
    min-height: 0;
    background-image: none;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 0 0 64px;
  }
  .hero-media {
    display: block;
    order: 2;
  }
  .hero-img-wrap,
  .hero-img {
    min-height: 460px;
  }

  .phone-frame {
    width: 320px;
  }
  .phone-screen--plain {
    width: 320px;
  }
}

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(16px);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background-color: #1ebe5b;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background-color: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.whatsapp-float__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #111827;
}

.whatsapp-float:hover .whatsapp-float__tooltip,
.whatsapp-float:focus-visible .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }

  .whatsapp-float.is-visible {
    transition: none;
  }
}
