/* =========================================================
   DAIZ — Data, AI & Infrastructure Business
   Identidade: azul marinho profundo + dourado
   ========================================================= */

:root {
  --navy-900: #050d24;
  --navy-800: #08122e;
  --navy-700: #0d1b46;
  --navy-600: #142563;
  --navy-500: #1c3382;

  --gold-500: #e8b339;
  --gold-400: #f1c45c;
  --gold-600: #c89523;

  --ink-900: #0b1224;
  --ink-700: #2a334a;
  --ink-500: #5a6479;
  --ink-300: #9aa3b8;
  --ink-200: #c8cdd9;
  --ink-100: #eef0f6;
  --ink-50:  #f6f7fb;
  --white:   #ffffff;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 4px 14px rgba(8, 18, 46, .08);
  --shadow-md: 0 14px 40px rgba(8, 18, 46, .12);
  --shadow-lg: 0 24px 60px rgba(8, 18, 46, .18);

  --container: 1200px;
  --header-h: 88px;

  --ease: cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-500); }

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  margin: 0 0 .5em;
  line-height: 1.2;
  color: var(--ink-900);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-700); }

.hl { color: var(--gold-500); }

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

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: .75rem;
}

/* ---------- A11Y SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--navy-900);
  outline-offset: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: 0 8px 22px rgba(232, 179, 57, .35);
}
.btn--gold:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 179, 57, .5);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy-900);
}
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--ink-200);
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--ink-200); }
.topbar a:hover { color: var(--gold-500); }
.topbar .dot { color: var(--ink-500); margin: 0 8px; }
.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-300);
}
.topbar__social a {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.topbar__social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-2px); }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow .2s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  min-height: var(--header-h);
}
.header__logo img { height: 56px; width: auto; }

.nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0; padding: 0;
  align-items: center;
}
.nav a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-900);
  border-radius: 8px;
}
.nav a:hover { color: var(--navy-700); background: var(--ink-50); }
.nav a.btn { background: var(--gold-500); color: var(--navy-900); }
.nav a.btn:hover { background: var(--gold-400); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px; height: 42px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy-900);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: clamp(520px, 78vh, 760px);
  overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}
.hero__slides {
  position: absolute; inset: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s var(--ease), transform 1.4s var(--ease);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hero__slide--brand {
  background-color: #d8d8d8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__content {
  max-width: 720px;
  color: var(--white);
  padding: 0 24px;
}
.hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(232, 179, 57, .2);
  border: 1px solid rgba(232, 179, 57, .5);
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero__content h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero__content p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero__dots button {
  width: 38px; height: 4px;
  border: none;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.hero__dots button.is-active { background: var(--gold-500); }
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s var(--ease);
}
.hero__arrow:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }
@media (min-width: 900px) { .hero__arrow { display: flex; } }

/* ---------- ABOUT ---------- */
.about { padding: 100px 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  bottom: -28px; right: -16px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.about__badge strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}
.about__badge span { font-size: .85rem; font-weight: 600; }

.about__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--ink-700);
  font-size: .95rem;
}
.about__list span {
  display: inline-flex;
  width: 24px; height: 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  flex-shrink: 0;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--ink-500);
}

/* ---------- SOLUTIONS ---------- */
.solutions {
  padding: 100px 0;
  background: var(--ink-50);
  position: relative;
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 179, 57, .4);
}
.card--featured {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--white);
  border-color: var(--navy-700);
}
.card--featured h3, .card--featured p, .card--featured ul li { color: var(--white); }
.card--featured p { color: rgba(255,255,255,.8); }
.card--featured .card__list li::before { color: var(--gold-400); }
.card--featured:hover { border-color: var(--gold-500); }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(232, 179, 57, .15);
  color: var(--gold-600);
  margin-bottom: 24px;
}
.card--featured .card__icon {
  background: rgba(232, 179, 57, .2);
  color: var(--gold-400);
}
.card__icon--alert { background: rgba(220, 38, 38, .12); color: #c0392b; }

.card__tag {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .08em;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.card__list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: .92rem;
  color: var(--ink-700);
}
.card__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 800;
}
.card__cta {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 600;
  color: var(--gold-600);
}

/* ---------- BRANDS ---------- */
.brands {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}
.brands__track {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.brands__row {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: brandsScroll 28s linear infinite;
  width: max-content;
}
.brand {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(.2);
  opacity: .85;
  transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.brand:hover { filter: none; opacity: 1; transform: scale(1.06); }
.brand img { max-height: 90px; width: auto; }

@keyframes brandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,179,57,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.85); margin-bottom: 16px; max-width: 640px; }
.cta-strip blockquote {
  margin: 0;
  padding: 16px 22px;
  border-left: 3px solid var(--gold-500);
  font-style: italic;
  color: rgba(255,255,255,.9);
  max-width: 640px;
}
.cta-strip blockquote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-400);
  font-size: .9rem;
}

/* ---------- TRANSFORM ---------- */
.transform {
  padding: 100px 0;
  background: var(--ink-50);
}
.transform__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.transform h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.transform__lead {
  margin-top: 24px;
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.02rem;
}
.transform__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.stat:hover { transform: translateY(-4px); }
.stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { color: var(--ink-500); font-size: .9rem; }

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px 26px;
  background: var(--white);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-lg);
  color: var(--ink-900);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  color: var(--ink-900);
}
.contact-card h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--navy-900);
}
.contact-card p {
  margin: 0;
  font-weight: 600;
  color: var(--ink-700);
  font-size: .98rem;
  word-break: break-word;
}
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(232, 179, 57, .15);
  color: var(--gold-600);
}
.contact-card__icon--whatsapp { background: rgba(37, 211, 102, .15); color: #1f9c52; }
.contact-card__cta {
  margin-top: auto;
  padding-top: 6px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-600);
}

.contact__address {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
}
.contact__address .contact-card__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
}
.contact__address strong {
  display: block;
  color: var(--navy-900);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.contact__address div:last-child {
  color: var(--ink-700);
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .9);
  padding-top: 80px;
}
.footer p { color: rgba(255, 255, 255, .8); }
.footer p strong { color: var(--white); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer__col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold-500);
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer__col a {
  color: rgba(255, 255, 255, .85);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--gold-400); }
.footer__contact li {
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  line-height: 1.55;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  background: #25D366;
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .6);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 820px) {
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --header-h: 76px; }

  .container { padding: 0 20px; }

  .about__grid,
  .transform__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__media img { height: 380px; }
  .solutions__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .cta-strip__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .cta-strip__inner > div { width: 100%; }
  .cta-strip__inner blockquote { margin-left: auto; margin-right: auto; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }

  .container { padding: 0 18px; }

  /* Topbar mais compacta no mobile */
  .topbar { font-size: .76rem; }
  .topbar__contact { display: none; }
  .topbar__inner { justify-content: center; padding: 8px 18px; }
  .topbar__social { gap: 10px; }
  .topbar__social span { display: none; }

  /* Header mobile */
  .header__inner { padding: 12px 18px; min-height: var(--header-h); }
  .header__logo img { height: 44px; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    z-index: 40;
    background: var(--white);
    border-top: 1px solid var(--ink-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility 0s linear .25s;
    padding: 12px 16px 24px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
  }
  .nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .nav a {
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .nav a.btn {
    margin-top: 10px;
    padding: 14px 18px;
    justify-content: center;
  }

  /* Hero mobile */
  .hero { height: auto; min-height: 560px; }
  .hero__slide {
    padding: 90px 0 110px;
    align-items: flex-start;
    background-position: right center;
  }
  .hero__slide--brand {
    background-position: center;
    padding: 0;
  }
  .hero__content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero__content p { font-size: 1rem; max-width: 100%; }
  .hero__eyebrow { font-size: .72rem; padding: 6px 12px; margin-bottom: 14px; }
  .hero__arrow { display: none !important; }
  .hero__dots { bottom: 24px; }
  .hero__dots button { width: 28px; }

  /* Botões */
  .btn { padding: 13px 22px; font-size: .92rem; }
  .btn--lg { padding: 15px 28px; font-size: .98rem; }

  /* Spacing geral */
  .about, .solutions, .transform, .contact, .brands { padding: 64px 0; }
  .cta-strip { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  /* Quem somos */
  .about__list { grid-template-columns: 1fr; gap: 10px; }
  .about__media img { height: 260px; }
  .about__badge {
    bottom: -20px; right: 16px;
    padding: 14px 18px;
  }
  .about__badge strong { font-size: 1.3rem; }
  .about__badge span { font-size: .78rem; }

  /* Cards */
  .card { padding: 32px 24px; }
  .card__list li { font-size: .9rem; }

  /* Brands carrossel */
  .brands { padding: 56px 0; }
  .brands__row { gap: 50px; animation-duration: 22s; }
  .brand { width: 130px; height: 80px; }
  .brand img { max-height: 60px; }

  /* Transform */
  .transform__stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding: 24px 18px; }
  .stat strong { font-size: 1.9rem; }
  .stat span { font-size: .82rem; }
  .transform__lead { padding: 18px; font-size: .96rem; }

  /* Contato */
  .contact__cards { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 24px 22px; }
  .contact__address {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

  /* CTA strip */
  .cta-strip h2 { font-size: 1.4rem; }
  .cta-strip blockquote { padding: 12px 16px; font-size: .95rem; }

  /* Footer */
  .footer { padding-top: 56px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer__col h4::after { left: 50%; transform: translateX(-50%); }
  .footer__col {
    text-align: center;
  }
  .footer__col p { max-width: 320px; margin-left: auto; margin-right: auto; }
  .footer__logo { margin: 0 auto 18px; }
  .footer__bottom { padding: 18px 0; font-size: .8rem; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  /* WhatsApp menor no mobile */
  .whatsapp-float {
    width: 52px; height: 52px;
    bottom: 18px; right: 18px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 16px; }
  .hero__content h1 { font-size: 1.55rem; }
  .transform__stats { grid-template-columns: 1fr; }
}
