:root {
  --ink: #15131a;
  --muted: #625f6b;
  --line: #e7e1d8;
  --paper: #fffaf2;
  --white: #ffffff;
  --plum: #4f1f58;
  --wine: #8f2f54;
  --coral: #ef6c42;
  --amber: #f4b64a;
  --green: #1f9d62;
  --shadow: 0 24px 70px rgba(34, 23, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 242, 0.86);
  border-bottom: 1px solid rgba(231, 225, 216, 0.85);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-action,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action,
.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(21, 19, 26, 0.18);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.66fr);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px) 58px;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 182, 74, 0.28), transparent 25%),
    radial-gradient(circle at 78% 16%, rgba(143, 47, 84, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 250, 242, 0));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  align-self: center;
  max-width: 790px;
}

.eyebrow {
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.06;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.58;
  max-width: 660px;
}

.hero-actions,
.tool-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 44px 0 0;
  max-width: 660px;
  padding-top: 26px;
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  font-size: 30px;
  font-weight: 800;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 14px;
  margin: 3px 0 0;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}

.studio-panel {
  background:
    linear-gradient(145deg, rgba(79, 31, 88, 0.96), rgba(21, 19, 26, 0.98)),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--white);
  min-height: 470px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  width: min(100%, 430px);
}

.studio-panel::after {
  background: linear-gradient(90deg, transparent, rgba(244, 182, 74, 0.5), transparent);
  content: "";
  height: 1px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 70%;
}

.vu-meter {
  align-items: end;
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(8, 1fr);
  height: 138px;
}

.vu-meter span {
  background: linear-gradient(180deg, var(--amber), var(--coral));
  border-radius: 999px 999px 6px 6px;
  display: block;
  height: var(--level);
}

.mic-orbit {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: flex;
  height: 188px;
  justify-content: center;
  margin: 34px auto 22px;
  width: 188px;
}

.mic {
  background: linear-gradient(180deg, #ffffff, #d7d1c8);
  border-radius: 999px 999px 34px 34px;
  height: 98px;
  position: relative;
  width: 60px;
}

.mic::before,
.mic::after {
  background: var(--white);
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.mic::before {
  border-radius: 999px;
  bottom: -18px;
  height: 12px;
  width: 105px;
}

.mic::after {
  bottom: -88px;
  height: 78px;
  width: 8px;
}

.mic span {
  background: linear-gradient(180deg, var(--amber), var(--coral));
  border-radius: 999px;
  display: block;
  height: 100%;
  width: 100%;
}

.waveform {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: 48px 20px 0 auto;
  width: 148px;
}

.waveform span {
  animation: pulse 1.25s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  display: block;
  height: 34px;
  width: 6px;
}

.waveform span:nth-child(2),
.waveform span:nth-child(5) {
  animation-delay: 120ms;
  height: 58px;
}

.waveform span:nth-child(3),
.waveform span:nth-child(4) {
  animation-delay: 240ms;
  height: 82px;
}

.studio-panel p {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  left: 26px;
  line-height: 1.45;
  margin: 0;
  max-width: 180px;
  position: absolute;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.7);
  }
  50% {
    transform: scaleY(1.12);
  }
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-intro {
  max-width: 740px;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-intro.center {
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro.compact {
  margin-bottom: 34px;
  max-width: 640px;
}

.trust-band {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
  padding-top: 0;
}

.trust-band div {
  background: rgba(255, 255, 255, 0.05);
  padding: 34px;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 8px;
}

.split {
  display: grid;
  gap: 34px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card,
.steps article,
.info-grid article,
.package-tool {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(34, 23, 12, 0.07);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
}

.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-10px);
}

.price-card.package-card {
  background: #f2fff7;
  border-color: rgba(31, 157, 98, 0.28);
}

.price-card p {
  color: var(--muted);
  line-height: 1.62;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.card-kicker {
  color: var(--wine) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.featured .card-kicker {
  color: var(--amber) !important;
}

.package-card .card-kicker {
  color: var(--green) !important;
}

.price-card strong {
  display: block;
  font-size: 42px;
  margin: auto 0 22px;
}

.card-button {
  background: var(--wine);
  color: var(--white);
  width: 100%;
}

.featured .card-button {
  background: var(--amber);
  color: var(--ink);
}

.package-card .card-button {
  background: var(--green);
  color: var(--white);
}

.package-card strong {
  color: var(--green);
  font-size: 34px;
}

.process {
  background: #f3eee6;
}

.voice-section {
  background: #fff6ec;
}

.reels-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 1180px;
}

.reel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(34, 23, 12, 0.07);
  min-height: 520px;
  overflow: hidden;
  padding: 8px;
}

.reel-card .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  width: 100% !important;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article {
  padding: 28px;
}

.steps span {
  color: var(--coral);
  display: block;
  font-weight: 800;
  margin-bottom: 34px;
}

.steps p,
.info-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.packages {
  background: var(--white);
}

.package-tool {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr minmax(280px, 0.6fr);
  margin-top: 34px;
  padding: 24px;
}

.package-note {
  background: #f2fff7;
  border: 1px solid rgba(31, 157, 98, 0.24);
  border-left: 5px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(34, 23, 12, 0.06);
  margin: 30px 0 0;
  max-width: 880px;
  padding: 20px 22px;
}

.package-note strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.package-note p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.tool-controls {
  align-content: start;
  margin-top: 0;
}

.tool-controls label {
  color: var(--muted);
  display: grid;
  flex: 1 1 230px;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

select {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  min-height: 52px;
  padding: 0 16px;
}

.package-result {
  background: var(--ink);
  border-radius: 10px;
  color: var(--white);
  padding: 24px;
}

.package-result span {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-result strong {
  display: block;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.package-result p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.map-section {
  background: #1d1721;
  color: var(--white);
}

.map-section .section-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.map-section .eyebrow {
  color: var(--amber);
}

.map-frame {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1120px;
  overflow: hidden;
  padding: 8px;
}

.map-frame iframe {
  border: 0;
  border-radius: 9px;
  display: block;
  height: 560px;
  width: 100%;
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-grid article {
  padding: 24px;
}

.final-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--wine), var(--coral));
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(46px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

.float-whatsapp {
  background: var(--green);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 16px 34px rgba(31, 157, 98, 0.32);
  color: var(--white);
  font-weight: 800;
  padding: 14px 18px;
  position: fixed;
  right: 20px;
  z-index: 25;
}

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

  .hero,
  .package-tool {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .pricing-grid,
  .reels-grid,
  .steps,
  .trust-band,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .info-grid {
    padding-top: 58px;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .header-action {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .studio-panel {
    min-height: 500px;
    padding: 22px;
  }

  .mic-orbit {
    height: 184px;
    width: 184px;
  }

  .waveform {
    margin: 42px 14px 0 auto;
    width: 118px;
  }

  .waveform span {
    width: 5px;
  }

  .studio-panel p {
    bottom: 22px;
    left: 22px;
    max-width: 170px;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-frame iframe {
    height: 460px;
  }
}
