﻿:root {
  --bg: #fdf7f8;
  --bg-soft: #fff0f2;
  --surface: #ffffff;
  --surface-alt: #fff8f9;
  --line: #efdde1;
  --line-strong: #e6c7ce;
  --text: #2d1f24;
  --muted: #745f67;
  --accent: #FF5965;
  --accent-2: #dc3f4b;
  --accent-soft: #ffe8eb;
  --success: #0f766e;
  --shadow-lg: 0 24px 60px rgba(13, 34, 79, 0.12);
  --shadow-md: 0 12px 30px rgba(13, 34, 79, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 650px at 100% -120px, #ffe4ea 0%, rgba(255, 228, 234, 0) 62%),
    radial-gradient(700px 420px at -120px 220px, #fff2e8 0%, rgba(255, 242, 232, 0) 72%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(17, 32, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 58, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

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

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

.blob {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.35;
}

.blob-1 {
  top: -220px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: #ffd8de;
}

.blob-2 {
  bottom: -260px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: #ffeede;
}

.page {
  position: relative;
  z-index: 2;
  padding-top: 84px;
}

.nav {
  position: fixed;
  top: 16px;
  left: 20px;
  right: 20px;
  height: 68px;
  border-radius: 999px;
  border: 1px solid rgba(17, 32, 58, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(13, 34, 79, 0.08);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #2d1f24;
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

@media (max-width: 760px) {
  .nav-logo-img {
    height: 22px;
  }
  .logo-dot {
    display: none;
  }
}

@media (max-width: 380px) {
  .nav-logo-img {
    height: 20px;
  }
}

.logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #ff7680);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(255, 89, 101, 0.26);
}

.nav-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta-text-short {
  display: none;
}

@media (max-width: 760px) {
  .nav-cta-text-short {
    display: inline;
  }
}

.bh-cta svg,
.footer-insta-profile svg {
  margin-left: 4px;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 89, 101, 0.34);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-image-bg {
  position: relative;
  max-width: 1380px;
  width: calc(100% - 24px);
  margin: 0 auto;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: 640px;
  background-image: url("assets/hero-blob.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(255, 89, 101, 0.22);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 8, 12, 0.18) 0%, rgba(20, 8, 12, 0.55) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(20, 8, 12, 0.30) 0%, rgba(20, 8, 12, 0) 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 28px;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-bg .hero-title-light,
.hero h1.hero-title-light {
  margin-top: 20px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(20, 8, 12, 0.35);
}

.hero-title-light .rotator,
.hero-title-light .rotator-dot {
  color: #FF5965;
  text-shadow: 0 2px 24px rgba(255, 89, 101, 0.55);
  -webkit-text-fill-color: currentColor;
  background: none;
}

.hero-badge-light {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge-light .hb-pulse {
  background: #5ee9b5;
  box-shadow: 0 0 0 4px rgba(94, 233, 181, 0.22);
}

.btn-on-image {
  background: #fff;
  color: var(--accent-2);
  box-shadow: 0 14px 30px rgba(20, 8, 12, 0.25);
}

.btn-on-image:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(20, 8, 12, 0.32);
}

.btn-on-image-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-on-image-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 760px) {
  .hero-image-bg {
    min-height: 540px;
    border-radius: 22px;
  }
  .hero-content {
    padding: 56px 22px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
}

.hero-badge b {
  color: var(--text);
  font-weight: 700;
}

.hb-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.16);
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero h1 {
  margin-top: 22px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(34px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #2d1f24;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-2);
}

.rotator-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.rotator {
  display: inline-block;
  color: var(--accent);
  min-width: 1ch;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.rotator.out {
  opacity: 0;
  transform: translateY(16px);
}

.rotator-dot {
  color: var(--accent);
}

.hero-sub {
  margin-top: 20px;
  max-width: 760px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary,
.btn-ghost,
.plan-btn,
.portfolio-cta,
.bh-cta,
.plan-back-btn,
.plan-flip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-primary,
.plan-btn {
  background: linear-gradient(120deg, var(--accent), #ff7680);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 89, 101, 0.28);
}

.btn-primary:hover,
.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 89, 101, 0.34);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #e0acb5;
  background: #fff;
}

.hero-pillars {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  padding: 18px 22px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 34, 79, 0.04);
}

.pillar {
  min-width: 130px;
  text-align: center;
}

.pillar b {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #2d1f24;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pillar span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.pillar-sep {
  width: 1px;
  align-self: center;
  height: 32px;
  background: var(--line);
}

.hero-scroll {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8c737a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
}

.scroll-line {
  width: 34px;
  height: 1px;
  background: #e0acb5;
}

.clients-section {
  max-width: 1160px;
  margin: 72px auto 0;
  padding: 8px 24px 0;
}

#planos {
  padding-top: 92px;
}

.clients-label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #8c737a;
  margin-bottom: 16px;
  font-weight: 700;
}

.clients-track-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clientsMarquee 38s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-group {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.client-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px 10px 16px;
  font-size: 13px;
  color: #2d1f24;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.client-item:hover {
  transform: translateY(-2px);
  border-color: #e0acb5;
  box-shadow: 0 8px 18px rgba(255, 89, 101, 0.14);
}

.ci-arrow {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ci-arrow svg {
  width: 17px;
  height: 17px;
}

.client-item:hover .ci-arrow {
  opacity: 1;
  transform: scale(1.08);
}

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

section {
  padding: 64px 24px;
  position: relative;
}

.section-inner,
.portfolio-header,
.behance-grid,
.cta-box,
.footer-top,
.footer-insta,
.footer-bot {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: #8c737a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 18px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(30px, 5.4vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #2d1f24;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-sub {
  margin-top: 16px;
  max-width: 670px;
  font-size: 17px;
  color: var(--muted);
}

.services {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.service-num {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 22px;
  color: #2d1f24;
}

.service-tag {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-2);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service h3 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.service p {
  font-size: 14px;
  color: var(--muted);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  color: #2d1f24;
  position: relative;
  padding-left: 16px;
}

.service-list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0;
  top: 8px;
  background: var(--accent);
}

.service-badge {
  margin-top: auto;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #ecd4d9;
  background: #fff3f5;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-avulso {
  background: #ecfdf3;
  border-color: #b7e4c8;
  color: #0d6e4c;
}

.credit-table {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ct-head {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fff3f5, #fff2f4);
}

.ct-head span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8c737a;
}

.ct-rows {
  list-style: none;
}

.ct-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.ct-label strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

.ct-label span {
  font-size: 13px;
  color: var(--muted);
}

.ct-cost {
  min-width: 95px;
  text-align: right;
}

.ct-cost b {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: var(--accent-2);
}

.cost-word {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ct-foot {
  padding: 18px 22px;
  font-size: 14px;
  color: #2d1f24;
  background: #fff6f8;
}

.plans-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-flip {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
}

.plan-card {
  grid-area: stack;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.plan-front {
  opacity: 1;
  transform: none;
  z-index: 2;
}

.plan-back {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  pointer-events: none;
  z-index: 1;
}

.plan-flip.flipped .plan-front {
  opacity: 0;
  transform: translateY(-14px) scale(0.985);
  pointer-events: none;
  z-index: 1;
}

.plan-flip.flipped .plan-back {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .plan-card {
    transition: opacity 0.2s ease;
  }
  .plan-back,
  .plan-flip.flipped .plan-front {
    transform: none;
  }
}

.featured {
  border-color: #f0bcc4;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 89, 101, 0.16), rgba(255, 89, 101, 0) 54%),
    #ffffff;
}

.plan-badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-name {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-tagline {
  color: var(--muted);
  font-size: 13px;
}

.plan-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pc-num {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 62px;
  line-height: 1;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 72px;
}

.pc-unit {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-from {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.pp-val {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 34px;
  line-height: 1;
}

.pp-per {
  font-size: 13px;
  color: #8c737a;
}

.plan-front-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #2d1f24;
}

.plan-front-list li {
  border-bottom: 1px dashed #f1dfe3;
  padding-bottom: 8px;
}

.plan-btn {
  margin-top: auto;
}

.plan-flip-btn,
.plan-back-btn {
  border: 1px solid #b7e4c8;
  color: #0d6e4c;
  background: #ecfdf3;
}

.plan-flip-btn:hover,
.plan-back-btn:hover {
  border-color: #86cfa4;
  background: #dcfaea;
  color: #0a5a3e;
  transform: translateY(-1px);
}

.plan-flip-btn:active,
.plan-back-btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}

.plan-flip-btn span,
.plan-back-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-flip-btn:hover span {
  transform: rotate(45deg);
}

.plan-back-btn:hover span {
  transform: translateX(-3px);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #2d1f24;
  position: relative;
  padding-left: 14px;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.plan-features li.off::before {
  background: #d6c1c5;
}

.plan-features small {
  display: block;
  color: var(--muted);
  margin-top: 1px;
}

.feat-dim {
  color: #8c737a;
}

.plan-math {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fff5f7;
}

.pm-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8c737a;
  margin-bottom: 4px;
  font-weight: 700;
}

.pm-text {
  font-size: 13px;
  color: #2d1f24;
}

.plan-highlight {
  border-left: 3px solid #16a34a;
  padding-left: 10px;
  font-size: 13px;
  color: #0d6e4c;
  font-weight: 600;
}

.plans-foot {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.calc-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.calc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.calc-pop {
  border-color: #f0bcc4;
  background: linear-gradient(180deg, #fffafc, #fff0f2);
}

.calc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calc-name {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 24px;
}

.calc-tag {
  font-size: 11px;
  color: #8c737a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.calc-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #2d1f24;
}

.calc-row b {
  font-family: 'Sora', 'Manrope', sans-serif;
  color: #2d1f24;
}

.calc-arrow {
  border-color: #f0bcc4;
  background: #fff0f2;
}

.calc-save {
  margin-top: 4px;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(120deg, #0d6e4c, #16a34a);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.22);
}

.calc-save span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 700;
}

.calc-save b {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 29px;
  line-height: 1.05;
  margin: 5px 0;
}

.calc-save small {
  font-size: 12px;
  opacity: 0.9;
}

.avulso-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.avulso-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: var(--shadow-md);
}

.avulso-featured {
  border-color: #f0bcc4;
  background:
    radial-gradient(90% 75% at 100% 0%, rgba(255, 89, 101, 0.1), rgba(255, 89, 101, 0) 58%),
    #fff;
}

.av-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: linear-gradient(145deg, #fff5f6, #ffe3e8);
  border: 1px solid #ffd7dd;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 10px rgba(255, 89, 101, 0.12);
}

.av-icon svg {
  width: 24px;
  height: 24px;
}

.av-name {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 17px;
}

.av-desc {
  font-size: 13px;
  color: var(--muted);
}

.av-price {
  margin-top: auto;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #2d1f24;
}

.av-price small {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
}

.av-pay {
  font-size: 12px;
  color: #2d1f24;
  border: 1px dashed #ecd4d9;
  border-radius: 999px;
  padding: 5px 9px;
  text-align: center;
}

#portfolio {
  padding-top: 64px;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px;
  text-align: center;
}

.portfolio-header > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.portfolio-header .section-title {
  text-align: center;
}

.portfolio-header .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 560px;
}

.portfolio-cta,
.bh-cta {
  border: 1px solid var(--line-strong);
  color: var(--accent-2);
  background: #fff;
}

.portfolio-cta:hover,
.bh-cta:hover {
  transform: translateY(-2px);
  border-color: #e0acb5;
}

.behance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bh-card-full {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #ffffff, #fff6f8);
  box-shadow: var(--shadow-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bh-card-full:hover {
  transform: translateY(-3px);
  border-color: #e0acb5;
  box-shadow: 0 20px 40px rgba(255, 89, 101, 0.16);
}

.bh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8c737a;
  font-weight: 700;
}

.bh-title {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 0.95;
}

.bh-title em {
  color: var(--accent);
  font-style: normal;
}

.bh-desc {
  color: var(--muted);
  font-size: 14px;
}

.bh-cta {
  width: fit-content;
}

.socios-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.socio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.socio-card:hover {
  transform: translateY(-3px);
  border-color: #e0acb5;
  box-shadow: 0 20px 40px rgba(255, 89, 101, 0.14);
}

.socio-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(14, 31, 61, 0.18);
  margin-bottom: 16px;
}

.socio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.socios-grid .socio-card:first-child .socio-avatar img {
  object-position: center 38%;
}

.socio-name {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 23px;
}

.socio-role {
  color: #8c737a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.socio-bio {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.socio-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socio-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8c737a;
  font-weight: 700;
}

.socio-link {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.01em;
  align-self: flex-start;
  transition: gap 0.2s ease, color 0.2s ease;
  width: 100%;
}

.socio-link svg {
  transition: transform 0.2s ease;
}

.socio-link:hover {
  color: var(--accent);
}

.socio-link:hover svg {
  transform: translate(2px, -2px);
}

.agency-section {
  padding-top: 64px;
}

.agency-box {
  border: 1px solid #f3b4be;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #ff5965 0%, #dc3f4b 100%);
  color: #fff6f8;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  box-shadow: 0 22px 50px rgba(14, 43, 109, 0.35);
}

.agency-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
}

.agency-title {
  margin-top: 16px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(34px, 4.7vw, 56px);
  line-height: 0.95;
}

.agency-title em {
  color: #ffd2d8;
  font-style: normal;
}

.agency-box p {
  margin-top: 14px;
  color: rgba(241, 247, 255, 0.88);
}

.agency-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agency-list li {
  font-size: 14px;
  color: rgba(241, 247, 255, 0.92);
  padding-left: 14px;
  position: relative;
}

.agency-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffd2d8;
  position: absolute;
  left: 0;
  top: 9px;
}

.agency-list b {
  color: #fff;
}

.agency-box .btn-primary {
  background: #fff;
  color: #bc3e4a;
  box-shadow: none;
}

.agency-box .btn-primary:hover {
  box-shadow: 0 14px 28px rgba(8, 24, 62, 0.25);
}

.agency-right {
  display: grid;
  gap: 12px;
  align-content: center;
}

.agency-stat {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.agency-stat b {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.agency-stat span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241, 247, 255, 0.8);
}

.faq {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #2d1f24;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--muted);
}

.faq-body {
  padding: 0 18px 18px;
}

.faq-body p {
  padding: 0;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

.faq-list {
  list-style: none;
  display: grid;
  gap: 6px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.faq-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}

.faq-list li:last-child {
  border-bottom: 0;
}

.faq-list strong {
  color: #2d1f24;
  font-weight: 700;
}

.faq-list span {
  color: var(--muted);
  font-size: 12.5px;
  text-align: right;
}

.faq-list .faq-cost {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

#contato {
  padding-top: 64px;
  padding-bottom: 80px;
}

.cta-box {
  border: 1px solid #f3b4be;
  border-radius: var(--radius-xl);
  padding: 34px;
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(255, 89, 101, 0.16), rgba(255, 89, 101, 0) 56%),
    #ffffff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-box h2 {
  margin-top: 18px;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.cta-box h2 em {
  color: var(--accent);
  font-style: normal;
}

.cta-box p {
  margin: 16px auto 0;
  max-width: 700px;
  font-size: 16px;
  color: var(--muted);
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-meta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cta-meta > div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #fff4f6;
}

.cta-meta b {
  display: block;
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 29px;
  line-height: 1;
  color: var(--accent-2);
}

.cta-meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8c737a;
  font-weight: 700;
}

footer {
  padding: 0 24px 34px;
}

.footer-top {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 28px;
  display: inline-flex;
  align-items: center;
}

.footer-logo span {
  color: var(--accent);
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 760px) {
  .footer-logo-img {
    height: 30px;
  }
}

.footer-tag {
  font-size: 12px;
  color: var(--muted);
}

.footer-seo {
  margin-top: 8px;
  max-width: 480px;
  font-size: 12px;
  color: #a08e93;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-nav a {
  font-size: 13px;
  color: #8c737a;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-insta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: #8c737a;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-insta-icon:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-insta {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.footer-insta-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-insta-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c737a;
}

.footer-insta-title {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: 32px;
  line-height: 0.95;
}

.footer-insta-profile {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-2);
  background: #fff;
}

.footer-insta-profile:hover {
  border-color: #e0acb5;
  color: var(--accent);
}

.footer-insta-frame {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #fff5f7;
}

.footer-insta-embed {
  margin: 0 auto !important;
  width: 100% !important;
  min-width: 280px !important;
  max-width: 540px !important;
}

.insta-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 14px;
  gap: 10px;
}

.insta-fallback p {
  color: var(--muted);
  font-size: 13px;
}

.insta-fallback a {
  color: var(--accent);
  font-weight: 700;
}

.footer-bot {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #8c737a;
  font-size: 12px;
}

.whatsapp-float,
.agency-float {
  position: fixed;
  bottom: 26px;
  z-index: 90;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(10, 27, 58, 0.22);
}

.whatsapp-float {
  right: 24px;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.agency-float {
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e6c7ce;
  background: rgba(255, 255, 255, 0.95);
  color: #2d1f24;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 16px;
}

.agency-float svg {
  color: var(--accent-2);
}

.whatsapp-float:hover,
.agency-float:hover {
  transform: translateY(-2px);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 30px));
  border: 1px solid #e6c7ce;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 28px 50px rgba(8, 26, 61, 0.34);
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #8c737a;
}

.modal-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8c737a;
  margin-bottom: 10px;
}

.modal-header h3 {
  font-family: 'Sora', 'Manrope', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 0.95;
}

.modal-body {
  margin-top: 12px;
  color: var(--muted);
}

.modal-body b {
  color: var(--accent);
}

.modal-list {
  list-style: none;
  margin: 16px 0 20px;
  display: grid;
  gap: 8px;
}

.modal-list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  background: #fff6f8;
  color: #2d1f24;
  font-size: 13px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-actions .btn-primary,
.modal-actions .btn-ghost {
  flex: 1;
}

section:not(#agencia):not(#contato) > .section-inner > .section-label,
.portfolio-header > div > .section-label {
  margin-left: auto;
  margin-right: auto;
  display: table;
}

section:not(#agencia):not(#contato) > .section-inner > .section-title,
section:not(#agencia):not(#contato) > .section-inner > .section-sub,
.portfolio-header {
  text-align: center;
}

section:not(#agencia):not(#contato) > .section-inner > .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.star-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.trail-star {
  position: fixed;
  pointer-events: none;
  font-size: 9px;
  line-height: 1;
  color: #FF5965;
  transform: translate(-50%, -50%);
  animation: trail-fade 0.7s ease-out forwards;
  text-shadow: 0 0 6px rgba(255, 89, 101, 0.6);
}

@keyframes trail-fade {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4) translateY(8px); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

img.emoji {
  width: 1em;
  height: 1em;
  margin: 0 0.04em;
  vertical-align: -0.12em;
}

.click-star {
  display: none;
}

@media (max-width: 1180px) {
  .nav {
    left: 12px;
    right: 12px;
  }

  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid,
  .calc-grid,
  .avulso-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .pillar-sep {
    display: none;
  }

  .hero-pillars {
    gap: 12px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: center;
  }

  .behance-grid,
  .socios-grid,
  .cta-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page {
    padding-top: 74px;
  }

  .nav {
    height: 58px;
    padding: 0 14px;
  }

  .nav-logo {
    font-size: 17px;
  }

  .nav-cta {
    font-size: 10px;
    padding: 9px 12px;
  }

  .nav-cta-text-full {
    display: none;
  }


  .hero,
  section {
    padding: 52px 18px;
  }

  .agency-section {
    padding-top: 52px;
  }

  #portfolio,
  #planos,
  #avulsos,
  #quem-faz,
  #faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .clients-section {
    margin-top: 40px;
  }

  .plans-foot {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
  }

  .services,
  .plans-grid,
  .calc-grid,
  .avulso-grid,
  .socios-grid,
  .behance-grid {
    grid-template-columns: 1fr;
  }

  .agency-box {
    grid-template-columns: 1fr;
  }

  .plan-flip {
    min-height: 0;
    perspective: none;
  }

  .ct-rows li {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-cost {
    text-align: left;
  }

  .footer-top,
  .footer-bot {
    flex-direction: column;
  }

  .agency-float,
  .whatsapp-float {
    bottom: 16px;
  }

  .agency-float {
    left: 14px;
    font-size: 10px;
    padding: 9px 11px;
  }

  .whatsapp-float {
    right: 14px;
    width: 52px;
    height: 52px;
  }

  .modal-panel {
    padding: 18px;
  }
}




