/* =========================================================
   AGÊNCIA ARBOR — STYLE.CSS
   Estrutura principal do site
   ========================================================= */


/* =========================================================
   1. VARIÁVEIS
   ========================================================= */

:root {
  --bg: #f3f1ea;
  --surface: #ffffff;
  --ink: #111714;
  --muted: #66706b;
  --line: #d9ded9;

  --green: #1e5b43;
  --green2: #123d2e;
  --lime: #cfe487;

  --max: 1180px;
  --r: 18px;
  --shadow: 0 22px 60px rgba(17, 23, 20, 0.08);
}


/* =========================================================
   2. RESET E BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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


/* =========================================================
   3. UTILITÁRIOS
   ========================================================= */

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

.narrow {
  max-width: 850px;
}

.skip {
  position: absolute;
  left: -10000px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: #fff;
  padding: 10px;
}


/* =========================================================
   4. CABEÇALHO E NAVEGAÇÃO
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 241, 234, 0.91);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 23, 20, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 9px;
  font-weight: 900;
}

.nav nav {
  display: flex;
  gap: 26px;
  color: #3f4944;
  font-size: 14px;
}


/* =========================================================
   5. BOTÕES
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 20px;

  background: var(--green);
  color: #fff;

  border: 1px solid var(--green);
  border-radius: 10px;

  font-weight: 800;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--green2);
  color: #fff;
}

.btn-small {
  min-height: 44px;
  font-size: 14px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: #bcc5bf;
}

.btn-ghost:hover {
  background: var(--green2);
  color: #fff;
  border-color: var(--green2);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}


/* =========================================================
   6. HERO
   ========================================================= */

.hero {
  padding: 88px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0 0 28px;
}

.hero h1 span {
  color: var(--green);
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 700px;
}

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

.proof-strip {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 40px;
  color: #606963;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.proof-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}


/* =========================================================
   7. HERO VISUAL / CARDS
   ========================================================= */

.hero-visual {
  background: var(--ink);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.signal-card {
  background: #1a221e;
  border: 1px solid #2c3932;
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;

  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
}

.signal-card small {
  grid-row: 1 / 3;
  color: var(--lime);
  font-weight: 900;
}

.signal-card span {
  color: #a9b3ad;
  font-size: 13px;
}

.signal-line {
  height: 26px;
  width: 1px;
  background: #536159;
  margin-left: 20px;
}

.metric-card {
  margin-top: 30px;
  background: var(--lime);
  padding: 24px;
  border-radius: 15px;

  display: flex;
  flex-direction: column;
}

.metric-card strong {
  font-size: 24px;
  line-height: 1.08;
}


/* =========================================================
   8. FAIXA DE CONFIANÇA
   ========================================================= */

.trust {
  background: #e5e9e4;
  border-block: 1px solid #d4dbd5;
}

.trust p {
  font-size: 20px;
  max-width: 920px;
  margin: 0;
  padding: 28px 0;
}


/* =========================================================
   9. SEÇÕES GERAIS
   ========================================================= */

.section {
  padding: 94px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.single {
  grid-template-columns: 1fr;
}

.section-heading h2,
.opportunity h2,
.contact h2,
.final-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}


/* =========================================================
   10. SERVIÇOS
   ========================================================= */

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  min-height: 440px;

  display: flex;
  flex-direction: column;
}

.service-card.featured {
  background: #e6ebdf;
}

.service-card .number {
  font-weight: 900;
  color: var(--green);
  margin-bottom: 54px;
}

.service-card h3 {
  font-size: 30px;
  margin: 0 0 12px;
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}

.service-card li {
  padding: 10px 0;
  border-top: 1px solid #dce1dc;
  font-size: 14px;
}


/* =========================================================
   11. SEÇÃO ESCURA / PROCESSO
   ========================================================= */

.dark {
  background: var(--ink);
  color: #fff;
}

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

.dark .section-heading > p {
  color: #aab4ae;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;

  background: #344039;
  border: 1px solid #344039;
  border-radius: 18px;
  overflow: hidden;
}

.steps article {
  background: #17201b;
  padding: 26px;
  min-height: 300px;
}

.steps span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.steps h3 {
  font-size: 22px;
  margin: 80px 0 12px;
}

.steps p {
  color: #aab4ae;
  font-size: 14px;
}


/* =========================================================
   12. CASE / PORTFÓLIO
   ========================================================= */

.case-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.case-visual {
  background: #dfe7db;
  padding: 44px;
}

.browser {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.browser-top {
  height: 42px;
  background: #f0f0ed;

  display: flex;
  align-items: center;
  gap: 6px;

  padding: 0 12px;
}

.browser-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bfc5c0;
}

.browser-top span {
  font-size: 10px;
  color: #7c837e;
  margin-left: 8px;
}

.browser-content {
  min-height: 320px;
  background: linear-gradient(135deg, #e8e4dc, #c8c5bb);
  padding: 50px 38px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.browser-content small {
  font-weight: 900;
  color: #7f6642;
}

.browser-content strong {
  font-size: 34px;
  line-height: 1.02;
  margin: 12px 0;
}

.case-copy {
  padding: 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 900;
}

.case-copy h3 {
  font-size: 34px;
  margin: 12px 0;
}

.case-copy p {
  color: var(--muted);
}


/* =========================================================
   13. OPORTUNIDADE
   ========================================================= */

.opportunity {
  background: #e7ebdd;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-grid span {
  background: #fff;
  border: 1px solid #d8dfd2;
  padding: 17px;
  border-radius: 12px;
  font-weight: 750;
}


/* =========================================================
   14. CONTATO
   ========================================================= */

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 850;
}


/* =========================================================
   15. FORMULÁRIO
   ========================================================= */

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;

  background: var(--bg);
  padding: 28px;

  border-radius: 20px;
  border: 1px solid var(--line);
}

.lead-form label {
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cbd1cc;
  background: #fff;
  border-radius: 9px;
  padding: 13px;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.consent input,
.lead-form .consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
  padding: 0;
  flex: 0 0 16px;
  accent-color: var(--green);
}

.form-note {
  font-size: 11px;
  color: #737d77;
  text-align: center;
}


/* =========================================================
   16. FAQ
   ========================================================= */

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 20px 22px;
  margin-bottom: 10px;
}

.faq summary {
  font-weight: 850;
  cursor: pointer;
}

.faq details p {
  color: var(--muted);
}


/* =========================================================
   17. CTA FINAL
   ========================================================= */

.final-cta {
  background: var(--green2);
  color: #fff;
  padding: 78px 0;
}

.final-cta .eyebrow {
  color: var(--lime);
}

.final-cta h2 {
  max-width: 950px;
  margin-bottom: 30px;
}


/* =========================================================
   18. RODAPÉ
   ========================================================= */

footer {
  background: #0c120f;
  color: #fff;
  padding: 42px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.footer-grid p {
  color: #96a29b;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  font-size: 13px;
}

.copyright {
  border-top: 1px solid #243029;
  margin-top: 26px;
  padding-top: 20px;
  color: #76837b;
  font-size: 12px;
}


/* =========================================================
   19. BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;

  width: 58px;
  height: 58px;

  border-radius: 50%;
  display: grid;
  place-items: center;

  background: #22c55e;
  color: #fff;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}


/* =========================================================
   20. RESPONSIVO — TABLET
   ========================================================= */

@media (max-width: 900px) {
  .nav nav {
    display: none;
  }

  .hero-grid,
  .section-heading,
  .case-card,
  .opportunity-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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


/* =========================================================
   21. RESPONSIVO — MOBILE
   ========================================================= */

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

  .nav .btn {
    display: none;
  }

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

  .hero h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

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

  .steps article {
    min-height: 230px;
  }

  .steps h3 {
    margin-top: 45px;
  }

  .case-visual {
    padding: 18px;
  }

  .browser-content {
    padding: 34px 22px;
  }

  .browser-content strong {
    font-size: 27px;
  }

  .check-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form .full {
    grid-column: auto;
  }
}

/* =========================================================
   22. CORREÇÃO MOBILE — HERO DA HOME
   Evita estouro horizontal e mantém margem lateral
   ========================================================= */

@media (max-width: 620px) {
  .hero {
    width: 100%;
    overflow: hidden;
  }

  .hero .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid {
    width: 100%;
    min-width: 0;
  }

  .hero-grid > * {
    min-width: 0;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(38px, 11vw, 44px);
    line-height: 1;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero .lead {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 18px;
    min-height: 50px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}


/* =========================================================
   23. WORDPRESS / IDENTIDADE ARBOR
   ========================================================= */

.brand img,
.brand .custom-logo {
  display: block;
  width: 140px;
  max-width: 140px;
  height: auto;
}

.brand .custom-logo-link {
  display: block;
  line-height: 0;
}

.menu-arbor {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3f4944;
  font-size: 14px;
}

.menu-arbor li {
  margin: 0;
  padding: 0;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content img {
  height: auto;
}

@media (max-width: 900px) {
  .nav > nav,
  .menu-arbor {
    display: none;
  }
}

@media (max-width: 620px) {
  .brand img,
  .brand .custom-logo {
    width: 130px;
    max-width: 130px;
  }
}

/* =========================================================
   24. MENU MOBILE
   ========================================================= */

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid #bcc5bf;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav {
    position: relative;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
  }

  .nav > .btn {
    order: 3;
  }

  .nav > .primary-navigation,
  .nav > nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 70;
    width: 100%;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(17, 23, 20, .12);
  }

  .nav > .primary-navigation.is-open,
  .nav > nav.is-open {
    display: block;
  }

  .primary-navigation .menu-arbor,
  .nav > .primary-navigation .menu-arbor {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .primary-navigation .menu-arbor a,
  .primary-navigation > a {
    display: block;
    padding: 13px 14px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
  }

  .primary-navigation .menu-arbor a:hover,
  .primary-navigation > a:hover {
    background: var(--bg);
    color: var(--green);
  }
}

@media (max-width: 620px) {
  .brand img,
  .brand .custom-logo {
    width: 130px;
    max-width: 130px;
  }
}


/* =========================================================
   PÁGINA OBRIGADO
   ========================================================= */

.thank-you-page {
  background: var(--bg);
}

.thank-you-hero {
  padding: 82px 0 96px;
}

.thank-you-card {
  position: relative;
  overflow: hidden;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 58px;

  box-shadow: var(--shadow);
}

.thank-you-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: var(--green);
}

.thank-you-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: var(--lime);
  color: var(--green2);
}

.thank-you-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-card h1 {
  max-width: 760px;
  margin: 0 0 20px;

  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.thank-you-lead {
  max-width: 720px;
  margin: 0;

  color: var(--muted);
  font-size: 19px;
}

.thank-you-next {
  margin-top: 46px;
  padding-top: 34px;

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

.thank-you-next-title {
  margin: 0 0 18px;

  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.thank-you-step {
  min-height: 150px;
  padding: 20px;

  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.thank-you-step span {
  display: block;
  margin-bottom: 28px;

  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.thank-you-step p {
  margin: 0;

  color: #48524d;
  font-size: 14px;
  font-weight: 650;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.thank-you-note {
  margin: 22px 0 0;

  color: #7a837e;
  font-size: 12px;
}


/* =========================================================
   PÁGINA OBRIGADO — RESPONSIVO
   ========================================================= */

@media (max-width: 760px) {
  .thank-you-hero {
    padding: 42px 0 62px;
  }

  .thank-you-card {
    padding: 34px 24px;
    border-radius: 20px;
  }

  .thank-you-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
  }

  .thank-you-card h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .thank-you-lead {
    font-size: 17px;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }

  .thank-you-step {
    min-height: 0;
  }

  .thank-you-step span {
    margin-bottom: 14px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}


/* =========================================================
   PÁGINA — CRIAÇÃO DE SITES
   ========================================================= */

.service-page-hero {
  padding: 88px 0 72px;
}

.service-page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.service-page-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(44px, 5.35vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.service-page-hero h1 span {
  color: var(--green);
}

.site-showcase {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid #2c3932;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.site-showcase-top {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid #2c3932;
}

.site-showcase-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66736c;
}

.site-showcase-top span {
  margin-left: 8px;
  color: #8d9992;
  font-size: 10px;
}

.site-showcase-body {
  min-height: 355px;
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.site-showcase-body small {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.site-showcase-body strong {
  max-width: 450px;
  margin: 14px 0;
  font-size: clamp(30px, 3.4vw, 45px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.site-showcase-body p {
  max-width: 410px;
  margin: 0;
  color: #aab4ae;
  font-size: 14px;
}

.site-showcase-button {
  width: max-content;
  margin-top: 28px;
  padding: 12px 17px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.site-showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #2c3932;
}

.site-showcase-metrics span {
  padding: 17px;
  color: #9aa59f;
  border-right: 1px solid #2c3932;
  font-size: 11px;
}

.site-showcase-metrics span:last-child {
  border-right: 0;
}

.site-showcase-metrics b {
  display: block;
  margin-bottom: 4px;
  color: var(--lime);
  font-size: 10px;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.need-grid article {
  min-height: 245px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.need-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.need-grid h3 {
  margin: 70px 0 10px;
  font-size: 22px;
  line-height: 1.08;
}

.need-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

@media (max-width: 620px) {
  .service-page-hero {
    padding: 48px 0 58px;
    overflow: hidden;
  }

  .service-page-hero-grid {
    min-width: 0;
    gap: 42px;
  }

  .service-page-hero-grid > * {
    min-width: 0;
  }

  .service-page-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 50px);
    overflow-wrap: break-word;
  }

  .site-showcase-body {
    min-height: 310px;
    padding: 36px 24px;
  }

  .site-showcase-metrics {
    grid-template-columns: 1fr;
  }

  .site-showcase-metrics span {
    border-right: 0;
    border-bottom: 1px solid #2c3932;
  }

  .site-showcase-metrics span:last-child {
    border-bottom: 0;
  }

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

  .need-grid article {
    min-height: 190px;
  }

  .need-grid h3 {
    margin-top: 42px;
  }
}


/* =========================================================
   PÁGINA — LANDING PAGES
   ========================================================= */

.landing-page-hero .service-page-hero-grid {
  grid-template-columns: 1.06fr 0.94fr;
}

.lp-showcase {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid #2c3932;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lp-showcase-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid #2c3932;
}

.lp-showcase-bar span {
  color: #8d9992;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lp-showcase-bar b {
  color: var(--lime);
  font-size: 11px;
}

.lp-showcase-content {
  min-height: 375px;
  padding: 46px 38px;
  color: #fff;
}

.lp-showcase-content small {
  display: block;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lp-showcase-content > strong {
  display: block;
  max-width: 450px;
  margin: 14px 0;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.lp-showcase-content > p {
  max-width: 410px;
  margin: 0;
  color: #aab4ae;
  font-size: 14px;
}

.lp-fake-form {
  margin-top: 30px;
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  background: #17201b;
  border: 1px solid #314038;
  border-radius: 12px;
}

.lp-fake-form span,
.lp-fake-form b {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 10px;
}

.lp-fake-form span {
  background: #fff;
  color: #7b847f;
}

.lp-fake-form b {
  justify-content: center;
  background: var(--lime);
  color: var(--ink);
}

.lp-showcase-footer {
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid #2c3932;
  color: #8d9992;
  font-size: 11px;
}

.lp-showcase-footer strong {
  color: #fff;
}

@media (max-width: 620px) {
  .lp-showcase-content {
    min-height: 330px;
    padding: 36px 24px;
  }

  .lp-fake-form {
    grid-template-columns: 1fr;
  }

  .lp-showcase-footer {
    flex-wrap: wrap;
    text-align: center;
    padding: 16px;
  }
}


/* =========================================================
   PÁGINA — GOOGLE ADS
   ========================================================= */

.google-ads-hero .service-page-hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.ads-showcase {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.ads-searchbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.ads-searchbar span {
  font-size: 24px;
  line-height: 1;
}

.ads-searchbar b {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.ads-result {
  min-height: 330px;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ads-result small {
  color: var(--muted);
  font-size: 10px;
}

.ads-result strong {
  display: block;
  max-width: 430px;
  margin: 10px 0 12px;
  color: #1647a6;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.ads-result p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ads-links {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.ads-links span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #1647a6;
  font-size: 11px;
  font-weight: 800;
}

.ads-flow {
  min-height: 64px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-top: 1px solid var(--line);
  background: #f8faf8;
  color: var(--muted);
  font-size: 11px;
}

.ads-flow b {
  color: #aab2ad;
}

.ads-flow strong {
  color: var(--green);
}

.ads-investment {
  padding-top: 28px;
}

.ads-investment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding: 40px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.ads-investment-grid h2 {
  margin: 0;
}

.ads-investment-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .ads-investment-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .ads-result {
    min-height: 300px;
    padding: 34px 24px;
  }

  .ads-flow {
    flex-wrap: wrap;
    padding: 16px;
    text-align: center;
  }

  .ads-investment-grid {
    padding: 28px 22px;
  }
}


/* =========================================================
   PÁGINA — SITES + GOOGLE ADS
   ========================================================= */

.sites-ads-hero .service-page-hero-grid {
  grid-template-columns: 1.06fr 0.94fr;
}

.combo-showcase {
  padding: 24px;
  background: var(--ink);
  border: 1px solid #2c3932;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.combo-showcase > div:not(.combo-arrow) {
  padding: 21px 23px;
  border-radius: 14px;
  border: 1px solid #334239;
}

.combo-showcase small {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.combo-showcase strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.18;
}

.combo-search {
  background: #151d18;
}

.combo-ad {
  background: #1a241e;
}

.combo-page {
  background: #202c25;
}

.combo-conversion {
  background: var(--green);
}

.combo-conversion small {
  color: var(--lime);
}

.combo-arrow {
  padding: 8px 0;
  color: #77827c;
  text-align: center;
  font-size: 18px;
}

.journey-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
}

.journey-flow article {
  min-height: 240px;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.journey-flow article span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.journey-flow article h3 {
  margin: 60px 0 10px;
  font-size: 20px;
  line-height: 1.08;
}

.journey-flow article p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.journey-flow > b {
  align-self: center;
  color: #a6afa9;
  font-size: 19px;
}

.combo-investment {
  padding-top: 28px;
}

.combo-investment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding: 40px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.combo-investment-grid h2 {
  margin: 0;
}

.combo-investment-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .journey-flow {
    grid-template-columns: 1fr 1fr;
  }

  .journey-flow > b {
    display: none;
  }
}

@media (max-width: 900px) {
  .combo-investment-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .combo-showcase {
    padding: 16px;
  }

  .journey-flow {
    grid-template-columns: 1fr;
  }

  .journey-flow article {
    min-height: 190px;
  }

  .journey-flow article h3 {
    margin-top: 42px;
  }

  .combo-investment-grid {
    padding: 28px 22px;
  }
}


/* =========================================================
   HEADER — MENU PRINCIPAL V3.6
   ========================================================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a,
.nav-dropdown-toggle {
  position: relative;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.main-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}

.main-nav > a:hover::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-toggle svg {
  width: 10px;
  height: 7px;
  transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 4px);
  left: 50%;
  width: 340px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(17, 23, 20, .14);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 15px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  transition: background .18s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
}

.nav-dropdown-menu strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.nav-dropdown-menu span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .main-nav {
    align-items: stretch;
    gap: 0;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .main-nav > a::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: max-height .25s ease, padding .25s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    max-height: 0;
    padding: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown.is-open:hover .nav-dropdown-menu {
    max-height: 390px;
    padding: 8px 0 12px;
  }

  .nav-dropdown-menu a {
    padding: 12px 14px;
    background: var(--cream);
    border-bottom: 4px solid #fff;
  }

  .nav-dropdown-menu span {
    font-size: 11px;
  }
}


/* =========================================================
   HEADER V3.6.1 — NAVEGAÇÃO ÚNICA DESKTOP + MOBILE
   ========================================================= */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
}

.site-header .brand {
  flex: 0 0 auto;
}

.site-header .brand img {
  display: block;
  width: 140px;
  height: auto;
}

.mobile-menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Remove qualquer navegação legado que eventualmente seja injetada
   por marcação antiga ou estilos anteriores. */
.header-inner > .site-nav,
.header-inner > nav.site-nav,
.header-inner > .menu-primary-container,
.header-inner > .menu-menu-principal-container {
  display: none !important;
}

@media (max-width: 900px) {

  .header-inner {
    position: relative;
    min-height: 72px;
    gap: 16px;
  }

  .site-header .brand img {
    width: 130px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 9px;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-navigation {
    position: absolute;
    z-index: 200;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 12px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(17, 23, 20, .10);
  }

  .header-navigation.is-open {
    display: flex;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    text-align: left;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: max-height .25s ease, padding .25s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    max-height: 0;
    padding: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown.is-open:hover .nav-dropdown-menu {
    max-height: 420px;
    padding: 8px 0 12px;
  }

  .nav-dropdown-menu a {
    margin: 0 0 6px;
    padding: 12px 14px;
    background: var(--cream);
    border-radius: 10px;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* =========================================================
   HEADER V3.6.2 — ESPAÇAMENTO + SUBMENU MOBILE
   ========================================================= */

/* Desktop: dá respiro real para a marca e evita que ela encoste
   visualmente nas bordas superior/inferior do header. */
.site-header {
  overflow: visible;
}

.header-inner {
  min-height: 96px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.site-header .brand img {
  width: 140px;
  max-height: 68px;
  object-fit: contain;
}

/* Garante que o dropdown do desktop continue acima do conteúdo. */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  z-index: 500;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .header-inner {
    min-height: 82px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header .brand {
    align-self: auto;
  }

  .site-header .brand img {
    width: 130px;
    max-height: 58px;
  }

  /* O painel mobile fica preso à largura da janela. */
  .header-navigation {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .main-nav,
  .nav-dropdown {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  /* Remove qualquer posicionamento absoluto herdado do dropdown desktop. */
  .nav-dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    transform: none !important;
  }

  .nav-dropdown-menu a {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }

  .nav-dropdown-menu strong,
  .nav-dropdown-menu span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  /* Evita que o hover de desktop interfira no comportamento de toque. */
  .nav-dropdown:hover .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .header-navigation {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-dropdown-menu a {
    padding-left: 12px;
    padding-right: 12px;
  }
}


/* =========================================================
   TIPOGRAFIA COMERCIAL V3.6.4
   Padrão de H1 para páginas de serviço
   ========================================================= */

.service-page-hero h1 {
  font-size: clamp(44px, 5.35vw, 70px);
}

/* Tablet: mantém impacto sem ocupar largura excessiva */
@media (max-width: 900px) and (min-width: 621px) {
  .service-page-hero h1 {
    font-size: clamp(44px, 7vw, 62px);
  }
}

/* Mobile: reduz levemente também para melhorar as quebras */
@media (max-width: 620px) {
  .service-page-hero h1 {
    font-size: clamp(38px, 10.8vw, 47px);
    line-height: 0.98;
  }
}



/* =========================================================
   PROJETOS — V3.6.5
   ========================================================= */

.projects-page { overflow: hidden; }
.projects-hero { padding: 118px 0 88px; background: var(--cream); }
.projects-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 80px; align-items: end; }
.projects-hero h1 { margin: 14px 0 0; max-width: 850px; font-size: clamp(48px, 5.5vw, 74px); line-height: .98; letter-spacing: -.055em; }
.projects-hero h1 span { color: var(--green); }
.projects-hero-copy { max-width: 500px; padding-bottom: 8px; }
.projects-hero-copy p { margin: 0 0 28px; font-size: 18px; line-height: 1.65; color: var(--text-muted); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--green); font-weight: 700; text-decoration: none; }
.text-link:hover { gap: 14px; }

.projects-featured { background: #fff; }
.projects-section-head { display: grid; grid-template-columns: 1fr .8fr; gap: 64px; align-items: end; margin-bottom: 52px; }
.projects-section-head h2 { margin: 10px 0 0; font-size: clamp(38px, 4.2vw, 60px); letter-spacing: -.045em; }
.projects-section-head > p { margin: 0; color: var(--text-muted); line-height: 1.7; }

.project-showcase { display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; }
.project-showcase-visual { position: relative; display: block; min-height: 610px; padding: 58px 50px; border-radius: 28px; overflow: hidden; background: #e7e3db; text-decoration: none; }
.project-browser { position: relative; z-index: 1; width: 92%; border-radius: 15px; overflow: hidden; background: #fff; box-shadow: 0 30px 70px rgba(16,28,24,.18); transform: rotate(-1deg); }
.project-browser-bar { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 12px; background: #f2f2f2; }
.project-browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #c9c9c9; }
.project-browser-address { margin-left: 8px; padding: 4px 14px; width: 58%; border-radius: 10px; background: #fff; color: #9a9a9a; font-size: 8px; }
.alumina-preview { min-height: 405px; padding: 25px 30px; color: #fff; background: linear-gradient(135deg,#27302d,#121917); }
.alumina-preview-nav { display: flex; justify-content: space-between; align-items: center; padding-bottom: 62px; }
.alumina-preview-nav strong { letter-spacing: .16em; font-size: 13px; }
.alumina-preview-nav div { display:flex; gap:14px; }
.alumina-preview-nav i { display:block; width:25px; height:2px; background:rgba(255,255,255,.4); }
.alumina-preview-content { max-width: 72%; }
.alumina-preview-content > span { font-size: 8px; letter-spacing: .13em; opacity: .7; }
.alumina-preview-content h3 { margin: 12px 0; font-size: clamp(25px,2.5vw,40px); line-height: 1.02; letter-spacing: -.04em; }
.alumina-preview-content p { max-width: 400px; font-size: 10px; line-height: 1.6; opacity: .7; }
.alumina-preview-content b { display:inline-block; margin-top:14px; padding:10px 15px; background:#e3c691; color:#18201d; font-size:8px; border-radius:3px; }
.alumina-preview-lines { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:50px; }
.alumina-preview-lines i { height:45px; border-top:1px solid rgba(255,255,255,.2); }

.project-phone { position:absolute; z-index:2; right:24px; bottom:32px; width:154px; padding:7px; border-radius:25px; background:#161b19; box-shadow:0 25px 55px rgba(0,0,0,.25); transform:rotate(3deg); }
.project-phone-screen { min-height:310px; padding:20px 14px; border-radius:19px; color:#fff; background:linear-gradient(155deg,#35403c,#121816); }
.project-phone-screen strong { display:block; margin-bottom:65px; font-size:9px; letter-spacing:.14em; }
.project-phone-screen span { display:block; font-size:6px; letter-spacing:.1em; opacity:.65; }
.project-phone-screen h4 { margin:10px 0 22px; font-size:18px; line-height:1.05; letter-spacing:-.04em; }
.project-phone-screen b { display:inline-block; padding:8px 9px; border-radius:2px; background:#e3c691; color:#18201d; font-size:6px; }

.project-tags { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:25px; }
.project-tags span { padding:8px 11px; border:1px solid rgba(28,54,45,.14); border-radius:999px; color:var(--green); font-size:12px; font-weight:700; }
.project-showcase-info h3 { margin:0 0 20px; font-size:clamp(30px,3vw,45px); line-height:1.04; letter-spacing:-.045em; }
.project-showcase-info > p { color:var(--text-muted); line-height:1.75; }
.project-details { margin:30px 0; border-top:1px solid rgba(28,54,45,.12); }
.project-details > div { display:grid; grid-template-columns:110px 1fr; gap:20px; padding:16px 0; border-bottom:1px solid rgba(28,54,45,.12); }
.project-details small { color:var(--text-muted); }
.project-details strong { font-size:14px; }

.projects-thinking { background:var(--green); color:#fff; }
.projects-thinking-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:100px; }
.projects-thinking h2 { margin:12px 0 0; max-width:600px; font-size:clamp(38px,4.3vw,62px); line-height:1.02; letter-spacing:-.05em; }
.projects-thinking .eyebrow { color:var(--lime); }
.projects-thinking-list > div { display:grid; grid-template-columns:45px 1fr; gap:22px; padding:25px 0; border-bottom:1px solid rgba(255,255,255,.14); }
.projects-thinking-list > div:first-child { padding-top:0; }
.projects-thinking-list > div > span { color:var(--lime); font-size:12px; font-weight:700; }
.projects-thinking-list h3 { margin:0 0 8px; font-size:22px; }
.projects-thinking-list p { margin:0; color:rgba(255,255,255,.7); line-height:1.65; }

.projects-coming { background:var(--cream); }
.projects-coming-card { padding:64px; border:1px solid rgba(28,54,45,.13); border-radius:24px; background:rgba(255,255,255,.5); }
.projects-coming-card h2 { margin:12px 0 14px; font-size:clamp(36px,4vw,56px); letter-spacing:-.045em; }
.projects-coming-card p { max-width:680px; margin:0 0 26px; color:var(--text-muted); line-height:1.7; }

.projects-cta { background:#fff; text-align:center; }
.projects-cta-inner { max-width:950px; }
.projects-cta h2 { margin:14px auto 32px; font-size:clamp(38px,4.5vw,64px); line-height:1.03; letter-spacing:-.05em; }
.projects-cta-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

@media (max-width: 900px) {
  .projects-hero { padding:88px 0 68px; }
  .projects-hero-grid, .projects-section-head, .project-showcase, .projects-thinking-grid { grid-template-columns:1fr; gap:42px; }
  .projects-hero-copy { max-width:650px; }
  .project-showcase-visual { min-height:550px; }
  .projects-thinking-grid { gap:58px; }
}

@media (max-width: 620px) {
  .projects-hero { padding:68px 0 54px; }
  .projects-hero h1 { font-size:clamp(39px,11vw,49px); }
  .projects-hero-copy p { font-size:16px; }
  .projects-section-head { margin-bottom:32px; }
  .project-showcase-visual { min-height:390px; padding:28px 18px; border-radius:20px; }
  .project-browser { width:96%; }
  .alumina-preview { min-height:285px; padding:18px; }
  .alumina-preview-nav { padding-bottom:40px; }
  .alumina-preview-nav div { display:none; }
  .alumina-preview-content { max-width:82%; }
  .alumina-preview-content h3 { font-size:24px; }
  .alumina-preview-content p { display:none; }
  .alumina-preview-lines { margin-top:35px; }
  .project-phone { width:105px; right:8px; bottom:18px; border-radius:18px; }
  .project-phone-screen { min-height:215px; padding:14px 9px; border-radius:13px; }
  .project-phone-screen strong { margin-bottom:42px; font-size:6px; }
  .project-phone-screen h4 { font-size:13px; margin:7px 0 13px; }
  .project-details > div { grid-template-columns:1fr; gap:4px; }
  .projects-coming-card { padding:36px 26px; }
}


/* =========================================================
   SOBRE — V3.6.6
   ========================================================= */

.about-page { overflow:hidden; }
.about-hero { padding:118px 0 92px; background:var(--cream); }
.about-hero-grid { display:grid; grid-template-columns:1.12fr .88fr; gap:80px; align-items:end; }
.about-hero h1 { margin:14px 0 0; max-width:880px; font-size:clamp(46px,5.25vw,70px); line-height:.98; letter-spacing:-.055em; }
.about-hero h1 span { color:var(--green); }
.about-hero-copy { max-width:510px; padding-bottom:8px; }
.about-hero-copy p { margin:0 0 28px; font-size:18px; line-height:1.68; color:var(--text-muted); }

.about-intro { background:#fff; }
.about-intro-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:90px; }
.about-statement h2 { margin:13px 0 0; max-width:700px; font-size:clamp(38px,4.3vw,60px); line-height:1.03; letter-spacing:-.05em; }
.about-intro-copy { padding-top:30px; }
.about-intro-copy p { margin:0 0 22px; color:var(--text-muted); font-size:17px; line-height:1.78; }

.about-pillars { background:var(--green); color:#fff; }
.about-pillars .eyebrow { color:var(--lime); }
.about-section-head { max-width:760px; margin-bottom:55px; }
.about-section-head h2 { margin:12px 0 0; font-size:clamp(38px,4.5vw,62px); line-height:1.02; letter-spacing:-.05em; }
.about-pillars-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.16); }
.about-pillars-grid article { min-height:315px; padding:32px 34px 20px 0; }
.about-pillars-grid article + article { padding-left:34px; border-left:1px solid rgba(255,255,255,.16); }
.about-pillars-grid article > span { color:var(--lime); font-size:12px; font-weight:800; }
.about-pillars-grid h3 { margin:70px 0 14px; font-size:30px; letter-spacing:-.035em; }
.about-pillars-grid p { margin:0; color:rgba(255,255,255,.7); line-height:1.7; }

.about-meaning { background:var(--cream); }
.about-meaning-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.about-wordmark { position:relative; display:flex; min-height:430px; align-items:center; justify-content:center; border-radius:26px; overflow:hidden; background:var(--green); }
.about-wordmark span { position:relative; z-index:2; color:#fff; font-size:clamp(56px,8vw,108px); font-weight:800; letter-spacing:-.07em; }
.about-wordmark i { position:absolute; width:260px; height:260px; border:1px solid rgba(205,255,73,.35); border-radius:50%; }
.about-wordmark i::before, .about-wordmark i::after { content:""; position:absolute; border:1px solid rgba(205,255,73,.2); border-radius:50%; }
.about-wordmark i::before { inset:-55px; }
.about-wordmark i::after { inset:-110px; }
.about-meaning h2 { margin:12px 0 20px; font-size:clamp(38px,4.3vw,60px); line-height:1.02; letter-spacing:-.05em; }
.about-meaning p { color:var(--text-muted); line-height:1.76; }

.about-method { background:#fff; }
.about-method-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:100px; }
.about-method h2 { margin:12px 0 0; max-width:570px; font-size:clamp(38px,4.2vw,60px); line-height:1.02; letter-spacing:-.05em; }
.about-method-list > div { display:grid; grid-template-columns:46px 1fr; gap:24px; padding:25px 0; border-bottom:1px solid rgba(28,54,45,.13); }
.about-method-list > div:first-child { padding-top:0; }
.about-method-list strong { color:var(--green); font-size:12px; }
.about-method-list h3 { margin:0 0 8px; font-size:22px; }
.about-method-list p { margin:0; color:var(--text-muted); line-height:1.65; }

.about-beliefs { background:#f1f0ea; }
.about-beliefs-head { max-width:800px; margin-bottom:50px; }
.about-beliefs-head h2 { margin:12px 0 0; font-size:clamp(38px,4.3vw,60px); line-height:1.03; letter-spacing:-.05em; }
.about-beliefs-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.about-beliefs-grid article { min-height:230px; padding:30px; border:1px solid rgba(28,54,45,.12); border-radius:18px; background:rgba(255,255,255,.55); }
.about-beliefs-grid span { display:block; margin-bottom:78px; color:var(--green); font-size:19px; font-weight:800; }
.about-beliefs-grid p { margin:0; color:var(--text-muted); line-height:1.6; }

.about-cta { background:#fff; text-align:center; }
.about-cta-inner { max-width:980px; }
.about-cta h2 { margin:14px auto 32px; font-size:clamp(38px,4.5vw,64px); line-height:1.03; letter-spacing:-.05em; }
.about-cta-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

@media (max-width:900px) {
  .about-hero { padding:88px 0 70px; }
  .about-hero-grid, .about-intro-grid, .about-meaning-grid, .about-method-grid { grid-template-columns:1fr; gap:46px; }
  .about-hero-copy { max-width:680px; }
  .about-intro-copy { padding-top:0; }
  .about-pillars-grid { grid-template-columns:1fr; }
  .about-pillars-grid article { min-height:auto; padding:30px 0; }
  .about-pillars-grid article + article { padding-left:0; border-left:0; border-top:1px solid rgba(255,255,255,.16); }
  .about-pillars-grid h3 { margin:35px 0 12px; }
  .about-wordmark { min-height:350px; }
  .about-method-grid { gap:58px; }
  .about-beliefs-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:620px) {
  .about-hero { padding:68px 0 55px; }
  .about-hero h1 { font-size:clamp(38px,10.7vw,48px); }
  .about-hero-copy p { font-size:16px; }
  .about-wordmark { min-height:285px; }
  .about-beliefs-grid { grid-template-columns:1fr; }
  .about-beliefs-grid article { min-height:auto; }
  .about-beliefs-grid span { margin-bottom:38px; }
}


/* =========================================================
   CONTEÚDOS / BLOG — V3.6.7
   ========================================================= */
.content-hub, .single-content, .content-archive { overflow:hidden; }
.content-hero { padding:118px 0 92px; background:var(--cream); }
.content-hero-grid { display:grid; grid-template-columns:1.12fr .88fr; gap:80px; align-items:end; }
.content-hero h1 { margin:14px 0 0; max-width:850px; font-size:clamp(46px,5.25vw,70px); line-height:.98; letter-spacing:-.055em; }
.content-hero h1 span { color:var(--green); }
.content-hero-copy { max-width:510px; padding-bottom:8px; }
.content-hero-copy p { margin:0 0 28px; font-size:18px; line-height:1.68; color:var(--text-muted); }

.content-featured { background:#fff; }
.featured-article { display:grid; grid-template-columns:1.08fr .92fr; gap:64px; align-items:center; margin-top:25px; }
.featured-article-visual { display:block; min-height:480px; border-radius:24px; overflow:hidden; background:#e9e8e2; }
.featured-article-visual img { width:100%; height:100%; min-height:480px; object-fit:cover; }
.article-placeholder { position:relative; display:flex; width:100%; min-height:100%; height:100%; align-items:center; justify-content:center; overflow:hidden; background:var(--green); color:#fff; }
.article-placeholder span { position:relative; z-index:2; font-size:clamp(38px,5vw,72px); font-weight:800; letter-spacing:-.06em; }
.article-placeholder i { position:absolute; width:220px; height:220px; border:1px solid rgba(205,255,73,.3); border-radius:50%; }
.article-placeholder i::before, .article-placeholder i::after { content:""; position:absolute; border:1px solid rgba(205,255,73,.18); border-radius:50%; }
.article-placeholder i::before { inset:-50px; }
.article-placeholder i::after { inset:-100px; }
.article-meta { display:flex; flex-wrap:wrap; gap:14px; align-items:center; color:var(--text-muted); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.article-meta span { color:var(--green); }
.featured-article-copy h2 { margin:16px 0 18px; font-size:clamp(36px,4vw,56px); line-height:1.03; letter-spacing:-.05em; }
.featured-article-copy h2 a, .article-card h3 a { color:inherit; text-decoration:none; }
.featured-article-copy p { margin:0 0 25px; color:var(--text-muted); line-height:1.7; }

.content-empty-intro { background:#fff; }
.content-empty-card { max-width:900px; padding:55px; border:1px solid rgba(28,54,45,.12); border-radius:24px; background:var(--cream); }
.content-empty-card h2 { margin:12px 0 15px; font-size:clamp(36px,4vw,56px); line-height:1.04; letter-spacing:-.045em; }
.content-empty-card p { color:var(--text-muted); }

.content-list { background:#f4f3ee; }
.content-list-head { display:flex; justify-content:space-between; gap:30px; align-items:end; margin-bottom:42px; }
.content-list-head h2 { margin:10px 0 0; font-size:clamp(36px,4vw,56px); letter-spacing:-.045em; }
.content-category-list { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px; }
.content-category-list a { padding:8px 12px; border:1px solid rgba(28,54,45,.15); border-radius:999px; color:var(--green); text-decoration:none; font-size:12px; font-weight:700; }
.article-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.article-card { overflow:hidden; border:1px solid rgba(28,54,45,.1); border-radius:18px; background:#fff; }
.article-card-image { display:block; height:240px; overflow:hidden; background:var(--green); }
.article-card-image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.article-card:hover .article-card-image img { transform:scale(1.025); }
.article-card-body { padding:25px; }
.article-card h3 { margin:14px 0 12px; font-size:25px; line-height:1.08; letter-spacing:-.035em; }
.article-card p { margin:0 0 20px; color:var(--text-muted); line-height:1.65; font-size:14px; }
.article-card .text-link { font-size:13px; }
.content-pagination { margin-top:48px; }
.content-pagination ul { display:flex; gap:8px; justify-content:center; padding:0; list-style:none; }
.content-pagination a, .content-pagination span { display:flex; width:40px; height:40px; align-items:center; justify-content:center; border:1px solid rgba(28,54,45,.14); border-radius:50%; color:var(--green); text-decoration:none; }
.content-pagination .current { background:var(--green); color:#fff; }
.content-empty-small { padding:28px; border:1px solid rgba(28,54,45,.12); border-radius:16px; background:#fff; color:var(--text-muted); }

.content-topics { background:var(--green); color:#fff; }
.content-topics .eyebrow { color:var(--lime); }
.content-topics-head { max-width:780px; margin-bottom:48px; }
.content-topics-head h2 { margin:12px 0 0; font-size:clamp(38px,4.4vw,62px); line-height:1.02; letter-spacing:-.05em; }
.content-topics-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.15); }
.content-topics-grid a { min-height:290px; padding:28px 28px 20px 0; color:#fff; text-decoration:none; }
.content-topics-grid a + a { padding-left:28px; border-left:1px solid rgba(255,255,255,.15); }
.content-topics-grid span { color:var(--lime); font-size:12px; font-weight:800; }
.content-topics-grid h3 { margin:72px 0 12px; font-size:25px; }
.content-topics-grid p { margin:0; color:rgba(255,255,255,.68); line-height:1.6; font-size:14px; }

.content-cta { background:#fff; text-align:center; }
.content-cta-inner { max-width:930px; }
.content-cta h2 { margin:14px auto 32px; font-size:clamp(38px,4.4vw,62px); line-height:1.03; letter-spacing:-.05em; }
.content-cta-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

/* Artigo individual */
.single-content-hero { padding:105px 0 65px; background:var(--cream); }
.single-content-head { max-width:950px; }
.single-content-head h1 { margin:18px 0 20px; font-size:clamp(44px,5.3vw,72px); line-height:.99; letter-spacing:-.055em; }
.single-content-excerpt { max-width:760px; margin:0; color:var(--text-muted); font-size:19px; line-height:1.65; }
.single-content-cover { margin-top:55px; }
.single-content-cover img { display:block; width:100%; max-height:650px; object-fit:cover; border-radius:24px; }
.single-content-layout { display:grid; grid-template-columns:minmax(0,720px) 310px; justify-content:center; gap:80px; padding-top:80px; padding-bottom:80px; }
.single-content-body { font-size:17px; line-height:1.8; }
.single-content-body h2 { margin:52px 0 18px; font-size:36px; line-height:1.08; letter-spacing:-.04em; }
.single-content-body h3 { margin:38px 0 14px; font-size:27px; line-height:1.12; }
.single-content-body p { margin:0 0 22px; color:#3d4844; }
.single-content-body ul, .single-content-body ol { margin:0 0 25px; padding-left:24px; }
.single-content-body li { margin-bottom:9px; }
.single-content-body img { max-width:100%; height:auto; border-radius:14px; }
.single-content-body a { color:var(--green); font-weight:700; }
.single-content-aside { position:relative; }
.single-aside-card { position:sticky; top:120px; padding:28px; border-radius:18px; background:var(--green); color:#fff; }
.single-aside-card > span { color:var(--lime); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }
.single-aside-card h2 { margin:14px 0 12px; font-size:27px; line-height:1.08; }
.single-aside-card p { margin:0 0 22px; color:rgba(255,255,255,.7); line-height:1.6; font-size:14px; }
.single-content-footer { padding:0 0 80px; }

/* Categorias */
.content-archive-hero { padding:105px 0 70px; background:var(--cream); }
.content-archive-hero h1 { margin:12px 0 0; font-size:clamp(44px,5vw,68px); letter-spacing:-.05em; }
.archive-description { max-width:700px; margin-top:18px; color:var(--text-muted); line-height:1.7; }

@media (max-width:900px) {
  .content-hero { padding:88px 0 70px; }
  .content-hero-grid, .featured-article, .single-content-layout { grid-template-columns:1fr; gap:44px; }
  .content-hero-copy { max-width:680px; }
  .article-grid { grid-template-columns:repeat(2,1fr); }
  .content-topics-grid { grid-template-columns:repeat(2,1fr); }
  .content-topics-grid a:nth-child(3) { border-left:0; border-top:1px solid rgba(255,255,255,.15); }
  .content-topics-grid a:nth-child(4) { border-top:1px solid rgba(255,255,255,.15); }
  .single-content-layout { max-width:760px; }
  .single-aside-card { position:static; }
}

@media (max-width:620px) {
  .content-hero { padding:68px 0 55px; }
  .content-hero h1 { font-size:clamp(38px,10.7vw,48px); }
  .content-hero-copy p { font-size:16px; }
  .featured-article-visual { min-height:300px; }
  .featured-article-visual img { min-height:300px; }
  .content-list-head { align-items:flex-start; flex-direction:column; }
  .content-category-list { justify-content:flex-start; }
  .article-grid { grid-template-columns:1fr; }
  .article-card-image { height:220px; }
  .content-topics-grid { grid-template-columns:1fr; }
  .content-topics-grid a, .content-topics-grid a + a { min-height:auto; padding:27px 0; border-left:0; border-top:1px solid rgba(255,255,255,.15); }
  .content-topics-grid a:first-child { border-top:0; }
  .content-topics-grid h3 { margin:30px 0 10px; }
  .content-empty-card { padding:34px 25px; }
  .single-content-hero { padding:72px 0 45px; }
  .single-content-head h1 { font-size:clamp(38px,10.5vw,48px); }
  .single-content-excerpt { font-size:17px; }
  .single-content-cover { margin-top:30px; }
  .single-content-cover img { border-radius:16px; }
  .single-content-layout { padding-top:55px; padding-bottom:55px; }
  .single-content-body { font-size:16px; }
  .single-content-body h2 { font-size:30px; }
}


/* =========================================================
   HERO RESPONSIVO — SERVIÇOS V3.6.9
   Corrige Landing Pages, Google Ads e Sites + Google Ads
   em tablet e mobile. Deve permanecer no final do CSS para
   sobrescrever as grades específicas definidas anteriormente.
   ========================================================= */

/* TABLET + MOBILE */
@media (max-width: 900px) {
  .landing-page-hero .service-page-hero-grid,
  .google-ads-hero .service-page-hero-grid,
  .sites-ads-hero .service-page-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 46px !important;
    align-items: start !important;
  }

  .landing-page-hero .service-page-hero-grid > *,
  .google-ads-hero .service-page-hero-grid > *,
  .sites-ads-hero .service-page-hero-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .landing-page-hero h1,
  .google-ads-hero h1,
  .sites-ads-hero h1 {
    max-width: 780px !important;
    font-size: clamp(46px, 7vw, 60px) !important;
    line-height: .98 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .landing-page-hero .lp-showcase,
  .google-ads-hero .ads-showcase,
  .sites-ads-hero .combo-showcase {
    width: 100% !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
}

/* MOBILE */
@media (max-width: 620px) {
  .landing-page-hero,
  .google-ads-hero,
  .sites-ads-hero {
    padding: 48px 0 58px !important;
    overflow: hidden;
  }

  .landing-page-hero .service-page-hero-grid,
  .google-ads-hero .service-page-hero-grid,
  .sites-ads-hero .service-page-hero-grid {
    gap: 36px !important;
  }

  .landing-page-hero h1,
  .google-ads-hero h1,
  .sites-ads-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(37px, 10.5vw, 44px) !important;
    line-height: 1 !important;
    letter-spacing: -.045em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .landing-page-hero h1 span,
  .google-ads-hero h1 span,
  .sites-ads-hero h1 span {
    display: inline;
  }

  .landing-page-hero .lead,
  .google-ads-hero .lead,
  .sites-ads-hero .lead {
    max-width: 100%;
    font-size: 16px;
  }

  .landing-page-hero .hero-actions,
  .google-ads-hero .hero-actions,
  .sites-ads-hero .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .landing-page-hero .lp-showcase,
  .google-ads-hero .ads-showcase,
  .sites-ads-hero .combo-showcase {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 390px) {
  .landing-page-hero h1,
  .google-ads-hero h1,
  .sites-ads-hero h1 {
    font-size: 36px !important;
  }
}


/* =========================================================
   HOME — PROOF STRIP MOBILE V3.6.11
   Corrige a faixa:
   ESTRATÉGIA · DESENVOLVIMENTO · TRÁFEGO · MENSURAÇÃO
   ========================================================= */
@media (max-width: 620px) {
  .hero .proof-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 18px !important;
    row-gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 36px !important;
    align-items: center !important;
    justify-items: start !important;
    overflow: visible !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  .hero .proof-strip span {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .hero .proof-strip i {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .hero .proof-strip {
    column-gap: 10px !important;
  }

  .hero .proof-strip span {
    font-size: 10.5px !important;
  }
}

