/* ============================================================
   JL CONSULTORIA DIGITAL
   style.css
   Identidade: Preto + Branco + Cinza
   ============================================================ */

/* ---------- Variáveis centrais ---------- */
:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gray-50: #f2f2f0;
  --gray-100: #e8e8e5;
  --gray-300: #b7b7b2;
  --gray-500: #777773;
  --gray-700: #30302e;

  --border-light: rgba(0, 0, 0, .10);
  --border-dark: rgba(255, 255, 255, .14);

  --container: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .10);

  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.section {
  padding: 120px 0;
}

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

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

.section-dark {
  position: relative;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

/* ---------- Tipografia ---------- */
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .96;
}

h1 span,
h2 em {
  font-style: normal;
  color: var(--gray-300);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

h3 {
  line-height: 1.08;
}

p {
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gray-300);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

.section-heading {
  max-width: 800px;
  margin-bottom: 65px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-top: 24px;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.section-heading.centered {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

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

/* ---------- Cabeçalho ---------- */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, .86);
  border-color: var(--border-dark);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: -.02em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--gray-300);
  font-size: .55rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  position: relative;
  color: #d6d6d2;
  font-size: .82rem;
  font-weight: 600;
  transition: color .25s ease;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 90px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0 28%, var(--black) 75%);
  content: "";
}

.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .10;
  pointer-events: none;
}

.hero-orb-one {
  top: 10%;
  right: 8%;
  background: white;
}

.hero-orb-two {
  bottom: -10%;
  left: 8%;
  background: #888;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

.hero-description {
  max-width: 620px;
  margin: 28px 0 34px;
  color: #bdbdb8;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-light {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(255,255,255,.08);
}

.btn-light:hover {
  box-shadow: 0 18px 45px rgba(255,255,255,.15);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.03);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}

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

.btn-large {
  min-width: 220px;
  min-height: 62px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  color: #777;
  font-size: .72rem;
}

.hero-social a {
  color: var(--white);
  border-bottom: 1px solid #555;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.tech-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 430px);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.015));
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
  transform: translate(-50%, -50%) rotate(-4deg);
  backdrop-filter: blur(18px);
}

.tech-card-top,
.tech-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tech-card-top {
  color: #8d8d88;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: auto;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px white;
}

.mini-lines {
  letter-spacing: 4px;
}

.signal {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 7px;
  height: 210px;
  margin: 35px 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}

.signal span {
  display: block;
  height: calc(35% + (var(--i, 1) * 4%));
  min-height: 20px;
  border-radius: 20px;
  background: linear-gradient(to top, #555, #eee);
  animation: signal 2.4s ease-in-out infinite alternate;
}

.signal span:nth-child(2n) { height: 65%; animation-delay: -.5s; }
.signal span:nth-child(3n) { height: 88%; animation-delay: -1s; }
.signal span:nth-child(4n) { height: 50%; animation-delay: -1.4s; }

@keyframes signal {
  from { transform: scaleY(.72); opacity: .55; }
  to { transform: scaleY(1); opacity: 1; }
}

.tech-metrics {
  gap: 18px;
}

.tech-metrics div {
  flex: 1;
  display: grid;
  gap: 5px;
}

.tech-metrics small {
  color: #777;
  font-size: .56rem;
  letter-spacing: .12em;
}

.tech-metrics strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.floating-tag {
  position: absolute;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #ccc;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
  backdrop-filter: blur(12px);
  animation: float 4s ease-in-out infinite;
}

.tag-one { top: 14%; right: 2%; }
.tag-two { bottom: 16%; left: 4%; animation-delay: -1.4s; }
.tag-three { right: 10%; bottom: 8%; animation-delay: -2.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #777;
  font-size: .54rem;
  letter-spacing: .16em;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 1px;
  height: 35px;
  background: linear-gradient(var(--white), transparent);
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: 120px;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  border: 1px dashed #aaa;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(0,0,0,.10), transparent 35%),
    linear-gradient(135deg, #ececea, #d9d9d6);
  color: #555;
  text-align: center;
}

.image-placeholder::before,
.image-placeholder::after {
  position: absolute;
  width: 120px;
  height: 1px;
  background: rgba(0,0,0,.15);
  content: "";
}

.image-placeholder::before { transform: rotate(45deg); }
.image-placeholder::after { transform: rotate(-45deg); }

.placeholder-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  background: rgba(255,255,255,.3);
}

.image-placeholder strong,
.image-placeholder small {
  position: absolute;
  z-index: 2;
}

.image-placeholder strong {
  bottom: 45px;
  font-size: .7rem;
  letter-spacing: .16em;
}

.image-placeholder small {
  bottom: 22px;
  color: #777;
  font-size: .62rem;
}

.photo-caption {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 18px;
}

.photo-caption > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: black;
  font-size: .7rem;
  font-weight: 800;
}

.photo-caption div {
  display: grid;
  line-height: 1.2;
}

.photo-caption strong {
  font-size: .9rem;
}

.photo-caption small {
  margin-top: 5px;
  color: var(--gray-500);
  font-size: .68rem;
}

.about-copy {
  color: #4e4e4a;
  font-size: .96rem;
}

.about-copy p + p {
  margin-top: 17px;
}

.about-final {
  padding: 24px 0 0 20px;
  border-left: 2px solid var(--black);
  color: var(--black);
  font-weight: 700;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 55px;
}

.pill-list span {
  padding: 10px 15px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  color: #555;
  font-size: .68rem;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.pill-list span:hover {
  color: white;
  background: black;
  transform: translateY(-3px);
}

/* ---------- Equipe ---------- */
.team-photo {
  min-height: 400px;
  margin-bottom: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.person-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: white;
  transition: transform .3s ease, box-shadow .3s ease;
}

.person-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.person-avatar {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: black;
  font-family: var(--font-display);
  font-weight: 800;
}

.person-card h3 {
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.person-card p {
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 800;
}

.person-card span {
  display: block;
  margin-top: 4px;
  color: var(--gray-500);
  font-size: .72rem;
}

/* ---------- Serviços ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: white;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.08), transparent 70%);
  content: "";
  transition: transform .5s ease;
}

.service-card:hover {
  border-color: #777;
  box-shadow: 0 25px 65px rgba(0,0,0,.09);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scale(1.4);
}

.service-card-featured {
  color: white;
  border-color: #222;
  background: #080808;
}

.service-card-featured .service-number,
.service-card-featured p,
.service-card-featured li {
  color: #aaa;
}

.service-card-featured .service-link {
  color: white;
  border-color: #555;
}

.service-number {
  color: #999;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 34px 0 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.1rem;
}

.service-card h3 {
  font-size: 1.4rem;
}

.service-card p {
  min-height: 86px;
  margin-top: 18px;
  color: #666;
  font-size: .8rem;
  line-height: 1.55;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 15px;
  color: #555;
  font-size: .69rem;
}

.service-card li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.service-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-size: .68rem;
  font-weight: 800;
}

.service-link span {
  transition: transform .25s ease;
}

.service-link:hover span {
  transform: translateX(5px);
}

/* ---------- Diferencial ---------- */
.process {
  padding: 125px 0;
}

.process-lines {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.08) 50%, transparent 50.2%);
}

.process-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 70px;
}

.process-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
}

.process-item {
  min-height: 260px;
  padding: 30px 24px 30px 0;
  border-right: 1px solid var(--border-dark);
}

.process-item:not(:first-child) {
  padding-left: 24px;
}

.process-item:last-child {
  border-right: 0;
}

.process-item > span {
  color: #666;
  font-size: .65rem;
  font-weight: 800;
}

.process-item h3 {
  margin-top: 65px;
  font-size: 1.6rem;
}

.process-item p {
  max-width: 230px;
  margin-top: 12px;
  color: #888;
  font-size: .78rem;
}

/* ---------- CTA ---------- */
.cta {
  padding: 90px 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 75px;
  border: 1px solid var(--border-light);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0,0,0,.07), transparent 35%),
    #f4f4f1;
}

.cta-box > div {
  max-width: 730px;
}

.cta-box h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.cta-box p:last-child {
  max-width: 580px;
  margin-top: 20px;
  color: #666;
}

/* ---------- Contato ---------- */
.contact {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 100px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(2.7rem, 5.5vw, 5.5rem);
}

.contact-copy > p:last-child {
  max-width: 560px;
  margin-top: 25px;
  color: #999;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.contact-card:hover {
  border-color: #666;
  background: rgba(255,255,255,.06);
  transform: translateX(7px);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #444;
  border-radius: 50%;
}

.contact-card div {
  display: grid;
}

.contact-card small {
  color: #666;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.contact-card strong {
  margin-top: 3px;
  font-size: .9rem;
}

.contact-arrow {
  color: #777;
}

/* ---------- Rodapé ---------- */
.footer {
  color: #aaa;
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 55px 0;
  border-bottom: 1px solid #1c1c1c;
}

.footer-brand {
  width: fit-content;
}

.footer-grid > p {
  color: #666;
  font-size: .75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-links a {
  color: #aaa;
  font-size: .68rem;
  transition: color .25s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: #555;
  font-size: .62rem;
}

/* ---------- WhatsApp flutuante ---------- */
.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: white;
  background: #111;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  transition: transform .25s ease, background .25s ease;
}

.floating-whatsapp:hover {
  background: #000;
  transform: translateY(-4px) scale(1.05);
}

/* ---------- Animações de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-right {
  transform: translateX(45px);
}

.reveal-delay-2 {
  transition-delay: .15s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Acessibilidade ---------- */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

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

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

  .about-grid {
    gap: 45px;
  }
}

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

  .section {
    padding: 85px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 26px;
    padding: 90px 30px;
    background: rgba(5,5,5,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity .3s ease, transform .3s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-content,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .about-photo-wrap {
    position: relative;
    top: auto;
  }

  .about-copy {
    font-size: .93rem;
  }

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

  .process-item:nth-child(2) {
    border-right: 0;
  }

  .process-item:nth-child(n+3) {
    border-top: 1px solid var(--border-dark);
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px 30px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-description {
    font-size: .95rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 340px;
  }

  .tech-card {
    width: 94%;
    padding: 18px;
  }

  .signal {
    height: 150px;
    margin: 24px 0;
  }

  .floating-tag {
    font-size: .5rem;
  }

  .tag-one { top: 8%; }
  .tag-two { bottom: 7%; left: 0; }
  .tag-three { right: 0; bottom: 2%; }

  .image-placeholder {
    min-height: 430px;
  }

  .team-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-item,
  .process-item:not(:first-child) {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--border-dark);
  }

  .process-item:first-child {
    border-top: 0;
  }

  .process-item h3 {
    margin-top: 35px;
  }

  .service-card {
    min-height: 460px;
  }

  .cta-box {
    border-radius: 22px;
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-card {
    grid-template-columns: auto 1fr;
  }

  .contact-arrow {
    display: none;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

/* Usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
