/* =========================================================
   LAB9 — STYLE
   Reescrito para manter a direção visual e respeitar a copy
   aprovada pelo cliente.
   ========================================================= */

:root {
  --bg: #f0ece9;
  --surface: #ffffff;
  --ink: #1e1d1c;
  --muted: #5c5852;
  --line: rgba(30, 29, 28, 0.10);

  --pink: #f20587;
  --purple: #aa38ff;
  --blue: #0085ff;
  --green: #a7ea26;
  --orange: #ff7f00;
  --yellow: #f2e529;

  --pink-soft: rgba(242, 5, 135, 0.08);
  --purple-soft: rgba(170, 56, 255, 0.08);
  --blue-soft: rgba(0, 133, 255, 0.08);
  --green-soft: rgba(167, 234, 38, 0.10);
  --orange-soft: rgba(255, 127, 0, 0.09);
  --yellow-soft: rgba(242, 229, 41, 0.12);

  --brand-gradient: linear-gradient(
    115deg,
    var(--pink) 0%,
    var(--orange) 18%,
    var(--yellow) 36%,
    var(--green) 54%,
    var(--blue) 76%,
    var(--purple) 100%
  );

  --gradient: var(--brand-gradient);

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-soft: 0 14px 40px rgba(30, 29, 28, 0.08);
  --shadow-header: 0 10px 30px rgba(0, 0, 0, 0.10);

  --header-height: 82px;
  --container: 1160px;

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

  --manifesto-bg: #ffd9ec;
  --specialties-bg: #f2ff4a;
  --cycle-bg: #ffb36a;
  --dark-shell: rgba(255, 255, 255, 0.14);
  --dark-shell-border: rgba(255, 255, 255, 0.26);
  --light-shell: rgba(255, 255, 255, 0.88);
  --light-shell-border: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.035em;
}

section,
footer {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

::selection {
  background: var(--pink);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.gradient-text {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 16px 20px 0;
  pointer-events: none;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1380px, 100%);
  margin-inline: auto;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  min-width: 0;
}

.brand-logo {
  position: relative;
  display: block;
  width: 116px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-logo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.brand-logo-light {
  opacity: 1;
}

.brand-logo-dark {
  opacity: 0;
}

body:not(.header-on-dark) .brand-logo-light {
  opacity: 0;
}

body:not(.header-on-dark) .brand-logo-dark {
  opacity: 1;
}

.brand-tagline {
  display: none;
  max-width: 210px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease;
}

body:not(.header-on-dark) .brand-tagline {
  color: var(--muted);
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

body:not(.header-on-dark) .header-actions {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(30, 29, 28, 0.10);
}

.header-whatsapp,
.menu-button {
  height: 40px;
  border: 0;
  border-radius: var(--radius-pill);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 13px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  background: #000;
}

.header-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-whatsapp-label {
  display: none;
}

.menu-button {
  display: inline-flex;
  width: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body:not(.header-on-dark) .menu-button {
  background: rgba(30, 29, 28, 0.06);
}

.menu-button span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

body:not(.header-on-dark) .menu-button span {
  background: var(--ink);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(12, 12, 12, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-overlay.is-visible {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 82px;
  right: 14px;
  left: 14px;
  z-index: 995;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.985);
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease);
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: var(--bg);
}

.mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mobile-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;
  min-height: 94svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080808;
  color: #fff;
  padding: 130px 20px 80px;
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 34%, rgba(170, 56, 255, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(22, 21, 20, 0.82) 100%);
}

.hero-content {
  width: min(880px, 100%);
  text-align: center;
}

.hero-title {
  margin-bottom: 20px;
  font-size: clamp(3rem, 12vw, 7.4rem);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 3.2vw, 1.35rem);
  line-height: 1.55;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(4px);
  }
}

/* =========================================================
   SHARED SECTIONS
   ========================================================= */

.section {
  position: relative;
  padding: 92px 0;
  overflow: clip;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
  text-transformation: uppercase;
  letter-spacing: 0.14em;
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 9vw, 4.7rem);
  font-weight: 800;
  line-height: 0.98;
}

.decorative-nine {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
}

.decorative-nine img {
  width: 100%;
}

.decorative-nine-right {
  top: 10%;
  right: -120px;
  width: min(52vw, 520px);
  transform: rotate(-14deg);
}

.decorative-nine-left {
  top: 15%;
  left: -150px;
  width: min(56vw, 560px);
  transform: rotate(180deg) scaleX(-1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   MANIFESTO
   ========================================================= */

.section-manifesto {
  position: relative;
  isolation: isolate;
  background:
    var(--pink);
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
  align-items: center;
}

.manifesto-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.14;
}

.manifesto-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.manifesto-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 600;
}

.manifesto-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.manifesto-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.manifesto-visual:hover img {
  transform: scale(1.035);
}

/* =========================================================
   SPECIALTIES
   ========================================================= */

.section-specialties {
  position: relative;
  isolation: isolate;
}

.specialties-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.specialty-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(30, 29, 28, 0.045);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent, var(--pink));
}

.specialty-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(30, 29, 28, 0.10);
  border-color: color-mix(in srgb, var(--accent, var(--pink)) 28%, transparent);
}

.specialty-card-pink {
  --accent: var(--pink);
}

.specialty-card-orange {
  --accent: var(--orange);
}

.specialty-card-blue {
  --accent: var(--blue);
}

.card-index {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(30, 29, 28, 0.045);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}

.specialty-card h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 30px;
  padding-right: 60px;
  font-size: 1.65rem;
  font-weight: 800;
}

.specialty-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialty-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.96rem;
}

.specialty-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.52em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================================================
   CYCLE
   ========================================================= */

.section-cycle {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 14%, rgba(242, 229, 41, 0.18), transparent 24%),
    radial-gradient(circle at 10% 88%, rgba(242, 5, 135, 0.10), transparent 18%),
    var(--cycle-bg);
  color: var(--ink);
}

.cycle-card {
  display: grid;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  padding: 38px 26px;
  border: 1px solid rgba(30, 29, 28, 0.09);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 14%, rgba(170, 56, 255, 0.10), transparent 34%),
    radial-gradient(circle at 14% 84%, rgba(255, 127, 0, 0.10), transparent 28%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cycle-copy h2 {
  color: var(--ink);
}

.cycle-statement {
  max-width: 650px;
  margin-bottom: 22px;
  color: rgba(30, 29, 28, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.cycle-punchline {
  display: none;
}

.cycle-visual {
  display: grid;
  place-items: center;
}

.cycle-image {
  width: min(330px, 72vw);
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.14));
  animation: floatNine 4.2s ease-in-out infinite;
}

@keyframes floatNine {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1.4deg);
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-section {
  position: relative;
  padding: 90px 0 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content h2 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(2.45rem, 9vw, 5rem);
  font-weight: 800;
  line-height: 1;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  box-shadow: 0 10px 28px rgba(30, 29, 28, 0.16);
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
}

.footer-cta:hover {
  transform: translateY(-3px);
  background: #000;
}

.footer-cta svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-links {
  display: flex;
  gap: 10px;
  margin: 34px 0;
}

.social-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease,
    color 0.25s ease;
}

.social-button:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: #fff;
}

.manifesto-rhythm {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
  text-align: left;
}

@media (max-width: 767px) {
  .manifesto-rhythm {
    text-align: center;
  }
}

.manifesto-highlight {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.75;
}

.social-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-button[data-missing-url="youtube"] {
  position: relative;
}

.footer-note {
  width: 100%;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #98938d;
  font-size: 0.8rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 560px) {
  .header-whatsapp-label {
    display: inline;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    padding: 20px 28px 0;
  }

  .header-shell {
    grid-template-columns: 1fr auto 1fr;
  }

  .brand-tagline {
    display: inline-block;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: var(--shadow-header);
    transition:
      background 0.25s ease,
      border-color 0.25s ease;
  }

  body:not(.header-on-dark) .desktop-nav {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.90);
  }

  .desktop-nav a {
    padding: 8px 13px;
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    font-weight: 700;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  body:not(.header-on-dark) .desktop-nav a {
    color: var(--muted);
  }

  .desktop-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
  }

  body:not(.header-on-dark) .desktop-nav a:hover {
    color: var(--ink);
    background: rgba(30, 29, 28, 0.05);
  }

  .menu-button {
    display: none;
  }

  .section {
    padding: 120px 0;
  }

  .manifesto-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 64px;
  }

  .specialties-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .cycle-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    padding: 58px 52px;
  }
}

@media (min-width: 1080px) {
  .site-header {
    padding-inline: 40px;
  }

  .brand-logo {
    width: 132px;
    height: 46px;
  }

  .header-whatsapp {
    min-width: 164px;
  }

  .section {
    padding: 136px 0;
  }

  .specialty-card {
    min-height: 430px;
    padding: 40px 34px;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    width: 108px;
  }

  .header-actions {
    padding: 5px;
  }

  .header-whatsapp {
    width: 40px;
    padding: 0;
  }

  .hero-section {
    min-height: 90svh;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   12. CAMADA DE IDENTIDADE VISUAL LAB9
   Mantém a estrutura, mas aproxima o site do brandbook:
   9 ampliado, cor, repetição, textura e contraste.
   ========================================================= */

/* ---------- Quem Somos / Manifesto ---------- */

.section-manifesto {
  isolation: isolate;
  background:
    radial-gradient(circle at 92% 16%, rgba(242, 5, 135, 0.10), transparent 26%),
    radial-gradient(circle at 78% 76%, rgba(255, 127, 0, 0.055), transparent 28%),
    var(--bg);
}

.section-manifesto .container {
  position: relative;
  z-index: 2;
}

.section-manifesto .decorative-nine {
  opacity: 0.12;
}

.section-manifesto .decorative-nine-right {
  top: -6%;
  right: -190px;
  width: min(50vw, 700px);
  transform: rotate(-11deg);
}

/* Símbolo ampliado com o espectro completo da marca */
.section-manifesto::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -90px;
  bottom: -180px;
  width: 360px;
  aspect-ratio: 1;
  background: var(--brand-gradient);
  opacity: 0.09;
  pointer-events: none;

  -webkit-mask: url("assets/9-rosa-.svg") center / contain no-repeat;
  mask: url("assets/9-rosa-.svg") center / contain no-repeat;
}

.manifesto-copy {
  position: relative;
}

/* Pequeno pulso cromático antes do conteúdo */
.manifesto-copy::before {
  content: "";
  display: block;
  width: 92px;
  height: 7px;
  margin-bottom: 22px;
  border-radius: var(--radius-pill);
  background: var(--brand-gradient);
}

/* Ritmo solicitado */
.manifesto-rhythm {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
  text-align: left;
}

/* Fechamento do manifesto centralizado */
.manifesto-highlight {
  max-width: 720px !important;
  margin: 32px auto 0 !important;
  color: var(--ink) !important;
  font-size: 1.03rem !important;
  font-weight: 700 !important;
  line-height: 1.72 !important;
  text-align: center;
}

/* ---------- Especialidades ---------- */

.section-specialties {
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 133, 255, 0.06), transparent 22%),
    radial-gradient(circle at 92% 88%, rgba(167, 234, 38, 0.07), transparent 24%),
    #f7f4f2;
}

.section-specialties .container {
  position: relative;
  z-index: 2;
}

/* Textura de repetição do símbolo, derivada do sistema visual da marca */
.section-specialties::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.30), transparent 14%),
    radial-gradient(circle at 86% 80%, rgba(255,255,255,0.24), transparent 12%);
  opacity: 1;
}

/* O 9 decorativo antigo permanece, agora como uma segunda camada bem sutil */
.section-specialties .decorative-nine {
  opacity: 0.045;
}

.specialty-card {
  isolation: isolate;
  border-color: rgba(30, 29, 28, 0.085);
  box-shadow: 0 12px 34px rgba(30, 29, 28, 0.055);
}

.specialty-card::before {
  height: 5px;
}

.specialty-card-pink {
  --accent: var(--pink);
  background:
    radial-gradient(circle at 100% 0%, rgba(170, 56, 255, 0.17), transparent 43%),
    linear-gradient(145deg, #ffffff 0%, rgba(242, 5, 135, 0.085) 100%);
}

.specialty-card-orange {
  --accent: var(--orange);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 229, 41, 0.22), transparent 43%),
    linear-gradient(145deg, #ffffff 0%, rgba(255, 127, 0, 0.095) 100%);
}

.specialty-card-blue {
  --accent: var(--blue);
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 234, 38, 0.19), transparent 43%),
    linear-gradient(145deg, #ffffff 0%, rgba(0, 133, 255, 0.085) 100%);
}

.card-index {
  top: -14px;
  right: 12px;
  font-size: clamp(6rem, 9vw, 9rem);
  color: var(--accent);
  opacity: 0.075;
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease);
}

.specialty-card:hover .card-index {
  opacity: 0.13;
  transform: translateY(-4px) rotate(-2deg);
}

.section-specialties .eyebrow {
  color: var(--blue);
}

/* ---------- Manifesto / O 9 ---------- */

.section-cycle {
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 88%, rgba(242, 5, 135, 0.13), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(0, 133, 255, 0.13), transparent 30%),
    #10100f;
  color: #fff;
}

/* Linha orgânica / pulso de cor atravessando discretamente o bloco */
.section-cycle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), transparent 28%),
    radial-gradient(circle at 75% 22%, rgba(170, 56, 255, 0.10), transparent 18%);
}

.section-cycle .container {
  position: relative;
  z-index: 2;
}

.cycle-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at 88% 14%, rgba(170, 56, 255, 0.16), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(242, 5, 135, 0.08), transparent 32%),
    rgba(22, 22, 21, 0.90);
  color: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cycle-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 320px;
  aspect-ratio: 1;
  background: var(--brand-gradient);
  opacity: 0.10;
  pointer-events: none;
  -webkit-mask: url("assets/9-rosa-.svg") center / contain no-repeat;
  mask: url("assets/9-rosa-.svg") center / contain no-repeat;
}

.cycle-copy,
.cycle-visual {
  position: relative;
  z-index: 1;
}

.cycle-copy h2 {
  color: var(--ink);
}

.cycle-statement {
  color: rgba(255, 255, 255, 0.66);
}

.section-cycle .eyebrow {
  color: var(--orange);
}

.cycle-punchline {
  border-left: 0;
  border-radius: var(--radius-pill);
  background: var(--brand-gradient);
  color: #121211;
  padding: 16px 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.20);
}

.cycle-image {
  width: min(430px, 82vw);
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.34));
}

.cycle-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  width: fit-content;
  max-width: 100%;

  padding: 14px 24px 14px 18px;

  background: #A7EA26;
  color: #1E1D1C;

  border-radius: 28px 28px 28px 6px;

  box-shadow:
    0 14px 32px rgba(30, 29, 28, 0.16);

  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;

  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.cycle-whatsapp-cta:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(30, 29, 28, 0.22);
}

.cycle-whatsapp-phone {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: #1E1D1C;
  color: #A7EA26;
}

.cycle-whatsapp-phone svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cycle-whatsapp-text {
  display: block;
}

.cycle-whatsapp-chat {
  display: none;
}

@media (max-width: 767px) {
  .cycle-whatsapp-cta {
    margin-inline: auto;

    padding:
      12px
      18px
      12px
      12px;

    border-radius:
      24px
      24px
      24px
      7px;

    font-size: 0.85rem;
  }

  .cycle-whatsapp-phone {
    width: 38px;
    height: 38px;
  }

  .cycle-whatsapp-chat {
    display: none;
  }
}
/* ---------- Rodapé ---------- */

.footer-section {
  isolation: isolate;
  border-top: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(170, 56, 255, 0.10), transparent 30%),
    #0f0f0f;
  color: #fff;
}

/* Textura do símbolo com gradiente completo */
.footer-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;

  background: var(--brand-gradient);

  -webkit-mask-image: url("assets/9-rosa-.svg");
  -webkit-mask-size: 92px auto;
  -webkit-mask-repeat: repeat;

  mask-image: url("assets/9-rosa-.svg");
  mask-size: 92px auto;
  mask-repeat: repeat;
}

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

.footer-content .gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-cta {
  background: #fff;
  color: #111;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.footer-cta:hover {
  background: var(--yellow);
  color: #111;
}

.social-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.social-button:hover {
  background: var(--pink);
  color: #fff;
}

.footer-note {
  color: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.10);
}

/* ---------- Pequenos ajustes cromáticos ---------- */

.section-manifesto .eyebrow {
  color: var(--pink);
}

.specialty-card-pink:hover {
  border-color: rgba(242, 5, 135, 0.30);
}

.specialty-card-orange:hover {
  border-color: rgba(255, 127, 0, 0.30);
}

.specialty-card-blue:hover {
  border-color: rgba(0, 133, 255, 0.30);
}

/* Mobile: manifesto-rhythm centralizado conforme solicitado */
@media (max-width: 767px) {
  .manifesto-rhythm {
    text-align: center;
  }

  .manifesto-copy::before {
    margin-inline: auto;
  }

  .manifesto-copy h2 {
    text-align: center;
  }

  .section-manifesto .eyebrow {
    text-align: center;
  }

  .section-manifesto::after {
    right: -150px;
    bottom: -120px;
    width: 300px;
    opacity: 0.07;
  }

  .section-specialties::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.30), transparent 14%),
    radial-gradient(circle at 86% 80%, rgba(255,255,255,0.24), transparent 12%);
  opacity: 1;
}

  .section-cycle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), transparent 28%),
    radial-gradient(circle at 75% 22%, rgba(170, 56, 255, 0.10), transparent 18%);
}

  .cycle-card {
    padding-top: 42px;
  }

  .cycle-copy {
    text-align: center;
  }

  .cycle-punchline {
    display: inline-block;
  }

  .footer-section::before {
    opacity: 0.024;
    -webkit-mask-size: 78px auto;
    mask-size: 78px auto;
  }
}

/* Fallback para navegadores sem suporte a CSS mask */
@supports not ((mask-image: url("")) or (-webkit-mask-image: url(""))) {
  .section-specialties::before,
  .footer-section::before,
  .section-manifesto::after,
  .cycle-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 320px;
  aspect-ratio: 1;
  background: var(--brand-gradient);
  opacity: 0.10;
  pointer-events: none;
  -webkit-mask: url("assets/9-rosa-.svg") center / contain no-repeat;
  mask: url("assets/9-rosa-.svg") center / contain no-repeat;
}
}


@media (max-width: 767px) {
  .manifesto-rhythm {
    text-align: center;
  }

  .manifesto-copy::before {
    margin-inline: auto;
  }

  .manifesto-copy h2,
  .section-manifesto .eyebrow,
  .cycle-copy {
    text-align: center;
  }

  .cycle-whatsapp-cta {
    margin-inline: auto;
    padding-inline: 18px;
    min-height: 54px;
    font-size: 0.84rem;
    text-align: center;
  }

  .cycle-whatsapp-cta span {
    white-space: normal;
  }
}
/* =========================================================
   AJUSTE FINAL DE CORES DOS BLOCOS
   Pedido do cliente:
   Quem Somos     -> #F20587
   Especialidades -> #F2E529
   Manifesto      -> #FF7F00

   Sem gradientes, texturas ou fundos decorativos nesses blocos.
   O bloco "cafezinho" e o footer permanecem inalterados.
   ========================================================= */

/* QUEM SOMOS — PINK */
.section-manifesto {
  background: #F20587 !important;
}

.section-manifesto::before,
.section-manifesto::after {
  display: none !important;
}

.section-manifesto .decorative-nine {
  display: none !important;
}

.section-manifesto .eyebrow {
  color: #1E1D1C !important;
}

.section-manifesto .manifesto-copy::before {
  background: #1E1D1C !important;
}

.section-manifesto .manifesto-copy h2,
.section-manifesto .manifesto-rhythm,
.section-manifesto .manifesto-highlight {
  color: #1E1D1C !important;
}


/* O QUE FAZEMOS — AMARELO NEON */
.section-specialties {
  background: #F2E529 !important;
}

.section-specialties::before,
.section-specialties::after {
  display: none !important;
}

.section-specialties .decorative-nine {
  display: none !important;
}

.section-specialties .eyebrow {
  color: #1E1D1C !important;
}

.section-specialties .specialty-card,
.section-specialties .specialty-card-pink,
.section-specialties .specialty-card-orange,
.section-specialties .specialty-card-blue {
  background: #FFFFFF !important;
}


/* MANIFESTO / O 9 — LARANJA */
.section-cycle {
  background: #FF7F00 !important;
  color: #1E1D1C !important;
}

.section-cycle::before,
.section-cycle::after {
  display: none !important;
}

.section-cycle .cycle-card {
  background: #FFFFFF !important;
  color: #1E1D1C !important;
}

.section-cycle .cycle-card::before,
.section-cycle .cycle-card::after {
  display: none !important;
}

.section-cycle .eyebrow,
.section-cycle .cycle-copy h2,
.section-cycle .cycle-statement {
  color: #1E1D1C !important;
}

/* Mantém o CTA cápsula do WhatsApp */
.section-cycle .cycle-whatsapp-cta {
  background: #1E1D1C !important;
  color: #FFFFFF !important;
}

.section-cycle .cycle-whatsapp-cta:hover {
  background: #000000 !important;
}
