/* ===========================================================
   Colodetti Express — Landing Page
   Sistema visual: Saira Condensed + Barlow / preto, vermelho, branco
   =========================================================== */

:root {
  --ink: #1a1a1a;
  --ink-pure: #000000;
  --red: #e11919;
  --red-dark: #b51212;
  --red-soft: #f8e3e3;
  --white: #ffffff;
  --gray-50: #f6f6f5;
  --gray-100: #ededec;
  --gray-200: #e2e2e0;
  --gray-300: #cfcfcc;
  --muted: #6f6f6c;
  --muted-light: #a3a3a0;

  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Tipografia utilitária ---------- */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  transform: skewX(-20deg);
  display: inline-block;
}

.section { padding: 110px 0; position: relative; }
.section--gray { background: var(--gray-50); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 18px 0 18px;
}
.section-title em { color: var(--red); font-style: italic; }
.section-sub { font-size: 1.12rem; color: var(--muted); max-width: 560px; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(225, 25, 25, 0.28);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(225, 25, 25, 0.36); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 12px 24px; }
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); padding: 12px 24px; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.18rem; padding: 17px 34px; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--gray-200); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* Logo placeholder */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo__mark {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 6px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  transform: skewX(-7deg);
}
.logo__mark::before,
.logo__mark::after {
  content: "";
  position: absolute;
  height: 3px;
  background: rgba(255,255,255,0.85);
  right: 7px;
  transform: skewX(0);
}
.logo__mark::before { width: 16px; top: 15px; box-shadow: -7px 7px 0 rgba(255,255,255,0.55); }
.logo__mark svg { width: 24px; height: 24px; color: #fff; position: relative; z-index: 2; }
.logo__text { display: flex; flex-direction: column; line-height: 0.92; }
.logo__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.logo__name b { color: var(--red); font-weight: 800; }
.logo__sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav a:hover { color: var(--red); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 16px 28px 28px;
  transform: translateY(-130%);
  transition: transform 0.4s var(--ease);
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 76px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg .ph-stripes { width: 100%; height: 100%; }
.hero__solid {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 0%, #262626 0%, #161616 45%, #0d0d0d 100%);
}
.hero__solid::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(118deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 64px);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(15,15,15,0.94) 0%, rgba(20,20,20,0.82) 42%, rgba(20,20,20,0.45) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%);
}
/* diagonal red speed slash */
.hero__slash {
  position: absolute; z-index: 1;
  top: 0; bottom: 0; right: -8%;
  width: 46%;
  background: var(--red);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.92;
  mix-blend-mode: normal;
}
.hero__slash::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,0,0,0.25), rgba(0,0,0,0) 60%);
}
.hero__content { position: relative; z-index: 3; max-width: 720px; padding: 60px 0; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.92rem;
  background: rgba(225,25,25,0.18);
  border: 1px solid rgba(225,25,25,0.5);
  color: #ff8585;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 26px;
}
.hero__tag .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(225,25,25,0.25); }
.hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 em { color: var(--red); font-style: italic; position: relative; }
.hero__sub {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 38px;
  font-weight: 400;
}
.hero__sub strong { color: #fff; font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--display); font-style: italic; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.7rem; color: rgba(255,255,255,0.6);
}
.hero__scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:7px; background:#fff; border-radius:2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0;transform:translate(-50%,10px);} 100%{opacity:0;} }

/* moving speed lines in hero */
.hero__lines { position:absolute; z-index:2; right:6%; top:50%; transform:translateY(-50%); display:flex; flex-direction:column; gap:14px; }
.hero__lines span { height:4px; background:rgba(255,255,255,0.55); border-radius:3px; transform:skewX(-22deg); animation: dash 2.2s var(--ease) infinite; }
.hero__lines span:nth-child(1){ width:70px; animation-delay:0s;}
.hero__lines span:nth-child(2){ width:120px; animation-delay:0.2s; background:rgba(255,255,255,0.85);}
.hero__lines span:nth-child(3){ width:48px; animation-delay:0.4s;}
@keyframes dash { 0%{transform:skewX(-22deg) translateX(20px); opacity:0;} 30%{opacity:1;} 70%{opacity:1;} 100%{transform:skewX(-22deg) translateX(-40px); opacity:0;} }

/* trust strip below hero */
.trust {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 22px 0;
}
.trust__inner { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px; }
.trust__item { display:flex; align-items:center; gap:11px; font-weight:500; font-size:0.98rem; }
.trust__item svg { width:22px; height:22px; color: var(--red); flex-shrink:0; }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.feature-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; }
.feature {
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:34px 28px;
  position:relative;
  overflow:hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.feature::before {
  content:""; position:absolute; top:0; left:0; width:0; height:4px; background:var(--red);
  transition: width 0.35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::before { width:100%; }
.feature__icon {
  width:58px; height:58px; border-radius:10px;
  background: var(--red-soft); color: var(--red);
  display:grid; place-items:center; margin-bottom:22px;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.feature:hover .feature__icon { background: var(--red); color:#fff; transform: skewX(-6deg); }
.feature__icon svg { width:30px; height:30px; }
.feature h3 {
  font-family:var(--display); font-style:italic; font-weight:700; text-transform:uppercase;
  font-size:1.5rem; line-height:1; margin-bottom:11px;
}
.feature p { color:var(--muted); font-size:0.98rem; }
.feature__num {
  position:absolute; top:20px; right:22px;
  font-family:var(--display); font-style:italic; font-weight:800;
  font-size:2.4rem; color:var(--gray-100); line-height:1;
}

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:0; border:1px solid var(--gray-200); border-radius:var(--radius); overflow:hidden; background:#fff; }
.service {
  padding:42px 40px;
  border-right:1px solid var(--gray-200);
  border-bottom:1px solid var(--gray-200);
  display:flex; gap:24px; align-items:flex-start;
  position:relative;
  transition: background 0.3s;
}
.services-grid .service:nth-child(2n) { border-right:none; }
.services-grid .service:nth-last-child(-n+2) { border-bottom:none; }
.service::after {
  content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--red); transform:scaleY(0); transform-origin:top; transition: transform 0.35s var(--ease);
}
.service:hover { background: var(--gray-50); }
.service:hover::after { transform:scaleY(1); }
.service__icon { flex-shrink:0; width:62px; height:62px; border-radius:12px; background:var(--ink); color:#fff; display:grid; place-items:center; transition: background 0.3s, transform 0.3s var(--ease); }
.service:hover .service__icon { background:var(--red); transform: skewX(-6deg); }
.service__icon svg { width:32px; height:32px; }
.service__body h3 { font-family:var(--display); font-style:italic; font-weight:700; text-transform:uppercase; font-size:1.55rem; line-height:1; margin-bottom:10px; }
.service__body p { color:var(--muted); font-size:1rem; }
.service__link { display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-family:var(--display); font-style:italic; font-weight:700; text-transform:uppercase; letter-spacing:0.04em; color:var(--red); font-size:0.95rem; }
.service__link svg { width:16px; height:16px; transition: transform 0.25s; }
.service:hover .service__link svg { transform: translateX(4px); }

/* =========================================================
   SOBRE + STATS
   ========================================================= */
.about { display:grid; grid-template-columns: 1.05fr 0.95fr; gap:64px; align-items:center; }
.about__media { position:relative; }
.about__img { aspect-ratio: 4/5; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.about__img--solid {
  background: radial-gradient(120% 100% at 75% 10%, #2a2a2a 0%, #161616 55%, #0c0c0c 100%);
  display: grid; place-items: center;
  position: relative;
}
.about__img--solid::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(118deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 58px);
}
.about__img--solid::after {
  content: "";
  position: absolute; right: -40px; top: 0; bottom: 0; width: 130px;
  background: var(--red); transform: skewX(-18deg); opacity: 0.9;
}
.about__img--solid svg {
  width: 46%; height: auto; color: rgba(255,255,255,0.22);
  position: relative; z-index: 2;
}
.about__badge {
  position:absolute; bottom:-26px; left:-26px;
  background:var(--red); color:#fff;
  padding:22px 26px; border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  transform: skewX(-5deg);
}
.about__badge .num { font-family:var(--display); font-style:italic; font-weight:800; font-size:3rem; line-height:0.9; }
.about__badge .lbl { font-weight:600; text-transform:uppercase; letter-spacing:0.06em; font-size:0.8rem; transform: skewX(5deg); }
.about__text p { color:var(--muted); font-size:1.08rem; margin-bottom:18px; }
.about__text p.lead { color:var(--ink); font-size:1.22rem; font-weight:500; }
.about__list { margin:24px 0 0; display:grid; gap:14px; }
.about__list li { display:flex; align-items:flex-start; gap:12px; font-weight:500; }
.about__list svg { width:22px; height:22px; color:var(--red); flex-shrink:0; margin-top:2px; }

.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:88px; }
.stat { text-align:center; padding:30px 16px; border-left:3px solid var(--red); background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-sm); }
.section--gray .stat { background:#fff; }
.stat__num { font-family:var(--display); font-style:italic; font-weight:800; font-size:clamp(2.6rem,4vw,3.6rem); line-height:0.9; color:var(--ink); }
.stat__num em { color:var(--red); font-style:italic; }
.stat__lbl { text-transform:uppercase; letter-spacing:0.06em; font-weight:600; font-size:0.86rem; color:var(--muted); margin-top:8px; }

/* =========================================================
   FAIXA CTA
   ========================================================= */
.cta-band { background: var(--red); color:#fff; position:relative; overflow:hidden; padding:72px 0; }
.cta-band::before, .cta-band::after {
  content:""; position:absolute; top:0; bottom:0; width:160px; background:rgba(0,0,0,0.10); transform: skewX(-20deg);
}
.cta-band::before { left:-60px; }
.cta-band::after { right:8%; width:90px; background:rgba(255,255,255,0.10); }
.cta-band__inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; position:relative; z-index:2; }
.cta-band h2 { font-family:var(--display); font-style:italic; font-weight:800; text-transform:uppercase; font-size:clamp(2rem,4.5vw,3.4rem); line-height:0.95; max-width:760px; }
.cta-band p { color:rgba(255,255,255,0.9); margin-top:10px; font-size:1.12rem; }
.cta-band .btn--light { background:#fff; color:var(--red); box-shadow:0 10px 24px rgba(0,0,0,0.2); }
.cta-band .btn--light:hover { background:var(--ink); color:#fff; transform:translateY(-2px); }

/* =========================================================
   CONTATO
   ========================================================= */
.contact { display:grid; grid-template-columns: 1fr 0.85fr; gap:56px; }
.contact__form { background:#fff; border:1px solid var(--gray-200); border-radius:var(--radius); padding:40px; box-shadow:var(--shadow-sm); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { margin-bottom:20px; }
.field label { display:block; font-weight:600; font-size:0.9rem; margin-bottom:7px; text-transform:uppercase; letter-spacing:0.03em; }
.field input, .field textarea {
  width:100%; padding:13px 15px; border:1.5px solid var(--gray-200); border-radius:var(--radius);
  font-size:1rem; color:var(--ink); background:var(--gray-50); transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field textarea { resize:vertical; min-height:120px; }
.field input:focus, .field textarea:focus { outline:none; border-color:var(--red); background:#fff; box-shadow:0 0 0 3px rgba(225,25,25,0.12); }
.field.error input, .field.error textarea { border-color:var(--red); background:#fff5f5; }
.field .err-msg { color:var(--red); font-size:0.82rem; margin-top:5px; display:none; font-weight:500; }
.field.error .err-msg { display:block; }
.form-success { display:none; align-items:center; gap:12px; background:#ecfdf3; border:1px solid #b7ecca; color:#157a47; padding:14px 16px; border-radius:var(--radius); margin-bottom:20px; font-weight:500; }
.form-success svg { width:22px; height:22px; flex-shrink:0; }
.form-success.show { display:flex; }

.contact__info { display:flex; flex-direction:column; gap:14px; }
.info-card { display:flex; gap:16px; align-items:flex-start; padding:22px; background:#fff; border:1px solid var(--gray-200); border-radius:var(--radius); transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.info-card:hover { transform: translateX(4px); box-shadow:var(--shadow-sm); }
.info-card__icon { width:48px; height:48px; border-radius:10px; background:var(--red-soft); color:var(--red); display:grid; place-items:center; flex-shrink:0; }
.info-card__icon svg { width:24px; height:24px; }
.info-card.wa .info-card__icon { background:#25d366; color:#fff; }
.info-card h4 { font-family:var(--display); font-style:italic; font-weight:700; text-transform:uppercase; font-size:1.2rem; line-height:1; margin-bottom:4px; }
.info-card p { color:var(--muted); font-size:0.98rem; }
.info-card a:hover { color:var(--red); }

/* =========================================================
   RODAPÉ
   ========================================================= */
.footer { background:var(--ink-pure); color:rgba(255,255,255,0.65); padding:72px 0 0; }
.footer__top { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:54px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer .logo__name { color:#fff; }
.footer .logo__sub { color:rgba(255,255,255,0.5); }
.footer__about { margin:20px 0; max-width:300px; font-size:0.98rem; line-height:1.7; }
.footer h5 { font-family:var(--display); font-style:italic; font-weight:700; text-transform:uppercase; color:#fff; font-size:1.15rem; margin-bottom:18px; letter-spacing:0.02em; }
.footer__links { display:grid; gap:11px; }
.footer__links a { font-size:0.98rem; transition:color 0.2s, padding-left 0.2s; }
.footer__links a:hover { color:#fff; padding-left:5px; }
.footer__contact-li { display:flex; gap:10px; align-items:flex-start; margin-bottom:12px; font-size:0.96rem; }
.footer__contact-li svg { width:18px; height:18px; color:var(--red); flex-shrink:0; margin-top:3px; }
.socials { display:flex; gap:10px; margin-top:18px; }
.socials a { width:40px; height:40px; border-radius:8px; background:rgba(255,255,255,0.08); display:grid; place-items:center; transition: background 0.25s, transform 0.25s; }
.socials a:hover { background:var(--red); transform:translateY(-3px); }
.socials svg { width:19px; height:19px; color:#fff; }
.footer__bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding:26px 0; font-size:0.9rem; }
.footer__bottom a:hover { color:#fff; }

/* =========================================================
   PLACEHOLDERS DE IMAGEM
   ========================================================= */
.ph {
  position:relative;
  width:100%; height:100%;
  background-color: #2a2a2a;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 14px, transparent 14px 28px);
  display:grid; place-items:center;
}
.ph--light { background-color: var(--gray-100); background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.045) 0 14px, transparent 14px 28px); }
.ph__label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size:0.74rem; letter-spacing:0.04em;
  color: rgba(255,255,255,0.55);
  text-align:center; padding:8px 14px;
  border:1px dashed rgba(255,255,255,0.25); border-radius:4px;
  background: rgba(0,0,0,0.25);
}
.ph--light .ph__label { color: var(--muted); border-color: var(--gray-300); background: rgba(255,255,255,0.6); }

/* =========================================================
   MODAL ÁREA DO CLIENTE
   ========================================================= */
.modal-overlay {
  position:fixed; inset:0; z-index:200;
  background: rgba(10,10,10,0.66);
  backdrop-filter: blur(4px);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s;
}
.modal-overlay.open { opacity:1; visibility:visible; }
.modal {
  background:#fff; width:100%; max-width:430px; border-radius:8px; overflow:hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(28px) scale(0.96);
  opacity:0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  position:relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity:1; }
.modal__head { background:var(--ink); color:#fff; padding:34px 36px 30px; position:relative; overflow:hidden; }
.modal__head::after { content:""; position:absolute; right:-30px; top:0; bottom:0; width:120px; background:var(--red); transform:skewX(-20deg); opacity:0.9; }
.modal__brand { display:flex; align-items:center; gap:10px; position:relative; z-index:2; margin-bottom:18px; }
.modal__brand .logo__name { color:#fff; font-size:1.3rem; }
.modal__title { font-family:var(--display); font-style:italic; font-weight:800; text-transform:uppercase; font-size:2rem; line-height:0.95; position:relative; z-index:2; }
.modal__desc { color:rgba(255,255,255,0.78); font-size:0.98rem; margin-top:8px; max-width:300px; position:relative; z-index:2; }
.modal__close {
  position:absolute; top:16px; right:16px; z-index:5;
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.14); color:#fff;
  display:grid; place-items:center; transition: background 0.2s, transform 0.2s;
}
.modal__close:hover { background:rgba(255,255,255,0.28); transform: rotate(90deg); }
.modal__close svg { width:20px; height:20px; }
.modal__body { padding:32px 36px 36px; }
.modal__body .field { margin-bottom:18px; }
.modal__forgot { display:block; text-align:right; margin-top:-6px; margin-bottom:22px; font-size:0.9rem; font-weight:600; color:var(--red); }
.modal__forgot:hover { text-decoration:underline; }
.modal__foot { text-align:center; margin-top:22px; font-size:0.92rem; color:var(--muted); }
.modal__foot a { color:var(--red); font-weight:600; }
.modal__foot a:hover { text-decoration:underline; }

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.wa-float {
  position:fixed; right:24px; bottom:24px; z-index:150;
  width:60px; height:60px; border-radius:50%;
  background:#25d366; color:#fff;
  display:grid; place-items:center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37,211,102,0.55); }
.wa-float svg { width:32px; height:32px; }
.wa-float .wa-tip {
  position:absolute; right:74px; top:50%; transform:translateY(-50%) translateX(8px);
  background:var(--ink); color:#fff; padding:9px 15px; border-radius:8px;
  font-size:0.9rem; font-weight:600; white-space:nowrap;
  opacity:0; pointer-events:none; transition: opacity 0.25s, transform 0.25s;
  box-shadow: var(--shadow-md);
}
.wa-float .wa-tip::after { content:""; position:absolute; right:-5px; top:50%; transform:translateY(-50%) rotate(45deg); width:10px; height:10px; background:var(--ink); }
.wa-float:hover .wa-tip { opacity:1; transform:translateY(-50%) translateX(0); }
@keyframes waPulse { 0%{ box-shadow:0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5);} 70%{ box-shadow:0 10px 28px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0);} }

/* =========================================================
   ANIMAÇÕES AO ROLAR
   ========================================================= */
.reveal { opacity:0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity:1; transform: none; }
.reveal[data-delay="1"] { transition-delay:0.08s; }
.reveal[data-delay="2"] { transition-delay:0.16s; }
.reveal[data-delay="3"] { transition-delay:0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; }
  html { scroll-behavior:auto; }
  .wa-float, .hero__lines span, .hero__scroll .mouse::after { animation:none !important; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns:1fr; gap:48px; }
  .about__media { max-width:440px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap:36px; }
}
@media (max-width: 860px) {
  .nav, .header__actions .btn { display:none; }
  .burger { display:flex; }
  .header__actions { gap:0; }
  .services-grid { grid-template-columns:1fr; }
  .services-grid .service { border-right:none; }
  .services-grid .service:nth-last-child(2) { border-bottom:1px solid var(--gray-200); }
  .contact { grid-template-columns:1fr; gap:32px; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .section { padding:72px 0; }
  .container { padding:0 20px; }
  .feature-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap:16px; }
  .hero__slash { display:none; }
  .hero__lines { display:none; }
  .cta-band__inner { flex-direction:column; align-items:flex-start; }
  .footer__top { grid-template-columns:1fr; }
  .about__badge { left:0; }
  .contact__form { padding:28px 22px; }
  .wa-float { width:54px; height:54px; right:18px; bottom:18px; }
  .wa-float .wa-tip { display:none; }
}
