.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--wa-green);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:root {
  /* Identidade visual Grupo WhatsApp (logos) */
  --wa-primary: #075E54;
  --wa-secondary: #1E3B38;
  --wa-green: #25D366;
  --wa-teal: #128C7E;
  --wa-dark: #075E54;
  --wa-light: #DCF8C6;
  --wa-bg: #ECE5DD;
  --wa-white: #ffffff;
  --wa-green-glow: rgba(37, 211, 102, 0.35);

  /* Dark (carbon): default */
  --wa-bg-page: #0D1117;
  --wa-surface: #161B22;
  --wa-surface-elevated: #1C2128;
  --wa-text: #E6EDF3;
  --wa-text-muted: #8B949E;
  --wa-border: #30363d;
  --wa-roadmap-bg: #0D1117;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 40px rgba(37, 211, 102, 0.15);
}

/* Light mode: opt-in */
html.theme-light {
  --wa-bg-page: #F9F9F9;
  --wa-surface: #F4F4F4;
  --wa-surface-elevated: #ffffff;
  --wa-text: #111b21;
  --wa-text-muted: #667781;
  --wa-border: #e8eaed;
  --wa-roadmap-bg: #161B22;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--wa-teal);
  outline-offset: 2px;
}

::selection {
  background: rgba(37, 211, 102, 0.2);
  color: inherit;
}

body {
  font-family: var(--font);
  color: var(--wa-text);
  background: var(--wa-bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--wa-secondary);
  overflow: hidden;
  padding: 80px 32px 120px;
}

.hero__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 380px);
    gap: 48px;
    align-items: center;
    text-align: left;
  }
}

.hero__pixel-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__pixel-grid canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===================== CHAT ANIMATION (WhatsApp mockup reference) ===================== */

.wa-mockup-ref {
  --a-bg: #111B21;
  --a-hdr: #1F2C34;
  --a-text: #E9EDEF;
  --a-text2: #8696A0;
  --a-icon: #AEBAC1;
  --a-sep: #233239;
}

.hero__chat {
  pointer-events: none;
  order: 2;
}

@media (max-width: 1023px) {
  .hero__chat {
    margin-top: 40px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .hero__chat {
    justify-self: end;
  }
}

.chat__phone {
  width: 280px;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
  background: var(--a-bg);
  border-radius: 48px;
  overflow: hidden;
  border: 3px solid #2a2a2a;
  outline: 8px solid #1a1a1a;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(24px);
  animation: phoneAppear 1s 0.5s var(--ease-out) forwards;
  will-change: opacity, transform;
}

@keyframes phoneAppear {
  to { opacity: 1; transform: translateY(0); }
}

.chat__statusbar {
  height: 26px;
  background: var(--a-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.chat__statusbar-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}

.chat__statusbar-right svg {
  display: block;
  color: inherit;
}

.chat__app {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--a-bg);
}

.chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--a-hdr);
  flex-shrink: 0;
  height: 50px;
}

.chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--wa-white);
  flex-shrink: 0;
}

.chat__avatar--icon .chat__avatar-img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.chat__avatar--group.chat__avatar--icon {
  background: transparent;
  overflow: hidden;
  padding: 0;
}

.chat__avatar--group .chat__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat__header-info {
  display: flex;
  flex-direction: column;
}

.chat__header-name {
  color: var(--a-text);
  font-size: 15px;
  font-weight: 500;
}

.chat__header-status {
  color: var(--a-text2);
  font-size: 11px;
}

.chat__messages {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  background-color: #0B141A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='15' cy='12' r='4'/%3E%3Cpath d='M45 6l3 5H42z'/%3E%3Crect x='72' y='8' width='7' height='5' rx='1'/%3E%3Cpath d='M110 14c-2 0-3-1-3-3s1-3 3-3 3 1 3 3-1 3-3 3zm0-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z'/%3E%3Cpath d='M140 8h5v1h-5zM140 11h5v1h-5z'/%3E%3Cpath d='M172 8l2 3-2 3-2-3z'/%3E%3Cpath d='M24 38c0-1.7 1.3-3 3-3h4c1.7 0 3 1.3 3 3v2c0 1.7-1.3 3-3 3h-4c-1.7 0-3-1.3-3-3v-2zm1 0c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2h-4c-1.1 0-2-.9-2-2v-2z'/%3E%3Cpath d='M60 35l4 7H56z'/%3E%3Ccircle cx='95' cy='40' r='3'/%3E%3Cpath d='M125 36h6v6h-6zM127 38h2v2h-2z'/%3E%3Cpath d='M160 37c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3zm0 1c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/%3E%3Cpath d='M185 36l3 4h-6z'/%3E%3Cpath d='M12 65h8v1H12zM12 68h5v1h-5z'/%3E%3Ccircle cx='50' cy='68' r='3.5'/%3E%3Cpath d='M80 63l5 5-5 5z'/%3E%3Cpath d='M113 64c0-1 1-2 2-2h3c1 0 2 1 2 2v4c0 1-1 2-2 2h-3c-1 0-2-1-2-2v-4z'/%3E%3Ccircle cx='150' cy='67' r='2.5'/%3E%3Cpath d='M178 65l3 3-3 3'/%3E%3Cpath d='M10 95l4 3-4 3z'/%3E%3Crect x='40' y='93' width='8' height='6' rx='1.5'/%3E%3Cpath d='M78 95c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4zm-1 0c0-1.7-1.3-3-3-3s-3 1.3-3 3 1.3 3 3 3 3-1.3 3-3z'/%3E%3Cpath d='M105 92h6v1h-6zM105 95h4v1h-4z'/%3E%3Cpath d='M138 96l3-4 3 4z'/%3E%3Ccircle cx='172' cy='95' r='3'/%3E%3Cpath d='M18 125c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z'/%3E%3Cpath d='M48 123l4 7h-8z'/%3E%3Crect x='78' y='123' width='6' height='6' rx='3'/%3E%3Cpath d='M115 124h5v5h-5z'/%3E%3Cpath d='M148 128l3-5 3 5z'/%3E%3Ccircle cx='180' cy='127' r='2'/%3E%3Cpath d='M10 155l3 4-3 4'/%3E%3Ccircle cx='45' cy='158' r='3'/%3E%3Cpath d='M75 154h7v7h-7zM77 156h3v3h-3z'/%3E%3Cpath d='M108 155c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4zm0 1.5c-1.4 0-2.5 1.1-2.5 2.5s1.1 2.5 2.5 2.5 2.5-1.1 2.5-2.5-1.1-2.5-2.5-2.5z'/%3E%3Cpath d='M140 155h5v1h-5zM140 158h3v1h-3z'/%3E%3Cpath d='M170 155l4 4-4 4z'/%3E%3Ccircle cx='18' cy='188' r='2.5'/%3E%3Cpath d='M48 185l3 5h-6z'/%3E%3Crect x='78' y='185' width='5' height='5' rx='1'/%3E%3Cpath d='M110 188c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/%3E%3Cpath d='M140 185h5v1h-5z'/%3E%3Cpath d='M172 186l2 3-2 3-2-3z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.chat__bubble {
  max-width: 85%;
  padding: 6px 10px 4px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
  position: relative;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  animation: msgAppear 0.4s forwards ease-out;
}

.chat__bubble--in {
  align-self: flex-start;
  max-width: 92%;
  background: transparent;
  color: var(--a-text);
  padding: 0;
}

.chat__bubble-inner {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.chat__avatar--bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #1F2C34;
}

.chat__avatar--bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat__bubble-content {
  background: #1F2C34;
  color: var(--a-text);
  padding: 6px 10px 4px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.chat__bubble--out {
  align-self: flex-end;
  background: #005C4B;
  color: #E9EDEF;
  border-top-right-radius: 2px;
}

.chat__bubble--1 { animation-delay: 1.2s; }
.chat__bubble--2 { animation-delay: 2.2s; }
.chat__bubble--3 { animation-delay: 3.4s; }
.chat__bubble--4 { animation-delay: 4.6s; }
.chat__bubble--5 { animation-delay: 5.8s; }

@keyframes msgAppear {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat__author {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.chat__navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  height: 28px;
  background: var(--a-bg);
  flex-shrink: 0;
}

.chat__nav-sq {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  border: 1.8px solid var(--a-icon);
}

.chat__nav-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.8px solid var(--a-icon);
}

.chat__nav-tri {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 9px solid var(--a-icon);
}

.chat__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 0.6rem;
  opacity: 0.5;
  margin-top: 2px;
  white-space: nowrap;
}

.chat__check {
  color: #53bdeb;
  flex-shrink: 0;
}

.chat__typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
}

.chat__typing span {
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.chat__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.hero__logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 280px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.97;
}

@media (min-width: 1024px) {
  .hero__logo {
    margin-bottom: 28px;
    height: 60px;
    max-width: 340px;
  }
}

.hero__content {
  position: relative;
  order: 1;
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--wa-white);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero__disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .hero__disclaimer {
    text-align: center;
  }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--wa-white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}

.hero__highlight {
  background: linear-gradient(135deg, var(--wa-light), rgba(255, 255, 255, 0.95));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 36px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.hero__subtitle strong {
  color: var(--wa-white);
  font-weight: 700;
}

@media (max-width: 1023px) {
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__cta {
  margin-bottom: 0;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__stat strong {
  color: var(--wa-white);
  font-weight: 700;
}

@media (max-width: 1023px) {
  .hero__stats {
    justify-content: center;
  }
}

/* Old badge rules moved to bottom unified section */

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  font-family: var(--font);
  letter-spacing: 0.02em;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--wa-white);
  color: var(--wa-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 58%,
    transparent 75%
  );
  translate: -100% 0;
  transition: translate 0.8s var(--ease-out);
  pointer-events: none;
}

.btn--primary:hover::before {
  translate: 100% 0;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--wa-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.btn--secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
  padding: 20px 40px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--wa-dark), var(--wa-teal));
  color: var(--wa-white);
  box-shadow: 0 4px 16px rgba(7, 94, 84, 0.12);
}

.btn--full:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 94, 84, 0.18);
}

.btn--full:active {
  transform: translateY(0);
}

.btn__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn__spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btnSpinner 0.7s linear infinite;
  flex-shrink: 0;
}

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

.btn--loading {
  pointer-events: none;
  cursor: not-allowed;
}

.btn--loading:hover {
  transform: none;
}

.btn--success {
  background: var(--wa-green) !important;
  color: var(--wa-white) !important;
}

/* ===================== SCROLL INDICATOR ===================== */

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-indicator span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 13px;
  position: relative;
}

.hero__scroll-indicator span::after {
  content: "";
  display: block;
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ===================== SECTION COMMON ===================== */

.section__title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  color: var(--wa-text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__subtitle {
  text-align: center;
  color: var(--wa-text-muted);
  font-size: 1.12rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ===================== ABOUT ===================== */

.about {
  padding: 120px 0;
  background: var(--wa-bg-page);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
  overflow: hidden;
  overflow: clip;
}

.about#sobre {
  scroll-margin-top: 1rem;
}

.about .container {
  position: relative;
}

/* Circular layout: circle rotates like a wheel; cards stay fixed */
.about__circle-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 700px;
  margin: 0 auto 60px;
  overflow: visible;
  min-height: 700px;
}

@keyframes aboutCircleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.about__wheel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about__circle-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--wa-teal);
  pointer-events: none;
}

.about__cross-lines line {
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-opacity: 0.35;
  stroke-dasharray: 10 14;
  stroke-linecap: round;
  animation: aboutDashFlow 1.2s linear infinite;
}

.about__cross-lines line:nth-child(2) { animation-delay: -0.15s; }
.about__cross-lines line:nth-child(3) { animation-delay: -0.3s; }
.about__cross-lines line:nth-child(4) { animation-delay: -0.45s; }
.about__cross-lines line:nth-child(5) { animation-delay: -0.6s; }
.about__cross-lines line:nth-child(6) { animation-delay: -0.1s; }
.about__cross-lines line:nth-child(7) { animation-delay: -0.25s; }
.about__cross-lines line:nth-child(8) { animation-delay: -0.5s; }
.about__cross-lines line:nth-child(9) { animation-delay: -0.35s; }
.about__cross-lines line:nth-child(10) { animation-delay: -0.2s; }
.about__cross-lines line:nth-child(11) { animation-delay: -0.55s; }

@keyframes aboutDashFlow {
  to { stroke-dashoffset: -24; }
}

.about__circle-wrap .about__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  margin-left: -140px;
  margin-top: -44px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(18, 140, 126, 0.07));
  border: 1px solid rgba(37, 211, 102, 0.12);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about__card__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

/* Cards pushed further out (1.4× radius) so card + text stay outside polygon */
.about__circle-wrap .about__card--1 { transform: translate(0, -336px); }
.about__circle-wrap .about__card--2 { transform: translate(262px, -210px); }
.about__circle-wrap .about__card--3 { transform: translate(328px, 76px); }
.about__circle-wrap .about__card--4 { transform: translate(146px, 302px); }
.about__circle-wrap .about__card--5 { transform: translate(-141px, 305px); }
.about__circle-wrap .about__card--6 { transform: translate(-328px, 76px); }
.about__circle-wrap .about__card--7 { transform: translate(-262px, -210px); }

.about__circle-wrap .about__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--wa-green), var(--wa-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__circle-wrap .about__card:hover::before {
  transform: scaleX(1);
}

.about__circle-wrap .about__card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
  z-index: 2;
}

.about__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  border-radius: 9px;
  color: var(--wa-white);
}

.about__icon svg {
  width: 20px;
  height: 20px;
}

.about__card__inner .about__icon {
  margin-bottom: 0;
}

.about__card__text {
  min-width: 0;
  flex: 1;
  max-width: 100%;
}

.about__card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--wa-text);
}

.about__card p {
  color: var(--wa-text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* ===================== TESTIMONIALS LOGOS CAROUSEL ===================== */

.testimonials-logos {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--wa-primary) 0%, var(--wa-secondary) 100%);
  position: relative;
  overflow-x: hidden;
}

.testimonials-logos__title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.testimonials-logos .container {
  max-width: 1320px;
}

.testimonials-logos__wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-logos__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

.testimonials-logos__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--wa-primary) 0%, transparent 100%);
}

.testimonials-logos__fade--right {
  right: 0;
  left: auto;
  background: linear-gradient(to left, var(--wa-primary) 0%, transparent 100%);
}

.testimonials-logos__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: testimonialsLogosScroll 30s linear infinite;
  padding: 0 24px;
  will-change: transform;
  transform: translateZ(0);
}

.testimonials-logos__track:hover {
  animation-play-state: paused;
}

@keyframes testimonialsLogosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials-logos__item {
  flex-shrink: 0;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.testimonials-logos__item img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.testimonials-logos__item--light img {
  filter: invert(1);
}

.testimonials-logos__item--wide img {
  height: 28px;
  width: auto;
  max-width: 120px;
}

.testimonials-logos__item:hover {
  opacity: 0.85;
  filter: grayscale(0.6);
}

@media (max-width: 768px) {
  .testimonials-logos {
    padding: 40px 0;
  }

  .testimonials-logos__title {
    margin-bottom: 24px;
    font-size: 0.85rem;
  }

  .testimonials-logos__wrap {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: hidden;
    min-width: 0;
  }

  .testimonials-logos__fade {
    display: none;
  }

  .testimonials-logos__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    animation: none;
    padding: 0;
    justify-items: center;
    align-items: center;
  }

  .testimonials-logos__item {
    opacity: 0.6;
    filter: grayscale(0.8);
    min-width: 0;
    max-width: 100%;
  }

  .testimonials-logos__item img {
    height: 28px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
  }

  .testimonials-logos__item--wide img {
    height: 22px;
    max-width: 100%;
  }

  .testimonials-logos__item:has(> [aria-hidden="true"]) {
    display: none;
  }
}

.testimonials-logos__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.testimonials-logos__footer .hero__badge {
  margin-bottom: 0;
}

.testimonials-logos__footer .hero__disclaimer {
  text-align: center;
}

/* ===================== PARTNERS ===================== */

.partners {
  margin-top: 96px;
  padding-top: 80px;
  border-top: 1px solid var(--wa-border);
}

.partners__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--wa-text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  width: 100%;
}

.partners__title-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners__title-logo .meta-logo {
  width: 32px;
  height: 32px;
  display: block;
}

.partners__subtitle {
  text-align: center;
  color: var(--wa-text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partners__card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--wa-surface-elevated);
  border: 1px solid var(--wa-border);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.partners__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 211, 102, 0.2);
}

.partners__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--wa-white);
}

.partners__icon--tech {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.partners__icon--solution {
  background: linear-gradient(135deg, var(--wa-teal), var(--wa-green));
}

.partners__icon--business {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.partners__icon--agent {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.partners__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wa-text);
  margin-bottom: 8px;
}

.partners__card p {
  font-size: 0.85rem;
  color: var(--wa-text-muted);
  line-height: 1.55;
}

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

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

/* ===================== ROADMAP (curved Meta partnership stages) ===================== */

.roadmap {
  padding: 120px 0;
  background: var(--wa-roadmap-bg);
  color: var(--wa-white);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
  position: relative;
  overflow: hidden;
}

.roadmap .section__title {
  color: var(--wa-white);
}

.roadmap .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.roadmap__wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  min-height: 380px;
}

.roadmap__curve {
  position: relative;
  padding-top: 24px;
}

.roadmap__curve-svg {
  width: 100%;
  height: auto;
  max-height: 280px;
  color: var(--wa-teal);
}

.roadmap__path {
  animation: roadmapDash 1.5s linear infinite;
}

@keyframes roadmapDash {
  to { stroke-dashoffset: -28; }
}

.roadmap__stages {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.roadmap__stages > * {
  pointer-events: auto;
}

.roadmap__stage {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.roadmap__stage-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wa-green);
  flex-shrink: 0;
  margin-top: 18px;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.3);
}

.roadmap__stage-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  max-width: 220px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.roadmap__stage-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.roadmap__stage-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wa-green);
  margin-bottom: 6px;
}

.roadmap__stage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wa-white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.roadmap__stage-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Curved path positions (approx along path M 80 280 Q 200 280 280 220 T 480 120 T 720 80) */
.roadmap__stage--1 { left: 2%;   top: 68%; }
.roadmap__stage--2 { left: 22%;  top: 52%; }
.roadmap__stage--3 { left: 48%;  top: 28%; }
.roadmap__stage--4 { left: 78%;  top: 8%;  }

.roadmap__stage--4 .roadmap__stage-card { max-width: 240px; }

@media (max-width: 900px) {
  .roadmap__curve-svg {
    max-height: 220px;
  }

  .roadmap__stage {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .roadmap__stage-card {
    max-width: none;
  }

  .roadmap__stages {
    position: static;
    display: flex;
    flex-direction: column;
    padding-top: 16px;
  }

  .roadmap__stage--4 .roadmap__stage-card {
    max-width: none;
  }
}

/* ===================== CONTENTS (locked community content) ===================== */

.contents {
  padding: 120px 0;
  background: var(--wa-bg-page);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  scroll-margin-top: 1rem;
}

.contents__title {
  color: var(--wa-text);
}

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

.contents__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 1px;
  background: var(--wa-border);
  border: 1px solid var(--wa-border);
  border-radius: 12px;
  overflow: hidden;
}

.contents__card {
  background: var(--wa-surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: background var(--transition);
}

.contents__card:hover {
  background: var(--wa-surface-elevated);
}

.contents__card-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.contents__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--wa-surface-elevated);
  color: var(--wa-teal);
}

.contents__card-icon svg {
  opacity: 0.9;
}

.contents__card-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--wa-text-muted);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.contents__card:hover .contents__card-lock {
  opacity: 0.8;
}

/* Gated cards: teaser legível + prévia borrada (home) */
.contents__card-teaser {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--wa-text);
  margin: 0 0 4px;
  opacity: 0.92;
}

.contents__card-blur-wrap {
  position: relative;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: color-mix(in srgb, var(--wa-surface-elevated) 88%, var(--wa-border));
  border: 1px solid var(--wa-border);
  min-height: 96px;
}

.contents__card-blur-inner {
  filter: blur(7px);
  -webkit-filter: blur(7px);
  transform: scale(1.03);
  opacity: 0.62;
  max-height: 132px;
  overflow: hidden;
  padding: 12px 14px 36px;
  user-select: none;
  pointer-events: none;
}

.contents__card-desc--blurred {
  margin-bottom: 8px;
}

.contents__card-topics--blurred {
  margin-bottom: 0;
}

.contents__card-blur-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 12px 11px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--wa-text);
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--wa-surface) 45%, transparent) 35%,
    color-mix(in srgb, var(--wa-surface) 88%, transparent) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contents__card-blur-hint span {
  display: inline-block;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--wa-teal) 14%, transparent);
  color: var(--wa-teal);
  border: 1px solid color-mix(in srgb, var(--wa-teal) 28%, transparent);
}

html.theme-light .contents__card-blur-inner {
  opacity: 0.55;
}

html.theme-light .contents__card-blur-hint span {
  background: color-mix(in srgb, var(--wa-teal) 10%, transparent);
}

/* Home: mapa onboarding — macro etapas (embed com abas + prévia borrada) */
.meta-map-macro {
  padding: 72px 0 64px;
  border-top: 1px solid var(--wa-border);
  background: color-mix(in srgb, var(--wa-surface) 35%, var(--wa-bg-page));
}

.meta-map-macro__teaser {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.meta-map-macro__embed {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 28px auto 0;
}

.meta-map-macro__tabs {
  order: -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  justify-content: center;
}

.meta-map-macro__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wa-border);
  background: var(--wa-surface-elevated);
  color: var(--wa-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease-out),
    color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  font-family: var(--font);
}

.meta-map-macro__tab:hover {
  border-color: color-mix(in srgb, var(--wa-teal) 35%, var(--wa-border));
  color: var(--wa-text);
}

.meta-map-macro__tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 6px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--wa-teal) 14%, transparent);
  color: var(--wa-teal);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.meta-map-macro__panel {
  display: none;
}

.meta-map-macro__radio:checked + .meta-map-macro__panel {
  display: block;
}

.meta-map-macro__embed:has(#meta-macro-1:checked) .meta-map-macro__tab--1,
.meta-map-macro__embed:has(#meta-macro-2:checked) .meta-map-macro__tab--2,
.meta-map-macro__embed:has(#meta-macro-3:checked) .meta-map-macro__tab--3,
.meta-map-macro__embed:has(#meta-macro-4:checked) .meta-map-macro__tab--4,
.meta-map-macro__embed:has(#meta-macro-5:checked) .meta-map-macro__tab--5,
.meta-map-macro__embed:has(#meta-macro-6:checked) .meta-map-macro__tab--6 {
  border-color: color-mix(in srgb, var(--wa-teal) 45%, var(--wa-border));
  color: var(--wa-text);
  background: color-mix(in srgb, var(--wa-teal) 10%, var(--wa-surface-elevated));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--wa-teal) 22%, transparent);
}

.meta-map-macro__panel-kicker {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wa-text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.meta-map-macro__phase-num {
  color: var(--wa-teal);
}

.meta-map-macro__blur-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: color-mix(in srgb, var(--wa-surface-elevated) 88%, var(--wa-border));
  border: 1px solid var(--wa-border);
  min-height: 120px;
}

.meta-map-macro__blur-inner {
  filter: blur(7px);
  -webkit-filter: blur(7px);
  transform: scale(1.03);
  opacity: 0.62;
  max-height: 168px;
  overflow: hidden;
  padding: 14px 16px 40px;
  user-select: none;
  pointer-events: none;
}

.meta-map-macro__panel-summary--blurred {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--wa-text);
}

.meta-map-macro__blur-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--wa-text);
}

.meta-map-macro__blur-list li {
  margin-bottom: 6px;
}

.meta-map-macro__blur-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 12px 11px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--wa-text);
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--wa-surface) 45%, transparent) 35%,
    color-mix(in srgb, var(--wa-surface) 88%, transparent) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.meta-map-macro__blur-hint span {
  display: inline-block;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--wa-teal) 14%, transparent);
  color: var(--wa-teal);
  border: 1px solid color-mix(in srgb, var(--wa-teal) 28%, transparent);
}

html.theme-light .meta-map-macro__blur-inner {
  opacity: 0.55;
}

html.theme-light .meta-map-macro__blur-hint span {
  background: color-mix(in srgb, var(--wa-teal) 10%, transparent);
}

.meta-map-macro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.meta-map-macro__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s,
    color 0.2s,
    transform 0.15s var(--ease-out);
}

.meta-map-macro__cta--primary {
  background: var(--wa-teal);
  color: var(--wa-white);
  border: 1px solid transparent;
}

.meta-map-macro__cta--primary:hover {
  background: color-mix(in srgb, var(--wa-teal) 88%, #000);
  color: var(--wa-white);
  transform: translateY(-1px);
}

.meta-map-macro__cta--secondary {
  background: transparent;
  color: var(--wa-text);
  border: 1px solid var(--wa-border);
}

.meta-map-macro__cta--secondary:hover {
  border-color: color-mix(in srgb, var(--wa-teal) 40%, var(--wa-border));
  color: var(--wa-teal);
}

@media (max-width: 540px) {
  .meta-map-macro__tab {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    min-width: 0;
  }

  .meta-map-macro__tab-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.contents__card-body {
  flex: 1;
  min-width: 0;
}

.contents__card-tag-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.contents__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wa-text-muted);
}

.contents__card-tag--urgent {
  color: #e74c3c;
}

.contents__card-nivel {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--wa-surface-elevated);
  color: var(--wa-text-muted);
}

.contents__card-nivel--iniciante { color: var(--wa-teal); }
.contents__card-nivel--intermediario { color: #e67e22; }
.contents__card-nivel--avancado { color: #e74c3c; }

.contents__card-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 6px;
  color: var(--wa-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contents__card-desc {
  font-size: 0.8rem;
  color: var(--wa-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.contents__card-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0 0 16px;
  padding: 0;
}

.contents__card-topics li {
  font-size: 0.75rem;
  color: var(--wa-text-muted);
  opacity: 0.7;
  padding-left: 12px;
  position: relative;
}

.contents__card-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wa-teal);
  opacity: 0.4;
  transform: translateY(-50%);
}

.contents__card-actions {
  margin-top: auto;
  padding-top: 4px;
}

.contents__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--wa-teal);
  text-decoration: none;
  transition: all var(--transition);
}

.contents__card-cta:hover {
  opacity: 0.7;
}

.contents__card-cta svg {
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.contents__card-cta:hover svg {
  transform: translateX(3px);
  opacity: 1;
}

/* ===================== FORM SECTION ===================== */

.apply {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--wa-surface) 0%, var(--wa-bg-page) 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.apply__requisitos {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: rgba(7, 94, 84, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--wa-teal);
}

.apply__requisitos-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wa-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.apply__requisitos-text {
  font-size: 0.95rem;
  color: var(--wa-text);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.apply__form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--wa-surface-elevated);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--wa-border);
  transition: box-shadow 0.35s var(--ease-out);
}

.apply__form:hover {
  box-shadow: var(--shadow-lg);
}

.form__group {
  margin-bottom: 20px;
  flex: 1;
}

.form__row {
  display: flex;
  gap: 16px;
}

.form__group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wa-text);
  margin-bottom: 8px;
}

.form__required {
  color: var(--wa-green);
  font-weight: 700;
}

.form__group input,
.form__group select {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: var(--font);
  border: 1.5px solid var(--wa-border);
  border-radius: var(--radius-sm);
  background: var(--wa-surface-elevated);
  color: var(--wa-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B949E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

html.theme-light .form__group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23667781' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form__group input::placeholder {
  color: var(--wa-text-muted);
}

.form__group input:focus,
.form__group select:focus {
  border-color: var(--wa-teal);
  box-shadow: 0 0 0 4px var(--wa-green-glow);
}

.form__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--wa-text-muted);
}

.form__error {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #c53030;
  font-weight: 500;
}

.form__group input.form__input--show-error {
  border-color: #c53030;
}

.form--success .form__group input,
.form--success .form__group select {
  border-color: var(--wa-green);
}

/* ===================== THANK YOU PAGE ===================== */

.thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 32px;
  background: linear-gradient(180deg, var(--wa-surface) 0%, var(--wa-bg-page) 100%);
}

.thankyou__card {
  max-width: 500px;
  text-align: center;
  background: var(--wa-surface-elevated);
  border-radius: var(--radius);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--wa-border);
}

.thankyou__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-teal));
  color: var(--wa-white);
  margin-bottom: 24px;
}

.thankyou__title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--wa-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.thankyou__text {
  color: var(--wa-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

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

.footer {
  padding: 56px 0;
  background: var(--wa-primary);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wa-white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__about {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 16px;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__badge {
  display: flex;
  justify-content: center;
  margin: 32px 0 24px;
}

/* ===================== THEME TOGGLE ===================== */

.theme-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--wa-text-muted);
  cursor: pointer;
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}

.theme-toggle:hover {
  color: var(--wa-text);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.theme-toggle__icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}

.theme-toggle__icon--moon {
  opacity: 1;
  transform: scale(1);
}

html.theme-light .theme-toggle__icon--moon {
  opacity: 0;
  transform: scale(0.8);
}

html.theme-light .theme-toggle__icon--sun {
  opacity: 1;
  transform: scale(1);
}

.theme-toggle svg {
  display: block;
}

/* ===================== FAQ (WhatsApp chat style) ===================== */

.faq {
  padding: 120px 0;
  background: var(--wa-bg-page);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.faq__title {
  color: var(--wa-text);
}

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

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  margin-bottom: 20px;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.faq__q-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-text-muted);
}

html.theme-light .hero {
  background: #E8F5E9;
}

html.theme-light .hero__title {
  color: #0a2e28;
}

html.theme-light .hero__highlight {
  background: linear-gradient(135deg, var(--wa-dark), var(--wa-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.theme-light .hero__subtitle {
  color: #2c4a44;
}

html.theme-light .hero__subtitle strong {
  color: #0a2e28;
}

html.theme-light .hero__badge {
  background: rgba(7, 94, 84, 0.1);
  border-color: rgba(7, 94, 84, 0.2);
  color: var(--wa-dark);
}

html.theme-light .hero__disclaimer {
  color: #4a6b64;
}

html.theme-light .btn--primary {
  background: var(--wa-dark);
  color: var(--wa-white);
  box-shadow: 0 6px 28px rgba(7, 94, 84, 0.25);
}

html.theme-light .btn--primary::before {
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 58%,
    transparent 75%
  );
}

html.theme-light .btn--primary:hover {
  box-shadow:
    0 12px 40px rgba(7, 94, 84, 0.3),
    0 0 24px rgba(7, 94, 84, 0.15);
}

html.theme-light .btn--secondary {
  color: var(--wa-dark);
  border-color: rgba(7, 94, 84, 0.3);
}

html.theme-light .btn--secondary:hover {
  border-color: rgba(7, 94, 84, 0.6);
  background: rgba(7, 94, 84, 0.08);
  box-shadow: 0 8px 32px rgba(7, 94, 84, 0.1);
}

html.theme-light .hero__stats {
  border-top-color: rgba(7, 94, 84, 0.15);
}

html.theme-light .hero__stat {
  color: #3d5e57;
}

html.theme-light .hero__stat strong {
  color: #0a2e28;
}

html.theme-light .hero__scroll-indicator span {
  border-color: rgba(7, 94, 84, 0.3);
}

html.theme-light .hero__scroll-indicator span::after {
  background: rgba(7, 94, 84, 0.6);
}

html.theme-light .hero__logo {
  filter: none;
  opacity: 1;
}

html.theme-light .faq__q-avatar {
  background: rgba(0, 0, 0, 0.06);
}

.faq__q-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--wa-text);
  transition: background 0.2s ease;
  max-width: 100%;
}

html.theme-light .faq__q-bubble {
  background: rgba(0, 0, 0, 0.06);
}

.faq__question:hover .faq__q-bubble {
  background: rgba(255, 255, 255, 0.12);
}

html.theme-light .faq__question:hover .faq__q-bubble {
  background: rgba(0, 0, 0, 0.09);
}

.faq__q-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.faq__q-time {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 0.65rem;
  color: var(--wa-text-muted);
  opacity: 0.6;
}

.faq__toggle-icon {
  flex-shrink: 0;
  color: var(--wa-text-muted);
  transition: transform 0.3s var(--ease-out);
}

.faq__toggle-icon svg {
  display: block;
}

.faq__toggle-v {
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}

.faq__item--open .faq__toggle-v {
  transform: scaleY(0);
  opacity: 0;
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s ease;
}

.faq__item--open .faq__answer {
  opacity: 1;
}

.faq__a-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
}

.faq__a-bubble {
  position: relative;
  max-width: 480px;
  border-radius: 16px;
  padding: 14px 18px 28px;
  background: #005C4B;
  color: #E9EDEF;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  border-top-right-radius: 4px;
}

html.theme-light .faq__a-bubble {
  background: linear-gradient(135deg, var(--wa-dark), var(--wa-teal));
  color: var(--wa-white);
}

.faq__a-text {
  white-space: pre-line;
}

.faq__a-time {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.faq__a-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--wa-surface);
}

.faq__a-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .faq {
    padding: 80px 0;
  }

  .faq__question {
    gap: 10px;
  }

  .faq__q-avatar {
    width: 36px;
    height: 36px;
  }

  .faq__q-bubble {
    padding: 10px 14px 24px;
  }

  .faq__q-text {
    font-size: 0.92rem;
  }

  .faq__a-bubble {
    padding: 12px 16px 26px;
    font-size: 0.9rem;
    max-width: 100%;
  }

  .faq__a-avatar {
    width: 36px;
    height: 36px;
  }

  .faq__a-wrap {
    gap: 10px;
  }
}

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

@media (max-width: 768px) {
  .about__circle-wrap {
    max-width: 520px;
    height: 520px;
  }

  .about__circle-wrap .about__card {
    width: 220px;
    margin-left: -110px;
    margin-top: -36px;
    padding: 12px 14px;
  }

  .about__circle-wrap .about__card--1 { transform: translate(0, -250px); }
  .about__circle-wrap .about__card--2 { transform: translate(195px, -155px); }
  .about__circle-wrap .about__card--3 { transform: translate(244px, 56px); }
  .about__circle-wrap .about__card--4 { transform: translate(107px, 224px); }
  .about__circle-wrap .about__card--5 { transform: translate(-105px, 226px); }
  .about__circle-wrap .about__card--6 { transform: translate(-244px, 56px); }
  .about__circle-wrap .about__card--7 { transform: translate(-195px, -155px); }
  .about__circle-wrap .about__card h3 { font-size: 0.88rem; }
  .about__circle-wrap .about__card p { font-size: 0.75rem; }

  .form__row {
    flex-direction: column;
    gap: 0;
  }

  .apply__form {
    padding: 28px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .chat__phone {
    width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 580px) {
  .about__circle-wrap {
    max-width: 380px;
    height: 380px;
  }

  .about__circle-wrap .about__card {
    width: 180px;
    margin-left: -90px;
    margin-top: -34px;
    padding: 10px 12px;
  }

  .about__circle-wrap .about__card--1 { transform: translate(0, -182px); }
  .about__circle-wrap .about__card--2 { transform: translate(142px, -114px); }
  .about__circle-wrap .about__card--3 { transform: translate(178px, 41px); }
  .about__circle-wrap .about__card--4 { transform: translate(78px, 163px); }
  .about__circle-wrap .about__card--5 { transform: translate(-76px, 165px); }
  .about__circle-wrap .about__card--6 { transform: translate(-178px, 41px); }
  .about__circle-wrap .about__card--7 { transform: translate(-142px, -114px); }
  .about__circle-wrap .about__card h3 { font-size: 0.82rem; }
  .about__circle-wrap .about__card p { font-size: 0.7rem; }
}

/* Mobile: drop heptagon, stack cards vertically */
@media (max-width: 640px) {
  .about__circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    max-width: none;
    min-height: 0;
    margin-bottom: 48px;
  }

  .about__circle-wrap .about__wheel,
  .about__circle-wrap .about__circle-lines {
    display: none;
  }

  .about__circle-wrap .about__card {
    position: static;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 16px;
    margin-left: auto;
    margin-top: 0;
    transform: none;
    padding: 16px 18px;
  }

  .about__circle-wrap .about__card:last-child {
    margin-bottom: 0;
  }

  .about__circle-wrap .about__card h3 {
    font-size: 1rem;
  }

  .about__circle-wrap .about__card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 16px 72px;
  }

  .hero__chat {
    display: none;
  }

  .hero__badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-height: 48px;
    min-width: 44px;
  }

  .btn--full {
    padding: 16px 28px;
  }

  .about {
    padding: 60px 0 80px;
  }

  .faq {
    padding: 60px 0 80px;
  }

  .apply {
    padding: 60px 0 80px;
  }

  .apply__form {
    padding: 24px 20px;
  }

  .form__group input,
  .form__group select {
    min-height: 48px;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .section__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

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

/* --- WhatsApp template preview (API oficial): include components/whatsapp-template-preview.html --- */
.wa-template-simple {
  max-width: 320px;
  margin: 16px 0 16px auto;
  text-align: left;
}

.wa-template-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

.wa-category-tag {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.wa-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wa-text-muted);
}

html.theme-light .wa-price {
  color: #1e293b;
}

.wa-message-bubble {
  background: #005c4b;
  border-radius: 8px;
  border-top-right-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wa-msg-header-image {
  width: 100%;
  max-height: 150px;
  overflow: hidden;
}

.wa-msg-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

.wa-msg-header-text {
  padding: 10px 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #e9edef;
  text-align: left;
}

.wa-msg-body {
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #e9edef;
  text-align: left;
}

.wa-msg-body strong {
  font-weight: 600;
  color: #fff !important;
}

.wa-msg-body em {
  font-style: italic;
}

.wa-msg-body del {
  text-decoration: line-through;
  opacity: 0.8;
}

.wa-msg-body .wa-var,
.wa-msg-body strong .wa-var,
.wa-msg-body em .wa-var {
  color: #7dd3fc !important;
  font-weight: 500;
}

.wa-msg-footer {
  padding: 0 12px 4px;
  font-size: 12px;
  color: #8696a0;
  text-align: left;
}

.wa-msg-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding: 0 8px 6px;
}

.wa-msg-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.wa-msg-check {
  opacity: 0.9;
}

.wa-msg-buttons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}

.wa-msg-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: #005c4b;
  border-radius: 8px;
  color: #53bdeb;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-msg-button:hover {
  background: #006d5b;
}

@media (max-width: 400px) {
  .wa-template-simple {
    max-width: 100%;
  }
}

/* ===================== SELO PAGE ===================== */

.selo-page {
  padding: 80px 24px 120px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.selo-page__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wa-text);
  margin-bottom: 12px;
}

.selo-page__subtitle {
  color: var(--wa-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.selo-page__preview {
  margin-bottom: 48px;
}

.selo-page__preview .founder-badge-link {
  display: inline-block;
}

.selo-page__actions {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}

.selo-page__copy-block h2 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wa-text);
  margin-bottom: 8px;
}

.selo-page__textarea {
  width: 100%;
  height: 180px;
  background: rgba(255, 255, 255, 0.04);
  color: #7ee787;
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: 8px;
  padding: 12px;
  font-family: monospace;
  font-size: 0.75rem;
  resize: vertical;
}

.selo-page__textarea--short {
  height: 100px;
  color: var(--wa-text-secondary);
}

.selo-page__textarea--prompt {
  min-height: 300px;
  height: 320px;
  color: var(--wa-text-secondary);
  line-height: 1.45;
  white-space: pre-wrap;
}

.selo-page__prompt-hint {
  font-size: 0.8rem;
  color: var(--wa-text-muted);
  margin: 0 0 10px;
  line-height: 1.45;
}

.selo-page__prompt-hint code {
  font-size: 0.78em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(37, 211, 102, 0.08);
}

.selo-page__btn {
  margin-top: 8px;
}

/* ===================== MEMBROS BADGE SECTION ===================== */

.membros-badge-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(37, 211, 102, 0.1);
}

.membros-badge-section__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 600px) {
  .membros-badge-section__inner {
    flex-direction: column;
    text-align: center;
  }
}

.membros-badge-section__badge {
  flex-shrink: 0;
}

.membros-badge-section__badge .founder-badge-link {
  display: inline-block;
}

.membros-badge-section__info {
  flex: 1;
}

.membros-badge-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wa-text);
  margin-bottom: 8px;
}

.membros-badge-section__text {
  color: var(--wa-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.membros-badge-section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Badge global styles */
.founder-badge-link {
  display: inline-block;
  text-decoration: none;
}

.founder-badge {
  filter: drop-shadow(0 0 18px rgba(37, 211, 102, 0.35)) drop-shadow(0 0 48px rgba(37, 211, 102, 0.12));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.founder-badge:hover {
  filter: drop-shadow(0 0 24px rgba(37, 211, 102, 0.55)) drop-shadow(0 0 64px rgba(37, 211, 102, 0.2));
  transform: scale(1.05);
}

/* Badge light mode */
html.theme-light .badge-pixel-grid circle {
  fill: #0d1117;
}

html.theme-light .badge-bottom-text {
  fill: #111b21;
}

html.theme-light .founder-badge {
  filter: drop-shadow(0 0 18px rgba(37, 211, 102, 0.25)) drop-shadow(0 0 48px rgba(37, 211, 102, 0.08));
}

html.theme-light .founder-badge:hover {
  filter: drop-shadow(0 0 24px rgba(37, 211, 102, 0.4)) drop-shadow(0 0 64px rgba(37, 211, 102, 0.15));
}

html.theme-light .selo-page__textarea {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a7f37;
}

html.theme-light .selo-page__textarea--short {
  color: #57606a;
}

html.theme-light .selo-page__textarea--prompt {
  color: #57606a;
}

html.theme-light .selo-page__prompt-hint {
  color: #656d76;
}

/* ===================== SELO MEMBROS PAGE ===================== */

.selo-membros {
  text-align: center;
}

.selo-membros__preview {
  margin-bottom: 40px;
}

.selo-membros__preview .founder-badge-link {
  display: inline-block;
}

.selo-membros__copy-block {
  text-align: left;
  margin-bottom: 32px;
}

.selo-membros__copy-block h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wa-text);
  margin-bottom: 8px;
}

.selo-membros__textarea {
  width: 100%;
  height: 160px;
  background: rgba(255, 255, 255, 0.04);
  color: #7ee787;
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: 8px;
  padding: 12px;
  font-family: monospace;
  font-size: 0.75rem;
  resize: vertical;
}

.selo-membros__textarea--short {
  height: 90px;
  color: var(--wa-text-muted);
}

.selo-membros__textarea--prompt {
  min-height: 280px;
  height: 300px;
  color: var(--wa-text-muted);
  line-height: 1.45;
  white-space: pre-wrap;
}

.selo-membros__prompt-hint {
  font-size: 0.8rem;
  color: var(--wa-text-muted);
  margin: 0 0 10px;
  line-height: 1.45;
}

.selo-membros__prompt-hint code {
  font-size: 0.78em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(37, 211, 102, 0.08);
}

.selo-membros__btn {
  margin-top: 8px;
}

html.theme-light .selo-membros__textarea {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a7f37;
}

html.theme-light .selo-membros__textarea--short {
  color: #57606a;
}

html.theme-light .selo-membros__textarea--prompt {
  color: #57606a;
}

html.theme-light .selo-membros__prompt-hint {
  color: #656d76;
}
