:root {
  --orange: #FF6A00;
  --orange-deep: #C94F00;
  --orange-soft: #FFF1E6;
  --ink: #1C1917;
  --ink-soft: #6B645C;
  --line: #ECE3D9;
  --bg: #FDF9F4;
  --bg-alt: #F7EDE1;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo {
  font-family: 'Sora', sans-serif;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--orange-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.hero-actions .btn-outline {
  color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 24px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-full {
  height: 55px;
  display: block;
}

.logo-symbol {
  height: 60px;
  display: none;
}

.logo-footer {
  margin-bottom: 25px;
  height: 60px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--orange-deep);
}

.nav-links a.active {
  color: var(--orange-deep);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width:860px) {
  .nav {
    padding: 18px 24px;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }

  .menu-btn {
    display: block;
  }

  .nav-cta .btn-outline {
    display: none;
  }

  .nav-cta .btn-primary {
    display: none;
  }

  .logo-full {
    display: none;
  }

  .logo-symbol {
    display: block;
  }
}

/* PAGE HEADER (páginas internas) */
.hero-section {
  background: linear-gradient(90deg, #8a3802 0%, #e85d04 100%);
  text-align: center;
  padding: 60px 0;
}

.hero-section h1 {
  color: #fff;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.page-header {
  padding: 60px 0 50px;
  background: radial-gradient(circle at 85% 0%, var(--orange-soft) 0%, transparent 55%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-header h2 {
  font-size: clamp(30px, 4.5vw, 37px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.page-header p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 630px;
  margin: 0 auto;
}

.page-header-split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 50px;
  align-items: center;
}

.page-header-visual img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

@media (max-width:860px) {
  .page-header-split {
    grid-template-columns: 1fr;
  }
}



.diff-photo img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* HERO (home) */
.hero {
  padding: 90px 0 70px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url('assets/escritorio-trabalho.jpg') no-repeat center center / cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

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

.hero p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat b {
  display: block;
  font-size: 24px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.pin-card {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.pin-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .18;
  top: -70px;
  right: -70px;
}

.pin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pin-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.pin-card p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-bottom: 22px;
}

.pin-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pin-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pin-list li::before {
  content: "●";
  color: var(--orange);
  font-size: 9px;
}

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

  .hero {
    padding: 60px 0 50px;
  }
}

/* SECTION SHARED */
section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 750px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
}

/* PROBLEMA (layout dividido) */
.problem-wrap {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 60px;
  align-items: center;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.problem-list li {
  display: flex;
  gap: 16px;
}

.problem-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.problem-list h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.problem-list p {
  font-size: 14px;
  color: var(--ink-soft);
}

.problem-visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
}

.problem-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

@media (max-width:860px) {
  .problem-wrap {
    grid-template-columns: 1fr;
  }
}

/* PROBLEMA (cards antigos, mantido caso volte a usar) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: #fff;
}

.problem-card .num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 14px;
}

.problem-card p {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

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

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

/* PORQUE NOS ESCOLHER */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  border: 1px solid var(--line);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

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

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

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 26px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.service-img {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}


.service-img img {
  border-radius: 12px;
  width: 100%;
  /* height: 124px; */
  display: block;
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 140, 0, .10),
      rgba(255, 140, 0, .10));
}

@media (max-width:900px) {
  .service-img img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
  }
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

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

/* SERVICO DETALHADO (página de serviços) */
.service-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse>* {
  direction: ltr;
}

.service-detail .tag {
  display: inline-flex;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-detail h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-detail p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
}

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

.service-detail ul li {
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.service-detail ul li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}

.service-visual {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(255, 145, 0, 0.3));
  border-radius: 20px;
  padding: 5px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.service-visual img {
  border-radius: 20px;
}

@media (max-width:860px) {

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* DIFERENCIAIS */
.diff-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diff-list li {
  display: flex;
  gap: 16px;
}

.diff-mark {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--orange-soft);
  /* background: var(--ink); */
  background: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.diff-list h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.diff-list p {
  font-size: 14px;
  color: var(--ink-soft);
}

.diff-visual {
  background: var(--ink);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.diff-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 106, 0, .15) 100%);
}

.diff-visual .quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  margin-bottom: 20px;
}

.diff-visual .quote span {
  color: var(--orange);
}

.diff-visual .who {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  position: relative;
}

@media (max-width:860px) {
  .diff-wrap {
    grid-template-columns: 1fr;
  }
}

/* PROCESSO */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 0 20px 20px 0;
  position: relative;
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--orange-soft);
  -webkit-text-stroke: 1.5px var(--orange);
  margin-bottom: 16px;
  display: block;
}

.step h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--ink-soft);
}

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

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

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  background: #fff;
  transition: filter .2s ease;
  overflow: hidden;
}

.portfolio-card:hover {
  filter: brightness(0.7);
  opacity: 0.9;
}

.portfolio-card .p-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--orange-deep);
  font-size: 15px;
  margin-bottom: 6px;
}

.portfolio-card span {
  font-size: 13px;
  color: var(--ink-soft);
}

@media (max-width:900px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* CONTATO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card .c-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 600;
}

.contact-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

.contact-card a.btn {
  align-self: flex-start;
  margin-top: 8px;
}

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

/* CTA FINAL */
.cta-final {
  background:
    linear-gradient(rgba(255, 145, 0, 0.1), rgba(255, 145, 0, 0.1)),
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('assets/cta.jpg') center/cover no-repeat;
  /* background: var(--ink); */
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  /* background: var(--orange); */
  opacity: .2;
  top: -140px;
  left: -100px;
}

.cta-final h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-final p {
  color: rgba(255, 255, 255, .7);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-final .hero-actions {
  justify-content: center;
  position: relative;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-family: sans-serif;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
}

.footer-grid ul a:hover {
  color: var(--orange-deep);
}

.footer-grid ul li i {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

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

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(255, 106, 0, .35);
  transition: transform .2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}