:root {
  --black: #0b0c0f;
  --black-soft: #15171c;
  --white: #ffffff;
  --off-white: #f4f1eb;
  --gray: #6f7279;
  --line: rgba(17, 18, 22, 0.12);
  --gold: #f2b632;
  --gold-dark: #a36d00;
  --green: #9be3b5;
  --red: #ffb0a9;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.84rem;
}

.button--primary {
  color: #19140b;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(242, 182, 50, 0.22);
}

.button--primary:hover {
  background: #ffc84d;
}

.button--outline,
.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.button--outline:hover,
.button--ghost:hover {
  color: var(--black);
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--black);
}

.button--full {
  width: 100%;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 15%, rgba(242, 182, 50, 0.14), transparent 35%),
    linear-gradient(140deg, #08090b 0%, #15171c 100%);
  padding: 82px 0 92px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.hero__content {
  padding-top: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--gold-dark);
}

.hero h1 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.hero h1 strong {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.hero__lead {
  max-width: 700px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.hero__support {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

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

.hero__microcopy {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 670px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  color: var(--white);
  font-size: 1.8rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.form-card {
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 34px;
}

.form-card__tag {
  display: inline-flex;
  padding: 6px 10px;
  color: #795300;
  background: rgba(242, 182, 50, 0.17);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-card h2 {
  margin-top: 15px;
  font-size: 1.75rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.form-card > p {
  margin-top: 10px;
  color: var(--gray);
  font-size: 0.9rem;
}

.form {
  margin-top: 16px;
}

.form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.77rem;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--black);
  background: #faf9f7;
  border: 1px solid #dedbd4;
  border-radius: 12px;
  outline: none;
  transition: 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  background: var(--white);
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(242, 182, 50, 0.13);
}

.form textarea {
  resize: vertical;
}

.form__notice {
  margin: 18px 0;
  padding: 14px 15px;
  color: #5d4817;
  background: #fff8e6;
  border: 1px solid #f1d995;
  border-radius: 12px;
  font-size: 0.78rem;
}

.form__privacy {
  margin-top: 11px;
  color: #898c92;
  font-size: 0.7rem;
  text-align: center;
}

.section {
  padding: 104px 0;
}

.section--light {
  background: var(--off-white);
}

.section--dark {
  color: var(--white);
  background: var(--black);
}

.section-heading {
  max-width: 820px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.final-cta h2 {
  margin-top: 16px;
  font-size: clamp(2.25rem, 4.5vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading h2 strong {
  display: block;
}

.section-heading p {
  margin-top: 20px;
  color: var(--gray);
  font-size: 1.02rem;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.62);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  min-height: 290px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature__number {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.feature h3 {
  margin-top: 48px;
  font-size: 1.35rem;
}

.feature p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 0.9rem;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 58px auto 36px;
}

.comparison__card {
  min-height: 330px;
  padding: 38px;
  border-radius: var(--radius-lg);
}

.comparison__card--muted {
  background: #e7e3dc;
}

.comparison__card--featured {
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.comparison__tag {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison__card--featured .comparison__tag {
  background: rgba(255, 255, 255, 0.1);
}

.comparison h3 {
  margin-top: 26px;
  font-size: 1.9rem;
  line-height: 1.16;
}

.comparison p {
  margin-top: 18px;
  color: var(--gray);
}

.comparison__card--featured p {
  color: rgba(255, 255, 255, 0.67);
}

.center {
  text-align: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 54px auto 0;
}

.fit-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
}

.fit-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 800;
}

.fit-card--yes .fit-card__icon {
  color: #183d27;
  background: var(--green);
}

.fit-card--no .fit-card__icon {
  color: #581f1f;
  background: var(--red);
}

.fit-card h3 {
  margin-top: 22px;
  font-size: 1.45rem;
}

.fit-card ul {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
}

.fit-card li {
  position: relative;
  padding-left: 18px;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 999px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  min-height: 290px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step span {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.step h3 {
  margin-top: 48px;
  font-size: 1.35rem;
}

.step p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 0.9rem;
}

.steps + .center {
  margin-top: 36px;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.project {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.project div {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: #81838a;
  background: #dedbd4;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project span {
  display: block;
  padding: 20px 22px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.testimonials blockquote {
  padding: 30px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.stars {
  color: var(--gold-dark);
  letter-spacing: 0.12em;
}

.testimonials p {
  margin-top: 18px;
  line-height: 1.75;
}

.testimonials footer {
  margin-top: 20px;
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 800;
}

.experience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.experience div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.experience strong {
  font-size: 2.3rem;
}

.experience span {
  margin-top: 4px;
  color: var(--gray);
  font-size: 0.82rem;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 86px;
}

.faq__items {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

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

.faq details p {
  padding: 0 42px 24px 0;
  color: var(--gray);
}

.final-cta {
  padding: 88px 0;
  color: var(--white);
  background: var(--black);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.final-cta__inner > div:first-child {
  max-width: 790px;
}

.final-cta p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}

.footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.58);
  background: #08090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.footer strong {
  color: var(--white);
  letter-spacing: 0.14em;
}

.footer p {
  margin-top: 8px;
  font-size: 0.82rem;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.76rem;
}

@media (max-width: 980px) {
  .hero__grid,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 0;
  }

  .form-card {
    max-width: 680px;
  }

  .features,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2),
  .step:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n+2),
  .step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__actions {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header .button {
    display: none;
  }

  .hero {
    padding: 58px 0 66px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero__grid {
    gap: 44px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__stats,
  .comparison,
  .fit-grid,
  .portfolio,
  .testimonials,
  .experience {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .features,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature,
  .step,
  .feature:nth-child(2),
  .step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child,
  .step:last-child {
    border-bottom: 0;
  }

  .comparison__card {
    min-height: 0;
  }

  .experience div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .experience div:last-child {
    border-bottom: 0;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Atualizações: logotipo original e portfólio com imagens */
.brand {
  min-width: 150px;
}

.brand__logo {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.portfolio {
  align-items: stretch;
}

.project {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dedbd4;
}

.project__content {
  padding: 20px 22px 22px;
}

.project__content h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.project__content span {
  padding: 0;
  margin-top: 6px;
}

.project--placeholder {
  background: #181a1f;
}

.project__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 20%, rgba(242, 182, 50, 0.18), transparent 42%),
    #181a1f;
}

.project__placeholder strong {
  color: #fff;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.project__placeholder small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project--placeholder .project__content {
  color: #fff;
  background: #101115;
}

@media (max-width: 720px) {
  .brand__logo {
    height: 32px;
  }
}


/* Refinos visuais v3 */
.project__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px 18px;
}

.project__content h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.project__content span {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--gold-dark);
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.footer__brand img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.footer__brand p {
  max-width: 430px;
  margin-top: 10px;
}

/* Responsividade reforçada para celular */
@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header__inner {
    min-height: 62px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    height: 30px;
    max-width: 150px;
  }

  .hero {
    padding: 44px 0 54px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.2rem, 11.5vw, 3.5rem);
    line-height: 1.01;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__support {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
    text-align: center;
    line-height: 1.25;
  }

  .hero__microcopy {
    font-size: 0.77rem;
    line-height: 1.55;
  }

  .hero__stats {
    gap: 0;
  }

  .stat {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .form-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-card h2 {
    font-size: 1.45rem;
  }

  .form-card > p {
    font-size: 0.86rem;
  }

  .form label {
    margin-top: 13px;
  }

  .form input,
  .form select,
  .form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .form textarea {
    min-height: 120px;
  }

  .form__notice {
    font-size: 0.75rem;
    line-height: 1.55;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2rem, 9.7vw, 3rem);
    line-height: 1.04;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .feature,
  .step,
  .comparison__card,
  .fit-card,
  .testimonials blockquote {
    padding: 24px 20px;
  }

  .feature,
  .step {
    min-height: 0;
  }

  .feature h3,
  .step h3 {
    margin-top: 28px;
  }

  .comparison {
    gap: 16px;
    margin-top: 38px;
  }

  .comparison h3 {
    font-size: 1.55rem;
  }

  .fit-grid {
    gap: 16px;
  }

  .portfolio {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .project {
    border-radius: 16px;
  }

  .project img {
    aspect-ratio: 4 / 3;
  }

  .project__content {
    padding: 14px 16px 16px;
    gap: 2px;
  }

  .project__content h3 {
    font-size: 1.02rem;
  }

  .project__content span {
    font-size: 0.64rem;
  }

  .testimonials {
    gap: 16px;
  }

  .faq {
    gap: 32px;
  }

  .faq summary {
    padding: 18px 34px 18px 0;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .faq details p {
    padding-right: 0;
    font-size: 0.88rem;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-cta__actions {
    min-width: 0;
    max-width: none;
  }

  .footer {
    padding: 30px 0;
  }

  .footer__inner {
    gap: 22px;
  }

  .footer__brand img {
    height: 34px;
    max-width: 160px;
  }

  .footer__brand p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .footer__meta {
    display: grid;
    gap: 8px;
    font-size: 0.72rem;
  }
}

/* Campo anti-spam invisível */
.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Mensagens de retorno do formulário */
.form__feedback {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.form__feedback--error {
  color: #7c1f1f;
  background: #fff0ef;
  border: 1px solid #f2beb9;
}
