/* ===== PAGES.CSS — estilos das páginas internas ===== */

.site-page--light {
  background: var(--white);
  color: var(--black);
}

.site-page--light .nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}

.site-page--light .nav__links a {
  color: var(--gray-500);
}

.site-page--light .nav__links a:hover {
  color: var(--black);
  background: var(--gray-100);
}

.site-page--light .logo {
  color: var(--black);
}

.site-page--light .nav__toggle span {
  background: var(--black);
}

.site-page--light .page-hero,
.site-page--light .wp-services,
.site-page--light .plugin,
.site-page--light .page-cta,
.site-page--light .studio-about,
.site-page--light .studio-position {
  background-color: var(--white);
  color: var(--black);
}

.site-page--light .page-hero {
  background:
    linear-gradient(180deg, rgba(26,107,255,0.03) 0%, rgba(26,107,255,0) 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.site-page--light .wp-services,
.site-page--light .studio-about {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.site-page--light .plugin,
.site-page--light .page-cta,
.site-page--light .studio-position {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.site-page--light .page-hero .hero__grid,
.site-page--light .page-hero .hero__glow {
  display: none;
}

.site-page--light .page-hero__content h1,
.site-page--light .page-hero__content p,
.site-page--light .page-hero__eyebrow,
.site-page--light .page-hero__summary,
.site-page--light .page-hero__summary p,
.site-page--light .page-hero__summary-footer strong,
.site-page--light .page-hero__summary-list li,
.site-page--light .section-header h2,
.site-page--light .section-header p {
  color: var(--black);
}

.site-page--light .page-hero__content p,
.site-page--light .page-hero__eyebrow,
.site-page--light .page-hero__summary p,
.site-page--light .page-hero__summary-list li,
.site-page--light .section-header p {
  color: var(--gray-500);
}

.site-page--light .footer {
  background: #ffffff;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-150);
}

.site-page--light .footer__brand .logo,
.site-page--light .footer__nav-col strong,
.site-page--light .footer__bottom p {
  color: var(--black);
}

.site-page--light .footer__brand p,
.site-page--light .footer__nav-col a {
  color: var(--gray-500);
}

.site-page--light .footer__nav-col a:hover {
  color: var(--blue);
}

.nav__link--active {
  color: var(--blue) !important;
  background: rgba(26, 107, 255, 0.08) !important;
  font-weight: 500;
  border-radius: 100px;
}

/* ===== PAGE HERO (WordPress) ===== */
.page-hero {
  position: relative;
  padding: 146px 0 88px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(26,107,255,0.03) 0%, rgba(26,107,255,0) 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-bottom: 1px solid var(--gray-150);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26,107,255,0.03) 0%, rgba(26,107,255,0) 44%);
}

.page-hero .hero__grid {
  opacity: 0.32;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 82%);
}

.page-hero .hero__glow {
  opacity: 0.45;
  filter: blur(72px);
}

.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
  max-width: none;
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.page-hero__eyebrow a {
  transition: color var(--transition);
}

.page-hero__eyebrow a:hover {
  color: var(--blue);
}

.page-hero__content .section-label {
  margin-bottom: 18px;
}

.page-hero__content h1 {
  font-size: clamp(2.45rem, 4.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}

.page-hero__content p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 620px;
}

.page-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.page-hero__highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(26,107,255,0.14);
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

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

.page-hero__summary {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(26,107,255,0.12);
  box-shadow: 0 24px 64px rgba(7, 28, 68, 0.08);
  backdrop-filter: blur(14px);
}

.page-hero__summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(26,107,255,0.45), rgba(26,107,255,0));
}

.page-hero__summary .badge {
  margin-bottom: 16px;
}

.page-hero__summary-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.page-hero__summary p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.page-hero__summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.page-hero__summary-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.page-hero__summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue), var(--blue-mid));
  box-shadow: 0 0 0 4px rgba(26,107,255,0.08);
}

.page-hero__summary-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-150);
}

.page-hero__summary-footer strong {
  display: block;
  font-size: 0.94rem;
  color: var(--black);
  margin-bottom: 6px;
}

.page-hero--studio {
  background: #ffffff;
}

.page-hero--studio .page-hero__bg {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.99) 0%,
      rgba(255,255,255,0.985) 42%,
      rgba(255,255,255,0.94) 60%,
      rgba(255,255,255,0.72) 74%,
      rgba(255,255,255,0.24) 88%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/back/backstudio.png") right center / cover no-repeat;
}

.page-hero--studio .page-hero__inner {
  grid-template-columns: 1fr;
}

.page-hero--studio .page-hero__content {
  max-width: 920px;
  padding-left: 96px;
}

.page-hero--studio .page-hero__content h1 {
  max-width: 13.5ch;
  font-size: clamp(2.7rem, 4.8vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -2.2px;
}

.page-hero--studio .page-hero__content p {
  max-width: 700px;
}

.page-hero--wordpress .page-hero__inner {
  grid-template-columns: 1fr;
}

.page-hero--wordpress .page-hero__bg {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.99) 0%,
      rgba(255,255,255,0.985) 42%,
      rgba(255,255,255,0.94) 60%,
      rgba(255,255,255,0.72) 74%,
      rgba(255,255,255,0.24) 88%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/back/backwordpress.png") right center / cover no-repeat;
}

.page-hero--wordpress .page-hero__content {
  max-width: 920px;
  padding-left: 96px;
}

.page-hero--wordpress .page-hero__content h1 {
  max-width: 12.5ch;
  font-size: clamp(2.7rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -2px;
}

.page-hero--wordpress .page-hero__content p {
  max-width: 700px;
}

/* ===== WP SERVICES ===== */
.wp-services {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-top: 1px solid var(--gray-150);
  position: relative;
  overflow: hidden;
}

.wp-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
}

.wp-services__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.wp-services .section-header {
  position: relative;
  z-index: 1;
}

.wp-service {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: 24px;
  padding: 34px 36px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.wp-service::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-mid));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.wp-service:hover::after { transform: scaleY(1); }
.wp-service:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.wp-service--dark {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-color: rgba(26,107,255,0.14);
  background-image: radial-gradient(ellipse at top right, rgba(26,107,255,0.08) 0%, transparent 62%);
}

.wp-service--dark h3 { color: var(--black); }
.wp-service--dark p { color: var(--gray-500); }
.wp-service--dark .wp-service__list li { color: var(--gray-600); }
.wp-service--dark .wp-service__list li::before { background: var(--blue); }
.wp-service--dark .wp-service__num { color: rgba(26,107,255,0.35); }
.wp-service--dark .wp-service__icon { background: var(--blue-light); border-color: rgba(26,107,255,0.16); }
.wp-service--dark .wp-service__icon svg { color: var(--blue); }
.wp-service--dark .wp-service__tags span { background: rgba(26,107,255,0.06); color: var(--gray-600); border-color: rgba(26,107,255,0.12); }

.wp-service__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
}

.wp-service__icon {
  width: 52px; height: 52px;
  background: var(--gray-50);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wp-service__icon svg { width: 22px; height: 22px; color: var(--gray-600); }

.wp-service__num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.1em;
}

.wp-service__body h3 {
  grid-area: title;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--black);
  margin-bottom: 12px;
}

.wp-service__body > p {
  grid-area: desc;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 0;
}

.wp-service__list {
  grid-area: list;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--gray-150);
}

.wp-service__list li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.wp-service__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}

.wp-service__tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wp-service__tags span {
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--gray-50);
  color: var(--gray-500);
  border: 1px solid var(--gray-150);
  padding: 3px 10px;
  border-radius: 100px;
}

.wp-service__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-areas:
    "title list"
    "desc list"
    "tags list";
  column-gap: 36px;
  row-gap: 18px;
  align-items: start;
}

/* ===== PLUGIN ===== */
.plugin {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-top: 1px solid var(--gray-150);
  overflow: hidden;
}

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

.plugin__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,0.06) 0%, transparent 65%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  filter: blur(60px);
}

.plugin::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.plugin__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.plugin__content .badge {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(26,107,255,0.2);
}

.plugin__content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}

.plugin__content h2 .dot { color: var(--blue); }

.plugin__tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 14px;
}

.plugin__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
}

.plugin__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.plugin__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.plugin__feature:hover {
  background: var(--white);
  border-color: rgba(26,107,255,0.25);
  box-shadow: var(--shadow);
}

.plugin__feature svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.plugin__feature strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}

.plugin__feature p {
  font-size: 0.76rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Plugin mockup */
.plugin__mockup {
  background: #ffffff;
  border: 1px solid var(--gray-150);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.08);
  font-family: var(--font);
}

.plugin__mockup-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8fbff;
  border-bottom: 1px solid var(--gray-150);
}

.plugin__mockup-dots { display: flex; gap: 5px; }
.plugin__mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.plugin__mockup-dots span:nth-child(1) { background: #ff5f57; }
.plugin__mockup-dots span:nth-child(2) { background: #febc2e; }
.plugin__mockup-dots span:nth-child(3) { background: #28c840; }

.plugin__mockup-title {
  font-size: 0.68rem;
  color: var(--gray-400);
  margin: 0 auto;
}

.plugin__mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plugin__mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.plugin__mockup-stat {
  background: #ffffff;
  border: 1px solid var(--gray-150);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.plugin__mockup-stat--warn { border-color: rgba(210,153,34,0.3); background: rgba(210,153,34,0.08); }

.pms-label { font-size: 0.65rem; color: var(--gray-400); }
.pms-value { font-size: 0.8rem; font-weight: 600; color: var(--black); }

.pms-dot {
  position: absolute;
  top: 10px; right: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
}

.pms-dot--green { background: #3fb950; box-shadow: 0 0 6px rgba(63,185,80,0.5); }
.pms-dot--yellow { background: #d29922; box-shadow: 0 0 6px rgba(210,153,34,0.5); }

.plugin__mockup-section-title {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.plugin__mockup-log {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pml-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--gray-150);
}

.pml-item--warn { border-color: rgba(210,153,34,0.2); background: rgba(210,153,34,0.04); }

.pml-icon { font-size: 0.75rem; width: 16px; flex-shrink: 0; }
.pml-item--ok .pml-icon { color: #3fb950; }
.pml-item--warn .pml-icon { color: #d29922; }
.pml-item--info .pml-icon { color: #79c0ff; }

.pml-text { font-size: 0.75rem; color: var(--gray-600); flex: 1; }
.pml-time { font-size: 0.65rem; color: var(--gray-400); flex-shrink: 0; }

.plugin__mockup-bars { display: flex; flex-direction: column; gap: 10px; }

.plugin__mockup-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--gray-500);
}

.plugin__mockup-bar-item span:first-child { width: 72px; flex-shrink: 0; }
.plugin__mockup-bar-item span:last-child { width: 28px; text-align: right; flex-shrink: 0; color: var(--gray-600); }

.pmb-track {
  flex: 1;
  height: 5px;
  background: var(--gray-150);
  border-radius: 3px;
  overflow: hidden;
}

.pmb-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.pmb-fill--blue { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.pmb-fill--green { background: linear-gradient(90deg, #3fb950, #56d364); }

/* ===== PAGE CTA ===== */
.page-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  border-top: 1px solid var(--gray-150);
}

.page-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.page-cta__inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.page-cta__inner p {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}

.page-cta--dark {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-page--light .page-cta.page-cta--dark {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.page-cta--dark .page-cta__inner h2,
.page-cta--dark .page-cta__inner p {
  color: var(--white);
}

.page-cta--dark .page-cta__inner p {
  color: rgba(255,255,255,0.72);
}

.page-cta--dark .dot {
  color: var(--white);
}

.page-cta--dark .btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.page-cta--dark .btn--primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

.page-cta--dark .btn--primary svg {
  color: var(--white);
}

/* ===== STUDIO PAGE — usa page-hero e design padrão da home ===== */
.studio-waitlist-inline {
  display: flex;
  gap: 8px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-150);
  border-radius: var(--radius-sm);
  padding: 6px 6px 6px 18px;
  transition: border-color var(--transition);
  max-width: 480px;
}

.page-hero__summary .studio-waitlist-inline {
  max-width: none;
  margin-top: 18px;
  background: var(--white);
}

.studio-waitlist-inline:focus-within {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,255,0.08);
}

.studio-waitlist-inline input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--black);
  min-width: 0;
}

.studio-waitlist-inline input::placeholder { color: var(--gray-400); }

.studio-waitlist-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 10px;
}

/* ===== STUDIO ABOUT ===== */
.studio-about {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid var(--gray-150);
}

.studio-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.studio-about__card {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.studio-about__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.studio-about__card:hover::after { transform: scaleX(1); }
.studio-about__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}

.studio-about__icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.studio-about__icon svg { width: 20px; height: 20px; color: var(--blue); }

.studio-about__card h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  color: var(--black);
}

.studio-about__card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Studio position — agora usa fundo cinza claro, não preto */
.studio-position {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  border-top: 1px solid var(--gray-150);
}

.studio-position__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.studio-position__quote-icon {
  width: 48px; height: 48px;
  color: var(--blue);
  margin: 0 auto 24px;
}

.studio-position__inner blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

/* ===== RESPONSIVE PAGES ===== */
@media (max-width: 900px) {
  .page-hero {
    padding: 132px 0 72px;
  }
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-hero--studio .page-hero__bg {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.9) 48%,
        rgba(255,255,255,0.65) 72%,
        rgba(255,255,255,0.32) 100%
      ),
      url("../img/back/backstudio.png") center right / cover no-repeat;
  }
  .page-hero--studio .page-hero__content {
    padding-left: 0;
  }
  .page-hero--wordpress .page-hero__bg {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.9) 48%,
        rgba(255,255,255,0.65) 72%,
        rgba(255,255,255,0.32) 100%
      ),
      url("../img/back/backwordpress.png") center right / cover no-repeat;
  }
  .page-hero--wordpress .page-hero__content {
    padding-left: 0;
  }
  .page-hero__content,
  .page-hero--studio .page-hero__content,
  .page-hero--wordpress .page-hero__content {
    max-width: none;
  }
  .page-hero__highlights {
    gap: 8px;
  }
  .page-hero__highlights span {
    min-height: 36px;
  }
  .plugin__inner { grid-template-columns: 1fr; gap: 56px; }
  .studio-about__grid { grid-template-columns: repeat(2, 1fr); }
  .plugin__features { grid-template-columns: 1fr; }
  .wp-service { grid-template-columns: 1fr; gap: 20px; }
  .wp-service__aside { flex-direction: row; align-items: center; }
  .wp-service__body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "desc"
      "list"
      "tags";
    row-gap: 16px;
  }
  .wp-service__list {
    padding: 18px 0 0 0;
    border-left: none;
    border-top: 1px solid var(--gray-150);
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 104px 0 44px;
  }
  .page-hero__inner {
    gap: 18px;
  }
  .page-hero__bg {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.985) 0%,
        rgba(255,255,255,0.96) 44%,
        rgba(255,255,255,0.88) 72%,
        rgba(255,255,255,0.78) 100%
      ) !important;
  }
  .page-hero__content {
    padding: 22px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(26,107,255,0.08);
    box-shadow: 0 14px 42px rgba(8, 30, 73, 0.06);
    backdrop-filter: blur(10px);
  }
  .page-hero__eyebrow {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.7rem;
    flex-wrap: wrap;
  }
  .page-hero__content .section-label {
    margin-bottom: 14px;
  }
  .page-hero__content h1 {
    font-size: 2rem;
    line-height: 1.06;
    letter-spacing: -1.3px;
    margin-bottom: 16px;
  }
  .page-hero__content p {
    font-size: 0.92rem;
    line-height: 1.62;
    margin-bottom: 20px;
  }
  .page-hero--studio .page-hero__content h1 {
    max-width: none;
    font-size: 2.1rem;
    letter-spacing: -1.3px;
  }
  .page-hero--wordpress .page-hero__content h1 {
    max-width: none;
    font-size: 2.05rem;
    letter-spacing: -1.25px;
  }
  .page-hero__highlights {
    gap: 8px;
    margin-bottom: 22px;
  }
  .page-hero__actions .btn {
    width: 100%;
  }
  .page-hero__highlights span {
    width: auto;
    min-height: 34px;
    padding: 0 12px;
    justify-content: center;
    font-size: 0.75rem;
  }
  .wp-services,
  .plugin,
  .page-cta,
  .studio-about,
  .studio-position {
    padding: 72px 0;
  }
  .wp-service {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .wp-service__icon {
    width: 46px;
    height: 46px;
  }
  .wp-service__body h3 {
    font-size: 1.05rem;
  }
  .wp-service__body > p,
  .wp-service__list li {
    font-size: 0.84rem;
  }
  .plugin__content h2 {
    font-size: 2rem;
  }
  .plugin__tagline {
    font-size: 1rem;
  }
  .plugin__inner {
    gap: 36px;
  }
  .plugin__mockup {
    border-radius: 20px;
  }
  .studio-about__grid { grid-template-columns: 1fr; }
  .plugin__mockup-stats { grid-template-columns: 1fr; }
  .studio-waitlist-inline { flex-direction: column; padding: 12px; }
  .page-cta__inner {
    max-width: none;
  }
  .page-cta__inner h2 {
    font-size: 2rem;
    line-height: 1.12;
  }
  .page-cta__inner p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
}

/* ===== LEGAL ===== */
.page-hero--legal {
  padding-bottom: 56px;
}

.page-hero--legal .page-hero__inner {
  grid-template-columns: 1fr;
  gap: 0;
}

.page-hero--legal .page-hero__content {
  max-width: 760px;
}

.legal {
  padding: 32px 0 112px;
  background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}

.legal__inner {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.legal__meta {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.legal__meta-card {
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(26,107,255,0.1);
  box-shadow: var(--shadow-sm);
}

.legal__meta-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.legal__meta-card span,
.legal__meta-card a {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--gray-500);
}

.legal__meta-card a:hover {
  color: var(--blue);
}

.legal__content {
  display: grid;
  gap: 18px;
}

.legal__section {
  padding: 28px 30px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.legal__section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--black);
  margin-bottom: 12px;
}

.legal__section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-500);
}

.legal__section p + p {
  margin-top: 12px;
}

.legal__section a {
  color: var(--blue);
  font-weight: 500;
}

@media (max-width: 900px) {
  .legal__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal__meta {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-hero--legal {
    padding-bottom: 24px;
  }

  .legal {
    padding: 8px 0 72px;
  }

  .legal__meta {
    grid-template-columns: 1fr;
  }

  .legal__meta-card,
  .legal__section {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .legal__section h2 {
    font-size: 1.06rem;
  }

  .legal__section p,
  .legal__meta-card span,
  .legal__meta-card a {
    font-size: 0.9rem;
  }
}

/* ===== FAQ ===== */
.faq {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-top: 1px solid var(--gray-150);
  overflow: hidden;
}

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

.faq__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,0.06) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.faq .section-header {
  position: relative;
  z-index: 1;
}

.faq__grid {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--gray-150);
  transition: background var(--transition);
}

.faq__item:first-child {
  border-top: 1px solid var(--gray-150);
}

.faq__item[open] {
  background: rgba(26,107,255,0.02);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  width: 24px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.faq__item[open] .faq__num {
  opacity: 1;
}

.faq__text {
  flex: 1;
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
  line-height: 1.4;
  transition: color var(--transition);
}

.faq__item[open] .faq__text {
  color: var(--blue);
}

.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gray-300);
  transition: transform .25s, color var(--transition);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq__question:hover .faq__text { color: var(--blue); }
.faq__question:hover .faq__icon { color: var(--blue); }
.faq__question:hover .faq__num { opacity: 1; }

.faq__answer {
  padding: 0 0 1.5rem 2.5rem;
  color: var(--gray-500);
  font-size: .925rem;
  line-height: 1.75;
}

.faq__answer ul {
  margin: .6rem 0 .8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  list-style: none;
}

.faq__answer ul li {
  position: relative;
  padding-left: 14px;
}

.faq__answer ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}

.faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  font-size: .875rem;
  transition: gap var(--transition);
}

.faq__cta:hover { gap: 10px; }

@media (max-width: 640px) {
  .faq { padding: 72px 0; }
  .faq__question { padding: 1.1rem 0; }
  .faq__text { font-size: .925rem; }
  .faq__answer { padding-left: 2rem; }
}

/* ===== PAGE CTA — dark com glow/grid ===== */
.page-cta--dark {
  position: relative;
  overflow: hidden;
}

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

.page-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.page-cta__glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,0.18) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: glowPulse 8s ease-in-out infinite;
}

.page-cta--dark .page-cta__inner {
  position: relative;
  z-index: 1;
}

.page-cta--dark .section-label {
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.page-cta--dark .section-label::before {
  background: rgba(255,255,255,0.3);
}

.page-cta__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.page-cta__ghost {
  color: rgba(255,255,255,0.55) !important;
}

.page-cta__ghost:hover {
  color: rgba(255,255,255,0.9) !important;
}

/* ===== APP SECTION ===== */
.app-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #060a14 0%, #0a0e1a 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.app-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-section .section-label {
  color: rgba(255,255,255,0.4);
}

.app-section .section-label::before {
  background: rgba(255,255,255,0.3);
}

.app-section__content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.app-section__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.app-feature svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

.app-section__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.app-section__soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5) !important;
  border-color: rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.04) !important;
  cursor: default;
  pointer-events: none;
}

.app-section__soon-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.app-section__soon-text span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.app-section__soon-text strong {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── MOCKUP CELULAR ── */
.app-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.app-mockup__phone {
  position: relative;
  width: 260px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(26,107,255,0.15));
}

.app-mockup__frame {
  background: #111318;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 14px 10px 20px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 0 0 6px rgba(255,255,255,0.03);
}

/* Reflexo lateral */
.app-mockup__frame::before {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%;
  left: -1px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
  border-radius: 2px;
}

.app-mockup__notch {
  width: 80px; height: 26px;
  background: #111318;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.app-mockup__notch::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.08);
}

.app-mockup__notch::after {
  content: '';
  width: 36px; height: 5px;
  border-radius: 3px;
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.08);
}

.app-mockup__screen {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/17;
  position: relative;
}

.app-mockup__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.app-mockup__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.app-mockup__slide.is-active {
  opacity: 1;
}

.app-mockup__home-bar {
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* Botões laterais do celular */
.app-mockup__btn {
  position: absolute;
  background: #1a1d24;
  border-radius: 2px;
}

.app-mockup__btn--right {
  right: -3px; top: 28%;
  width: 3px; height: 52px;
}

.app-mockup__btn--left-1 {
  left: -3px; top: 22%;
  width: 3px; height: 32px;
}

.app-mockup__btn--left-2 {
  left: -3px; top: 36%;
  width: 3px; height: 52px;
}

/* Dots */
.app-mockup__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.app-mockup__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.app-mockup__dot.is-active {
  background: var(--blue);
  width: 20px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .app-section__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .app-mockup { order: -1; }
  .app-mockup__phone { width: 220px; }
}

@media (max-width: 640px) {
  .app-section { padding: 72px 0; }
  .app-section__actions { flex-direction: column; align-items: flex-start; }
}
