/*
Theme Name: Guinar Premium
Theme URI: https://guinar.online/
Author: Guinar Online
Version: 5.1.0
Description: Tema premium, clean e minimalista para a Guinar Online. Design system consolidado, acessibilidade, contraste, responsividade e Core Web Vitals.
Text Domain: guinar
*/

:root {
  --dark: #0B2D30;
  --dark-2: #123E42;
  --dark-3: #061C1F;
  --yellow: #F4BE2A;
  --yellow-2: #DFA51D;
  --white: #FFFFFF;
  --light: #F6F4EE;
  --surface: #FFFFFF;
  --surface-2: #FBFAF7;
  --gray: #E8E2D6;
  --text: #172426;
  --muted: #667579;
  --line: rgba(13,43,46,.10);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 22px 70px rgba(13, 43, 46, .10);
  --shadow-soft: 0 12px 40px rgba(13, 43, 46, .07);
  --container: 1180px;
  --space-section: clamp(70px, 8vw, 112px);
}


/* RESET / BASE */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 18px;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

::selection {
  background: var(--yellow);
  color: var(--dark);
}

/* HEADER */

.site-header {
  background: var(--dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

body.admin-bar .site-header {
  top: 32px;
}

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

.brand {
  display: flex;
  align-items: center;
  height: 60px;
  flex: 0 0 auto;
}

.brand img {
  width: 200px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand span {
  color: var(--yellow);
}

/* MENU DESKTOP */

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

.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .menu li {
  position: relative;
  margin: 0;
  padding: 0;
}

.main-nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.main-nav .menu > li > a:hover,
.main-nav .menu > li.current-menu-item > a,
.main-nav .menu > li.current-menu-ancestor > a {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--dark);
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(255,193,7,.18);
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nav-cta {
  white-space: nowrap;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  background: var(--yellow-2);
}

.btn.secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}

/* DROPDOWN DESKTOP */

.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: rgba(7,30,32,.98);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.main-nav .menu li:hover > .sub-menu,
.main-nav .menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav .sub-menu a:hover {
  background: rgba(255,255,255,.08);
  color: var(--yellow);
}

/* MENU MOBILE */

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  width: 28px;
  background: var(--white);
  border-radius: 99px;
  display: block;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,193,7,.12), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  padding: 112px 0 96px;
  overflow: hidden;
}

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

.eyebrow {
  display: inline-flex;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: .94;
  letter-spacing: -0.06em;
  margin: 0 0 26px;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--yellow);
}

.hero p,
.page-hero p {
  max-width: 640px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,.84);
}

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

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
}

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

.metric {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 22px;
}

.metric strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.04em;
  color: var(--yellow);
}

.metric small {
  color: rgba(255,255,255,.72);
}

/* PAGE HERO */

.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  padding: 90px 0 76px;
}

/* SECTIONS */

.section {
  padding: 88px 0;
}

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

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

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
}

.section-title span {
  color: var(--yellow);
}

.section:not(.dark) .section-title span,
.section.light .section-title span {
  color: var(--dark);
}

.section.dark .section-title span,
.dark .section-title span {
  color: var(--yellow);
}

.section-text {
  font-size: 18px;
  color: var(--muted);
}

.dark .section-text {
  color: rgba(255,255,255,.76);
}

/* GRID / CARDS */

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: var(--white);
  color: var(--text);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card.soft {
  box-shadow: none;
  border: 1px solid rgba(13,43,46,.08);
}

.dark .card {
  background: rgba(255,255,255,.065);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

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

.dark .card p {
  color: rgba(255,255,255,.72);
}

.card a,
.card.soft a,
.section.light .card a,
.section:not(.dark) .card a {
  color: var(--dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.dark .card a {
  color: var(--yellow);
}

.pill,
.card.soft .pill {
  display: inline-flex;
  background: rgba(13,43,46,.08);
  color: var(--dark);
  border: 1px solid rgba(13,43,46,.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 16px;
}

.stars,
.card .stars,
.dark .card .stars,
p.stars {
  color: var(--yellow);
  letter-spacing: .08em;
  font-weight: 900;
}

/* LISTAS */

.clean-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  columns: 2;
  column-gap: 22px;
}

.clean-list li {
  break-inside: avoid;
  margin: 0 0 10px;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.clean-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: .7em;
}

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(13,43,46,.08);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

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

/* CTA */

.cta-band {
  background:
    radial-gradient(circle at 90% 30%, rgba(255,193,7,.14), transparent 30%),
    var(--dark);
  color: var(--white);
  border-radius: 34px;
  padding: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.cta-band p {
  color: rgba(255,255,255,.76);
}

/* BLOG LIST */

.post-list {
  display: grid;
  gap: 26px;
}

.post-item {
  border-bottom: 1px solid var(--gray);
  padding-bottom: 26px;
}

.post-item h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

/* SINGLE POST */

.post-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  padding: 64px 0 52px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

.breadcrumb a {
  color: rgba(255,255,255,.78);
}

.post-hero h1,
.article h1 {
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 0 0 20px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-size: 15px;
}

.post-cover {
  background: var(--dark);
  padding: 0 0 34px;
}

.featured-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
  align-items: start;
}

.article-content {
  max-width: 790px;
}

.article-content h2 {
  margin-top: 46px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-content h3 {
  margin-top: 34px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.article-content p,
.article-content li {
  font-size: 19px;
  color: #2b3335;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin: 24px 0;
}

.article-content a {
  color: var(--dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 44px 0;
  padding-top: 24px;
  border-top: 1px solid var(--gray);
}

.post-actions a,
.like-btn {
  border: 1px solid rgba(13,43,46,.12);
  background: var(--white);
  color: var(--dark);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
}

.like-btn.is-liked {
  background: var(--yellow);
  border-color: var(--yellow);
}

.article-cta {
  margin-top: 28px;
}

.post-sidebar {
  position: sticky;
  top: 104px;
}

.sidebar-box {
  background: var(--light);
  border: 1px solid rgba(13,43,46,.08);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 18px;
}

.sidebar-box h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.sidebar-box a {
  display: block;
  color: var(--dark);
  font-weight: 750;
  margin-bottom: 10px;
}

.related-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

/* FOOTER */

.site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(244,190,42,.12), transparent 28%),
    linear-gradient(180deg, var(--dark), var(--dark-3));
  color: var(--white);
  padding: 78px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 44px;
}

.footer-brand,
.footer-proof {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
}

.footer-brand strong {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  line-height: .95;
  letter-spacing: -0.065em;
}

.footer-brand span { color: var(--yellow); }

.footer-brand p {
  max-width: 440px;
  margin: 16px 0 24px;
  color: rgba(255,255,255,.70);
  font-size: 18px;
}

.footer-cta {
  display: inline-flex;
  color: var(--yellow);
  font-weight: 850;
}

.footer-proof {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.footer-proof span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-proof strong {
  max-width: 420px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.footer-title {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 900;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,.74);
  margin-bottom: 10px;
  font-size: 15px;
}

.site-footer a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 999px;
  font-weight: 900;
}


:focus-visible {
  outline: 3px solid rgba(244,190,42,.72);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto;
    transition-duration: .01ms;
    animation-duration: .01ms;
    animation-iteration-count: 1;
  }
}

/* RESPONSIVO */

@media (max-width: 900px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 180px;
    max-height: 52px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    background: rgba(7,30,32,.98);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

  body.admin-bar .main-nav {
    top: 104px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .main-nav .menu > li > a {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    background: rgba(255,255,255,.04);
  }

  .main-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    margin: 6px 0 4px 12px;
    padding: 8px;
    background: rgba(255,255,255,.045);
    border-radius: 16px;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,.07);
  }

  .main-nav .sub-menu a {
    padding: 11px 12px;
    font-size: 15px;
    color: rgba(255,255,255,.75);
  }

  .nav-cta {
    width: 100%;
    padding: 15px 18px;
    border-radius: 18px;
    font-size: 16px;
  }

  .hero {
    padding: 78px 0 72px;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .steps,
  .footer-grid,
  .footer-top,
  .cta-band,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 68px 0;
  }

  .hero-card {
    padding: 24px;
  }

  .post-sidebar {
    position: static;
  }

  .post-cover {
    padding-bottom: 20px;
  }

  .featured-img {
    border-radius: 20px;
  }
}

@media (max-width: 700px) {
  .clean-list {
    columns: 1;
  }

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

  .brand img {
    width: 160px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.project-actions a {
  display: inline-flex;
}


.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.post-info h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.post-info p {
  font-size: 15px;
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--light);
  font-weight: 700;
}

.pagination .current {
  background: var(--yellow);
  color: var(--dark);
}

.empty-state {
  text-align: center;
  padding: 60px 0;
}

.timeline-section {
  overflow: hidden;
}

.timeline-startup {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 20px;
  padding: 34px 0 8px;
}

.timeline-startup::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(13,43,46,0),
    rgba(13,43,46,.18),
    rgba(255,193,7,.55),
    rgba(13,43,46,.18),
    rgba(13,43,46,0)
  );
}

.timeline-item {
  position: relative;
  min-width: 0;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  margin: 7px 0 24px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow:
    0 0 0 8px rgba(255,193,7,.16),
    0 0 32px rgba(255,193,7,.34);
}

.timeline-card {
  min-height: 245px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(13,43,46,.08);
  box-shadow: 0 22px 70px rgba(13,43,46,.08);
  backdrop-filter: blur(14px);
}

.timeline-year {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13,43,46,.08);
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.timeline-card p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

@media (max-width: 1100px) {
  .timeline-startup {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-item {
    flex: 0 0 290px;
    scroll-snap-align: start;
  }

  .timeline-startup::before {
    width: calc(290px * 5);
    right: auto;
  }
}

@media (max-width: 700px) {
  .timeline-startup {
    gap: 16px;
  }

  .timeline-item {
    flex-basis: 82vw;
  }

  .timeline-card {
    min-height: 230px;
  }
}

/* CONTRASTE PREMIUM / CTA HARDENING v2.1 */
.cta-band h2 span,
.cta-band .eyebrow {
  color: var(--yellow);
}

.cta-band .btn,
.section.dark .btn,
.page-hero .btn,
.hero .btn {
  background: var(--yellow);
  color: var(--dark-3);
  border: 1px solid rgba(244,190,42,.62);
  box-shadow: 0 14px 34px rgba(244,190,42,.22);
}

.cta-band .btn:hover,
.section.dark .btn:hover,
.page-hero .btn:hover,
.hero .btn:hover {
  background: #FFD34D;
  color: var(--dark-3);
}

.cta-band .btn.secondary,
.section.dark .btn.secondary,
.page-hero .btn.secondary,
.hero .btn.secondary {
  background: rgba(255,255,255,.10);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
}

.cta-band .btn.secondary:hover,
.section.dark .btn.secondary:hover,
.page-hero .btn.secondary:hover,
.hero .btn.secondary:hover {
  background: rgba(255,255,255,.16);
  color: #FFFFFF;
}

.cta-band p,
.hero p,
.page-hero p,
.dark .section-text,
.dark .card p {
  color: rgba(255,255,255,.82);
}

.site-footer a,
.footer-bottom {
  color: rgba(255,255,255,.78);
}

@media (max-width: 700px) {
  .cta-band {
    border-radius: 28px;
  }
}


/* =========================================================
   DESIGN SYSTEM CONSOLIDADO v3.0
   CSS inline removido dos templates. CTAs, tipografia, mobile e contraste revisados.
   ========================================================= */

/* Migrado de page-marketing-digital-guarapari.php: design system consolidado sem CSS inline */
:root{
  --gg-dark:#0d2b2e;
  --gg-dark-2:#134043;
  --gg-dark-3:#061d20;
  --gg-ink:#0c0f12;
  --gg-muted:#5d6872;
  --gg-soft:#f5f7f8;
  --gg-soft-2:#eef3f3;
  --gg-white:#ffffff;
  --gg-yellow:#ffc107;
  --gg-yellow-soft:#ffd043;
  --gg-line:rgba(13,43,46,.12);
  --gg-radius:28px;
  --gg-shadow:0 22px 60px rgba(13,43,46,.08);
}

.guinar-guarapari-page{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--gg-ink);
  background:linear-gradient(180deg,#f7f9f9 0%,#ffffff 56%,#f5f8f8 100%);
  overflow:hidden;
}

.guinar-guarapari-page *{box-sizing:border-box}

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

.gg-hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 96px;
  background:
    radial-gradient(circle at 88% 4%,rgba(255,193,7,.16),transparent 34%),
    radial-gradient(circle at 8% 12%,rgba(255,255,255,.05),transparent 28%),
    linear-gradient(135deg,var(--gg-dark) 0%,var(--gg-dark-3) 54%,#071315 100%);
  color:#fff;
}

.gg-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.82),transparent 86%);
  pointer-events:none;
}

.gg-hero:after{
  content:"";
  position:absolute;
  right:-180px;
  top:-180px;
  width:560px;
  height:560px;
  border-radius:999px;
  background:rgba(255,193,7,.10);
  filter:blur(90px);
  pointer-events:none;
}

.gg-hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
}

.gg-eyebrow{
  display:inline-flex;
  margin-bottom:24px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:var(--gg-yellow-soft);
  font-size:13px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gg-hero h1{
  margin:0;
  max-width:930px;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-.06em;
}

.gg-hero h1 span{color:var(--gg-yellow)}

.gg-hero p{
  max-width:780px;
  margin:28px 0 0;
  color:rgba(255,255,255,.76);
  font-size:clamp(18px,1.6vw,22px);
  line-height:1.7;
}

.gg-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:38px;
}

.gg-btn{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:-.02em;
  transition:.22s ease;
}

.gg-btn:hover{transform:translateY(-2px)}

.gg-btn.primary{
  background:var(--gg-yellow);
  color:#081315;
  box-shadow:0 18px 48px rgba(255,193,7,.20);
}

.gg-btn.primary:hover{background:var(--gg-yellow-soft)}

.gg-btn.secondary{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.gg-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:44px;
  max-width:900px;
}

.gg-trust div{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.gg-trust strong{
  display:block;
  color:#fff;
  font-size:18px;
  letter-spacing:-.03em;
}

.gg-trust small{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.62);
  line-height:1.45;
}

.gg-section{padding:96px 0}

.gg-section.soft{
  background:
    radial-gradient(circle at top left,rgba(255,193,7,.04),transparent 26%),
    linear-gradient(180deg,var(--gg-soft) 0%,var(--gg-soft-2) 100%);
}

.gg-section.dark{
  background:
    radial-gradient(circle at top right,rgba(255,193,7,.10),transparent 32%),
    linear-gradient(135deg,var(--gg-dark) 0%,var(--gg-dark-3) 52%,#071315 100%);
  color:#fff;
}

.gg-head{
  max-width:860px;
  margin-bottom:44px;
}

.gg-kicker{
  display:block;
  margin-bottom:14px;
  color:var(--gg-dark);
  font-size:13px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gg-title{
  margin:0;
  font-size:clamp(34px,4vw,58px);
  line-height:1.03;
  letter-spacing:-.05em;
}

.gg-title span{color:var(--gg-dark)}
.gg-section.dark .gg-title span{color:var(--gg-yellow-soft)}

.gg-text{
  margin:20px 0 0;
  color:var(--gg-muted);
  font-size:18px;
  line-height:1.8;
}

.dark .gg-text{color:rgba(255,255,255,.72)}

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

.gg-card,.gg-card-link{
  padding:34px;
  border-radius:var(--gg-radius);
  background:rgba(255,255,255,.94);
  border:1px solid var(--gg-line);
  box-shadow:var(--gg-shadow);
  transition:.22s ease;
}

.gg-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.gg-card:hover,.gg-card-link:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 70px rgba(13,43,46,.10);
}

.dark .gg-card,.dark .gg-card-link{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.08);
  box-shadow:none;
}

.gg-card .num,.gg-card-link .num{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  border-radius:14px;
  background:var(--gg-dark);
  color:var(--gg-yellow);
  font-weight:950;
}

.dark .gg-card .num,.dark .gg-card-link .num{
  background:var(--gg-yellow);
  color:#081315;
}

.gg-card h3,.gg-card-link h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.03em;
}

.gg-card p,.gg-card-link p{
  margin:0;
  color:var(--gg-muted);
  line-height:1.75;
}

.dark .gg-card p,.dark .gg-card-link p{
  color:rgba(255,255,255,.70);
}

.gg-card-link .more{
  display:inline-flex;
  margin-top:18px;
  color:var(--gg-yellow-soft);
  font-weight:900;
}

.gg-list{
  display:grid;
  gap:14px;
  margin:32px 0 0;
  padding:0;
  list-style:none;
}

.gg-list li{
  position:relative;
  padding:18px 20px 18px 50px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--gg-line);
  color:#252a31;
  line-height:1.62;
  box-shadow:0 14px 36px rgba(13,43,46,.04);
}

.gg-list li:before{
  content:"";
  position:absolute;
  left:22px;
  top:26px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gg-yellow);
  box-shadow:0 0 0 5px rgba(255,193,7,.12);
}

.gg-mini-cta{
  margin-top:34px;
  padding:22px 24px;
  border-radius:24px;
  background:
    radial-gradient(circle at top right,rgba(255,193,7,.10),transparent 32%),
    linear-gradient(135deg,var(--gg-dark),#071315);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.gg-mini-cta strong{
  font-size:20px;
  letter-spacing:-.03em;
}

.gg-mini-cta a{
  color:var(--gg-yellow);
  font-weight:900;
  text-decoration:none;
}

.gg-faq{
  display:grid;
  gap:14px;
  margin-top:36px;
}

.gg-faq details{
  padding:24px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--gg-line);
  box-shadow:0 14px 36px rgba(13,43,46,.04);
}

.gg-faq summary{
  cursor:pointer;
  font-weight:900;
  letter-spacing:-.02em;
}

.gg-faq p{
  margin:14px 0 0;
  color:var(--gg-muted);
  line-height:1.75;
}

.gg-cta{
  padding:58px;
  border-radius:38px;
  background:
    radial-gradient(circle at top left,rgba(255,193,7,.16),transparent 36%),
    linear-gradient(135deg,var(--gg-dark),#071315 52%,var(--gg-dark-2));
  color:#fff;
  overflow:hidden;
  box-shadow:0 28px 90px rgba(13,43,46,.14);
}

.gg-cta h2{
  margin:0;
  max-width:860px;
  font-size:clamp(32px,4vw,56px);
  line-height:1.04;
  letter-spacing:-.05em;
}

.gg-cta h2 span{color:var(--gg-yellow)}

.gg-cta p{
  max-width:760px;
  margin:20px 0 0;
  color:rgba(255,255,255,.72);
  line-height:1.75;
}

.gg-cta .gg-actions{margin-top:32px}



/* Contraste premium para CTAs e destaques */
.gg-section.dark .gg-kicker,
.gg-cta .gg-kicker,
.gg-hero .gg-eyebrow {
  color: var(--gg-yellow-soft);
}

.gg-btn.primary {
  background: #ffc107;
  color: #061315;
  border: 1px solid rgba(255,255,255,.10);
}

.gg-btn.secondary {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  color: #ffffff;
}

.gg-cta h2 span {
  color: #ffc107;
}

.gg-cta p,
.gg-hero p,
.dark .gg-text,
.dark .gg-card p,
.dark .gg-card-link p {
  color: rgba(255,255,255,.82);
}

@media(max-width:980px){
  .gg-grid,.gg-trust{grid-template-columns:1fr}
}

@media(max-width:720px){
  .gg-container,.gg-narrow{width:min(100% - 28px,1120px)}
  .gg-section{padding:76px 0}
  .gg-hero{padding:76px 0 82px}
  .gg-card,.gg-card-link,.gg-cta{padding:28px;border-radius:26px}
  .gg-actions{flex-direction:column}
  .gg-btn{width:100%}
  .gg-mini-cta{flex-direction:column;align-items:flex-start}
}


/* Migrado de page-solucoes.php: design system consolidado sem CSS inline */
:root{
  --gs-dark:#0d2b2e;
  --gs-dark-2:#134043;
  --gs-dark-3:#061d20;
  --gs-ink:#0c0f12;
  --gs-muted:#5d6872;
  --gs-soft:#f5f7f8;
  --gs-soft-2:#eef3f3;
  --gs-yellow:#ffc107;
  --gs-yellow-soft:#ffd043;
  --gs-line:rgba(13,43,46,.12);
  --gs-radius:28px;
  --gs-shadow:0 22px 60px rgba(13,43,46,.08);
}

.guinar-solutions-page{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--gs-ink);
  background:linear-gradient(180deg,#f7f9f9 0%,#ffffff 56%,#f5f8f8 100%);
  overflow:hidden;
}

.guinar-solutions-page *{box-sizing:border-box}

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

.gs-hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 96px;
  background:
    radial-gradient(circle at 88% 4%,rgba(255,193,7,.16),transparent 34%),
    radial-gradient(circle at 8% 12%,rgba(255,255,255,.05),transparent 28%),
    linear-gradient(135deg,var(--gs-dark) 0%,var(--gs-dark-3) 54%,#071315 100%);
  color:#fff;
}

.gs-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.82),transparent 86%);
  pointer-events:none;
}

.gs-hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
}

.gs-eyebrow{
  display:inline-flex;
  margin-bottom:24px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:var(--gs-yellow-soft);
  font-size:13px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gs-hero h1{
  margin:0;
  max-width:930px;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-.06em;
}

.gs-hero h1 span{color:var(--gs-yellow)}

.gs-hero p{
  max-width:780px;
  margin:28px 0 0;
  color:rgba(255,255,255,.76);
  font-size:clamp(18px,1.6vw,22px);
  line-height:1.7;
}

.gs-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:38px;
}

.gs-btn{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:-.02em;
  transition:.22s ease;
}

.gs-btn:hover{transform:translateY(-2px)}

.gs-btn.primary{
  background:var(--gs-yellow);
  color:#081315;
  box-shadow:0 18px 48px rgba(255,193,7,.20);
}

.gs-btn.primary:hover{background:var(--gs-yellow-soft)}

.gs-btn.secondary{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.gs-section{padding:96px 0}

.gs-section.soft{
  background:
    radial-gradient(circle at top left,rgba(255,193,7,.04),transparent 26%),
    linear-gradient(180deg,var(--gs-soft) 0%,var(--gs-soft-2) 100%);
}

.gs-section.dark{
  background:
    radial-gradient(circle at top right,rgba(255,193,7,.10),transparent 32%),
    linear-gradient(135deg,var(--gs-dark) 0%,var(--gs-dark-3) 52%,#071315 100%);
  color:#fff;
}

.gs-head{
  max-width:860px;
  margin-bottom:44px;
}

.gs-kicker{
  display:block;
  margin-bottom:14px;
  color:var(--gs-yellow-soft);
  font-size:13px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gs-title{
  margin:0;
  font-size:clamp(34px,4vw,58px);
  line-height:1.03;
  letter-spacing:-.05em;
}

.gs-title span{color:var(--gs-yellow-soft)}

.gs-text{
  margin:20px 0 0;
  color:var(--gs-muted);
  font-size:18px;
  line-height:1.8;
}

.dark .gs-text{color:rgba(255,255,255,.72)}

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

.gs-card,
.gs-card-link{
  padding:34px;
  border-radius:var(--gs-radius);
  background:rgba(255,255,255,.94);
  border:1px solid var(--gs-line);
  box-shadow:var(--gs-shadow);
  transition:.22s ease;
}

.gs-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.gs-card:hover,
.gs-card-link:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 70px rgba(13,43,46,.10);
}

.dark .gs-card,
.dark .gs-card-link{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.08);
  box-shadow:none;
}

.gs-num{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  border-radius:14px;
  background:var(--gs-dark);
  color:var(--gs-yellow);
  font-weight:950;
}

.dark .gs-num{
  background:var(--gs-yellow);
  color:#081315;
}

.gs-card h3,
.gs-card-link h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.03em;
}

.gs-card p,
.gs-card-link p{
  margin:0;
  color:var(--gs-muted);
  line-height:1.75;
}

.dark .gs-card p,
.dark .gs-card-link p{
  color:rgba(255,255,255,.70);
}

.gs-more{
  display:inline-flex;
  margin-top:18px;
  color:var(--gs-yellow-soft);
  font-weight:900;
}

.gs-local-box,
.gs-cta{
  padding:58px;
  border-radius:38px;
  background:
    radial-gradient(circle at top left,rgba(255,193,7,.16),transparent 36%),
    linear-gradient(135deg,var(--gs-dark),#071315 52%,var(--gs-dark-2));
  color:#fff;
  overflow:hidden;
  box-shadow:0 28px 90px rgba(13,43,46,.14);
}

.gs-local-box h2,
.gs-cta h2{
  margin:0;
  max-width:860px;
  font-size:clamp(32px,4vw,56px);
  line-height:1.04;
  letter-spacing:-.05em;
}

.gs-local-box h2 span,
.gs-cta h2 span{color:var(--gs-yellow)}

.gs-local-box p,
.gs-cta p{
  max-width:780px;
  margin:20px 0 0;
  color:rgba(255,255,255,.72);
  line-height:1.75;
}

@media(max-width:980px){
  .gs-grid{grid-template-columns:1fr}
}

@media(max-width:720px){
  .gs-container,
  .gs-narrow{width:min(100% - 28px,1120px)}

  .gs-section{padding:76px 0}
  .gs-hero{padding:76px 0 82px}

  .gs-card,
  .gs-card-link,
  .gs-local-box,
  .gs-cta{
    padding:28px;
    border-radius:26px;
  }

  .gs-actions{
    flex-direction:column;
  }

  .gs-btn{
    width:100%;
  }
}


/* Migrado de servico-guarapari.php: design system consolidado sem CSS inline */
:root{
  --gg-dark:#0d2b2e;
  --gg-dark-2:#134043;
  --gg-dark-3:#061d20;
  --gg-ink:#0c0f12;
  --gg-muted:#5d6872;
  --gg-soft:#f5f7f8;
  --gg-soft-2:#eef3f3;
  --gg-yellow:#ffc107;
  --gg-yellow-soft:#ffd043;
  --gg-line:rgba(13,43,46,.12);
  --gg-radius:28px;
  --gg-shadow:0 22px 60px rgba(13,43,46,.08);
}

.guinar-guarapari-page{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--gg-ink);
  background:linear-gradient(180deg,#f7f9f9 0%,#ffffff 56%,#f5f8f8 100%);
  overflow:hidden;
}

.guinar-guarapari-page *{box-sizing:border-box}

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

.gg-hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 96px;
  background:
    radial-gradient(circle at 88% 4%,rgba(255,193,7,.16),transparent 34%),
    radial-gradient(circle at 8% 12%,rgba(255,255,255,.05),transparent 28%),
    linear-gradient(135deg,var(--gg-dark) 0%,var(--gg-dark-3) 54%,#071315 100%);
  color:#fff;
}

.gg-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.82),transparent 86%);
  pointer-events:none;
}

.gg-hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
}

.gg-eyebrow{
  display:inline-flex;
  margin-bottom:24px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:var(--gg-yellow-soft);
  font-size:13px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gg-hero h1{
  margin:0;
  max-width:930px;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-.06em;
}

.gg-hero h1 span{color:var(--gg-yellow)}

.gg-hero p{
  max-width:780px;
  margin:28px 0 0;
  color:rgba(255,255,255,.76);
  font-size:clamp(18px,1.6vw,22px);
  line-height:1.7;
}

.gg-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:38px;
}

.gg-btn{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:-.02em;
  transition:.22s ease;
}

.gg-btn:hover{transform:translateY(-2px)}

.gg-btn.primary{
  background:var(--gg-yellow);
  color:#081315;
  box-shadow:0 18px 48px rgba(255,193,7,.20);
}

.gg-btn.secondary{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.gg-section{padding:96px 0}

.gg-section.soft{
  background:
    radial-gradient(circle at top left,rgba(255,193,7,.04),transparent 26%),
    linear-gradient(180deg,var(--gg-soft) 0%,var(--gg-soft-2) 100%);
}

.gg-section.dark{
  background:
    radial-gradient(circle at top right,rgba(255,193,7,.10),transparent 32%),
    linear-gradient(135deg,var(--gg-dark) 0%,var(--gg-dark-3) 52%,#071315 100%);
  color:#fff;
}

.gg-head{
  max-width:860px;
  margin-bottom:44px;
}

.gg-kicker{
  display:block;
  margin-bottom:14px;
  color:var(--gg-yellow-soft);
  font-size:13px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gg-title{
  margin:0;
  font-size:clamp(34px,4vw,58px);
  line-height:1.03;
  letter-spacing:-.05em;
}

.gg-title span{color:var(--gg-yellow-soft)}

.gg-text{
  margin:20px 0 0;
  color:var(--gg-muted);
  font-size:18px;
  line-height:1.8;
}

.dark .gg-text{color:rgba(255,255,255,.72)}

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

.gg-card{
  padding:34px;
  border-radius:var(--gg-radius);
  background:rgba(255,255,255,.94);
  border:1px solid var(--gg-line);
  box-shadow:var(--gg-shadow);
}

.dark .gg-card{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.08);
  box-shadow:none;
}

.gg-card .num{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  border-radius:14px;
  background:var(--gg-dark);
  color:var(--gg-yellow);
  font-weight:950;
}

.dark .gg-card .num{
  background:var(--gg-yellow);
  color:#081315;
}

.gg-card h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.03em;
}

.gg-card p{
  margin:0;
  color:var(--gg-muted);
  line-height:1.75;
}

.dark .gg-card p{color:rgba(255,255,255,.70)}

.gg-list{
  display:grid;
  gap:14px;
  margin:32px 0 0;
  padding:0;
  list-style:none;
}

.gg-list li{
  position:relative;
  padding:18px 20px 18px 50px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--gg-line);
  color:#252a31;
  line-height:1.62;
  box-shadow:0 14px 36px rgba(13,43,46,.04);
}

.gg-list li:before{
  content:"";
  position:absolute;
  left:22px;
  top:26px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gg-yellow);
  box-shadow:0 0 0 5px rgba(255,193,7,.12);
}

.gg-mini-cta,.gg-cta{
  background:
    radial-gradient(circle at top left,rgba(255,193,7,.16),transparent 36%),
    linear-gradient(135deg,var(--gg-dark),#071315 52%,var(--gg-dark-2));
  color:#fff;
}

.gg-mini-cta{
  margin-top:34px;
  padding:22px 24px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.gg-mini-cta strong{
  font-size:20px;
  letter-spacing:-.03em;
}

.gg-mini-cta a{
  color:var(--gg-yellow);
  font-weight:900;
  text-decoration:none;
}

.gg-faq{
  display:grid;
  gap:14px;
  margin-top:36px;
}

.gg-faq details{
  padding:24px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--gg-line);
  box-shadow:0 14px 36px rgba(13,43,46,.04);
}

.gg-faq summary{
  cursor:pointer;
  font-weight:900;
  letter-spacing:-.02em;
}

.gg-faq p{
  margin:14px 0 0;
  color:var(--gg-muted);
  line-height:1.75;
}

.gg-cta{
  padding:58px;
  border-radius:38px;
  overflow:hidden;
  box-shadow:0 28px 90px rgba(13,43,46,.14);
}

.gg-cta h2{
  margin:0;
  max-width:860px;
  font-size:clamp(32px,4vw,56px);
  line-height:1.04;
  letter-spacing:-.05em;
}

.gg-cta h2 span{color:var(--gg-yellow)}

.gg-cta p{
  max-width:760px;
  margin:20px 0 0;
  color:rgba(255,255,255,.72);
  line-height:1.75;
}

@media(max-width:980px){
  .gg-grid{grid-template-columns:1fr}
}

@media(max-width:720px){
  .gg-container,.gg-narrow{width:min(100% - 28px,1120px)}
  .gg-section{padding:76px 0}
  .gg-hero{padding:76px 0 82px}
  .gg-card,.gg-cta{padding:28px;border-radius:26px}
  .gg-actions{flex-direction:column}
  .gg-btn{width:100%}
  .gg-mini-cta{flex-direction:column;align-items:flex-start}
}


/* =========================================================
   ENTERPRISE POLISH v3.0 — contraste, tipografia, mobile, foco e CWV
   ========================================================= */
:root {
  --focus-ring: 0 0 0 4px rgba(244, 190, 42, .36);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --text-strong: #0c1f22;
  --text-soft: #5e6b70;
  --cta-text: #061315;
  --hero-title: clamp(2.9rem, 6.1vw, 5rem);
  --page-title: clamp(2.55rem, 5vw, 4.35rem);
  --section-title-size: clamp(2.15rem, 4.2vw, 3.5rem);
  --body-size: clamp(1rem, .28vw + .94rem, 1.125rem);
}

body {
  font-size: var(--body-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

:where(.btn, .nav-cta, .gg-btn, .gs-btn, .gg-card-link, .project-link, .service-card a, .footer a) {
  text-underline-offset: .22em;
}

:where(.btn, .nav-cta, .gg-btn, .gs-btn) {
  min-height: 48px;
  letter-spacing: -.01em;
  border: 1px solid rgba(244,190,42,.64);
  will-change: transform;
}

:where(.btn, .nav-cta, .gg-btn.primary, .gs-btn.primary, .gg-btn, .gs-btn) {
  background: var(--yellow);
  color: var(--cta-text);
  font-weight: 900;
  text-shadow: none;
}

:where(.btn, .nav-cta, .gg-btn.primary, .gs-btn.primary):hover {
  background: #FFD24A;
  color: var(--cta-text);
  transform: translateY(-2px);
}

:where(.btn.secondary, .gg-btn.secondary, .gs-btn.secondary) {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.34);
}

:where(.btn.secondary, .gg-btn.secondary, .gs-btn.secondary):hover {
  background: rgba(255,255,255,.20);
  color: #fff;
}

.hero h1,
.page-hero h1 {
  font-size: var(--hero-title);
  line-height: .96;
  letter-spacing: clamp(-.065em, -.7vw, -.042em);
  text-wrap: balance;
}

.section-title,
.gg-title,
.gs-title {
  font-size: var(--section-title-size);
  line-height: 1.02;
  letter-spacing: clamp(-.055em, -.5vw, -.035em);
  text-wrap: balance;
}

.hero p,
.page-hero p,
.gg-hero p,
.gs-hero p,
.section-text,
.gg-text,
.gs-text {
  line-height: 1.62;
  text-wrap: pretty;
}

.hero p,
.page-hero p,
.gg-hero p,
.gs-hero p,
.dark .section-text,
.cta-band p,
.gg-cta p,
.gs-cta p {
  color: rgba(255,255,255,.84);
}

.card p,
.step p,
.project-card p,
.service-card p,
.post-card p,
.section-text,
.gg-card p,
.gs-card p,
.gg-text,
.gs-text {
  color: var(--text-soft);
}

.dark .card p,
.dark .gg-card p,
.dark .gs-card p,
.gg-section.dark .gg-card p,
.gs-section.dark .gs-card p {
  color: rgba(255,255,255,.76);
}

.brand svg,
.brand img {
  max-width: 200px;
  width: min(200px, 50vw);
}

.mt-24 { margin-top: 24px; }

/* Imagens e embeds estáveis para reduzir CLS */
.wp-post-image,
.post-thumbnail img,
.project-card img,
.logo-box img {
  height: auto;
  aspect-ratio: attr(width) / attr(height);
}

/* CTAs escuros: nunca deixam texto apagado */
.hero .btn,
.page-hero .btn,
.cta-band .btn,
.gg-hero .gg-btn,
.gg-cta .gg-btn,
.gs-hero .gs-btn,
.gs-cta .gs-btn {
  color: #061315;
}

.hero .btn.secondary,
.page-hero .btn.secondary,
.cta-band .btn.secondary,
.gg-hero .gg-btn.secondary,
.gg-cta .gg-btn.secondary,
.gs-hero .gs-btn.secondary,
.gs-cta .gs-btn.secondary {
  color: #fff;
}

@media (max-width: 900px) {
  .header-inner { min-height: 68px; }
  .hero,
  .page-hero,
  .gg-hero,
  .gs-hero {
    padding-top: clamp(58px, 12vw, 82px);
    padding-bottom: clamp(58px, 12vw, 82px);
  }

  .hero h1,
  .page-hero h1,
  .gg-hero h1,
  .gs-hero h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: .98;
    letter-spacing: -.052em;
  }

  .hero p,
  .page-hero p,
  .gg-hero p,
  .gs-hero p {
    font-size: clamp(1.04rem, 3.5vw, 1.25rem);
  }

  .section,
  .gg-section,
  .gs-section {
    padding-top: clamp(56px, 11vw, 76px);
    padding-bottom: clamp(56px, 11vw, 76px);
  }
}

@media (max-width: 600px) {
  .container,
  .gg-container,
  .gs-container { width: min(100% - 32px, var(--container)); }

  .hero h1,
  .page-hero h1,
  .gg-hero h1,
  .gs-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.35rem);
    line-height: 1;
    letter-spacing: -.045em;
  }

  .section-title,
  .gg-title,
  .gs-title {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 1.05;
  }

  .hero-actions,
  .gg-actions,
  .gs-actions { gap: 12px; }

  .hero-actions .btn,
  .gg-actions .gg-btn,
  .gs-actions .gs-btn,
  .cta-band .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .main-nav .menu > li > a,
  .main-nav .sub-menu a {
    font-size: 16px;
  }

  p, li { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   GUINAR V4 — REPOSICIONAMENTO VISUAL COMPLETO
   Direção: editorial, institucional, premium e minimalista.
   ========================================================= */
:root {
  --v4-ink: #082529;
  --v4-ink-2: #103a3f;
  --v4-cream: #f7f3ea;
  --v4-paper: #fffdf8;
  --v4-gold: #f1bd3a;
  --v4-gold-strong: #d99a12;
  --v4-muted: #627174;
  --v4-line: rgba(8,37,41,.10);
  --v4-soft-line: rgba(255,255,255,.13);
  --v4-radius: 28px;
  --v4-shadow: 0 30px 80px rgba(8,37,41,.10);
  --hero-title: clamp(3.15rem, 5.7vw, 5rem);
  --section-title-size: clamp(2.2rem, 4.1vw, 3.7rem);
}

/* Header com mais marca e menos ruído */
.site-header {
  background: rgba(8,37,41,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.header-inner { min-height: 82px; }
.brand { height: 66px; }
.brand svg,
.brand img {
  max-width: 232px;
  width: min(232px, 54vw);
}
.main-nav { gap: 20px; }
.main-nav .menu > li > a {
  font-size: 14px;
  font-weight: 720;
  color: rgba(255,255,255,.78);
  padding: 10px 12px;
}
.main-nav .menu > li > a:hover,
.main-nav .menu > li.current-menu-item > a {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.nav-cta {
  min-height: 42px !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

/* Hero reposicionado */
.hero-repositioned {
  position: relative;
  padding: clamp(82px, 9vw, 126px) 0 clamp(72px, 8vw, 108px);
  background:
    radial-gradient(circle at 72% 18%, rgba(241,189,58,.13), transparent 26%),
    linear-gradient(145deg, #082529 0%, #0d3337 46%, #092326 100%);
}
.hero-repositioned:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.12));
  pointer-events: none;
}
.hero-grid-v4 {
  position: relative;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .78fr);
  gap: clamp(40px, 7vw, 86px);
}
.hero-copy-v4 { max-width: 760px; }
.hero-copy-v4 .eyebrow { margin-bottom: 22px; }
.hero-repositioned h1 {
  font-size: var(--hero-title);
  line-height: .99;
  letter-spacing: -.066em;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-repositioned h1 span { color: #fff; }
.hero-repositioned h1 span:after {
  content: "";
  display: block;
  width: clamp(120px, 17vw, 210px);
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--v4-gold), rgba(241,189,58,.18));
}
.hero-repositioned p {
  max-width: 680px;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.62;
  color: rgba(255,255,255,.80);
}
.hero-actions .btn.secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}

.ecosystem-panel {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 36px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.ecosystem-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.ecosystem-topline span {
  color: rgba(255,255,255,.70);
  font-weight: 760;
  letter-spacing: -.02em;
}
.ecosystem-topline strong {
  color: var(--v4-gold);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -.05em;
  line-height: 1;
  white-space: nowrap;
}
.ecosystem-projects { display: grid; gap: 8px; }
.ecosystem-projects a {
  display: block;
  padding: 17px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.ecosystem-projects a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(241,189,58,.28);
}
.ecosystem-projects strong {
  display: block;
  color: #fff;
  font-size: 1.03rem;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.ecosystem-projects small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  line-height: 1.35;
}
.ecosystem-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(241,189,58,.10);
  border: 1px solid rgba(241,189,58,.18);
  color: rgba(255,255,255,.76);
  font-size: .95rem;
  line-height: 1.5;
}

/* Seções home v4 */
.section-tight { padding: clamp(58px, 7vw, 86px) 0; }
.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}
.eyebrow.muted { color: var(--v4-gold-strong); }
.split-intro .section-title { margin-bottom: 0; }
.split-intro .section-text { font-size: clamp(1.05rem, 1.1vw, 1.25rem); }
.center-head { max-width: 860px; margin-inline: auto; text-align: center; }
.center-head .eyebrow { justify-content: center; }

.service-list-v4 {
  display: grid;
  border-top: 1px solid var(--v4-line);
}
.service-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, .7fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3.8vw, 42px) 0;
  border-bottom: 1px solid var(--v4-line);
  transition: padding-left .18s ease, color .18s ease;
}
.service-row:hover { padding-left: 12px; }
.service-row span {
  color: var(--v4-gold-strong);
  font-weight: 900;
}
.service-row strong {
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  color: var(--v4-ink);
}
.service-row p {
  margin: 0;
  color: var(--v4-muted);
  font-size: 1.05rem;
}

.ecosystem-section { background: #082529; }
.project-grid-v4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  overflow: hidden;
}
.project-grid-v4 article {
  background: #0b3035;
  padding: clamp(24px, 3vw, 34px);
  min-height: 210px;
}
.project-grid-v4 strong {
  color: #fff;
  font-size: 1.22rem;
  letter-spacing: -.035em;
}
.project-grid-v4 p {
  color: rgba(255,255,255,.70);
  margin-top: 14px;
}
.center-actions { display: flex; justify-content: center; margin-top: 34px; }

.proof-band-v4 {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background: var(--v4-paper);
  border: 1px solid var(--v4-line);
  box-shadow: var(--shadow-soft);
}
.proof-band-v4 h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.proof-items-v4 { display: grid; gap: 14px; }
.proof-items-v4 p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--v4-line);
  color: var(--v4-muted);
}
.proof-items-v4 strong { color: var(--v4-ink); }
.cta-band-v4 {
  background:
    radial-gradient(circle at 88% 15%, rgba(241,189,58,.18), transparent 30%),
    #082529;
  border-radius: 34px;
}
.cta-band-v4 .eyebrow { color: var(--v4-gold); }

/* Blog e arquivo editorial */
.archive-hero-v4 {
  background: var(--v4-cream);
  padding: clamp(66px, 8vw, 112px) 0 clamp(42px, 6vw, 76px);
  border-bottom: 1px solid var(--v4-line);
}
.narrow-head { max-width: 920px; }
.archive-hero-v4 h1 {
  margin: 0 0 20px;
  max-width: 900px;
  font-size: clamp(2.65rem, 5.3vw, 5rem);
  line-height: 1;
  letter-spacing: -.065em;
  color: var(--v4-ink);
  text-wrap: balance;
}
.archive-hero-v4 p {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
  line-height: 1.65;
  color: var(--v4-muted);
}
.dark-breadcrumb { color: rgba(8,37,41,.55); }
.dark-breadcrumb a { color: rgba(8,37,41,.78); }
.archive-content-v4 { background: #fff; }
.editorial-list-v4 {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--v4-line);
}
.editorial-card-v4 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--v4-line);
}
.editorial-main-v4 { display: block; max-width: 860px; }
.editorial-meta-v4 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--v4-gold-strong);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.editorial-card-v4 h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.2vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  color: var(--v4-ink);
  text-wrap: balance;
}
.editorial-card-v4 p {
  max-width: 720px;
  margin: 0;
  color: var(--v4-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.read-link-v4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--v4-line);
  border-radius: 999px;
  color: var(--v4-ink);
  font-weight: 850;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.read-link-v4:after { content: "→"; margin-left: 8px; }
.read-link-v4:hover {
  background: var(--v4-ink);
  border-color: var(--v4-ink);
  color: #fff;
  transform: translateY(-2px);
}
.pagination-v4 { margin-top: 42px; }
.pagination-v4 .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v4-line);
  border-radius: 999px;
  padding: 8px 14px;
  margin-right: 6px;
  font-weight: 800;
}
.pagination-v4 .current,
.pagination-v4 .page-numbers:hover { background: var(--v4-ink); color: #fff; }

/* Single editorial premium */
.post-hero-v4 {
  padding: clamp(56px, 7vw, 96px) 0 clamp(46px, 6vw, 72px);
  background:
    radial-gradient(circle at 75% 10%, rgba(241,189,58,.13), transparent 28%),
    linear-gradient(145deg, #082529 0%, #0c3338 100%);
}
.article-narrow { max-width: 860px; }
.article-wide { max-width: 1080px; }
.post-hero-v4 h1 {
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.post-cover-v4 { padding-bottom: 48px; }
.post-cover-v4 .featured-img {
  max-height: 540px;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.article-section-v4 { padding-top: clamp(56px, 6vw, 86px); }
.article-shell-v4 {
  display: grid;
  grid-template-columns: 130px minmax(0, 760px) 130px;
  gap: 28px;
  align-items: start;
}
.article-content-v4 {
  max-width: 760px;
  margin: 0 auto;
}
.article-content-v4 > *:first-child { margin-top: 0; }
.article-content-v4 p,
.article-content-v4 li {
  font-size: clamp(1.06rem, .35vw + 1rem, 1.18rem);
  line-height: 1.82;
  color: #263336;
}
.article-content-v4 h2 {
  margin-top: 58px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -.052em;
  color: var(--v4-ink);
}
.article-content-v4 h3 {
  margin-top: 40px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.16;
  letter-spacing: -.04em;
}
.article-content-v4 a:not(.btn) {
  color: var(--v4-ink);
  text-decoration-line: underline;
  text-decoration-color: rgba(217,154,18,.54);
  text-decoration-thickness: 2px;
  text-underline-offset: .2em;
}
.article-content-v4 blockquote {
  margin: 42px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--v4-gold);
  background: var(--v4-cream);
  border-radius: 0 22px 22px 0;
}
.share-rail-v4 {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 10px;
  align-self: start;
}
.share-rail-v4 a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  justify-self: center;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(8,37,41,.52);
  transition: color .18s ease;
}
.share-rail-v4 a:hover { color: var(--v4-gold-strong); }
.post-actions-v4 {
  justify-content: flex-start;
  border-top-color: var(--v4-line);
}
.article-cta-v4 {
  margin-top: 50px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
}
.article-cta-v4 h2 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.related-grid-v4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card-v4 a {
  display: block;
  height: 100%;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--v4-line);
  box-shadow: var(--shadow-soft);
}
.related-card-v4 span {
  color: var(--v4-gold-strong);
  font-weight: 900;
  font-size: .8rem;
}
.related-card-v4 h3 {
  margin: 12px 0;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -.04em;
  color: var(--v4-ink);
}
.related-card-v4 p { color: var(--v4-muted); margin: 0; }

/* Anula aparência antiga onde necessário */
.hero-card,
.metric-grid,
.metric { box-shadow: none; }
.post-card .post-thumb,
.post-thumb { display: none; }
.post-item h2 a,
.editorial-card-v4 h2 a { text-decoration: none; }
.post-sidebar { display: none; }
.article-layout { display: block; }

/* Mobile premium */
@media (max-width: 1050px) {
  .hero-grid-v4,
  .split-intro,
  .proof-band-v4 { grid-template-columns: 1fr; }
  .project-grid-v4 { grid-template-columns: repeat(2, 1fr); }
  .article-shell-v4 { grid-template-columns: 1fr; }
  .share-rail-v4 { display: none; }
}
@media (max-width: 760px) {
  .header-inner { min-height: 72px; }
  .brand svg, .brand img { width: min(210px, 58vw); }
  .hero-repositioned { padding-top: 66px; }
  .hero-repositioned h1 {
    font-size: clamp(2.75rem, 12.5vw, 4rem);
    letter-spacing: -.058em;
  }
  .hero-repositioned h1 span:after { height: 4px; margin-top: 16px; }
  .ecosystem-panel { border-radius: 26px; padding: 20px; }
  .ecosystem-topline { display: grid; gap: 8px; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 26px 0;
  }
  .service-row:hover { padding-left: 0; }
  .project-grid-v4,
  .related-grid-v4 { grid-template-columns: 1fr; }
  .editorial-card-v4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .read-link-v4 { justify-self: start; }
  .archive-hero-v4 h1,
  .post-hero-v4 h1 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }
  .article-content-v4 p,
  .article-content-v4 li {
    font-size: 1.05rem;
    line-height: 1.78;
  }
  .article-content-v4 h2 { margin-top: 44px; }
}

/* =========================================================
   GUINAR V5.1 — REFINAMENTO EDITORIAL PREMIUM FINAL
   Ajustes finos: header, dourado, blog hero, single post, footer e leitura.
   ========================================================= */
:root {
  --yellow: #D6AB4C;
  --yellow-2: #C99A2E;
  --v4-gold: #D6AB4C;
  --v4-gold-strong: #B9851F;
  --v4-cream: #F7F2E8;
  --v4-paper: #FFFDF8;
  --v4-line: rgba(8,37,41,.105);
  --hero-title: clamp(3rem, 5.25vw, 4.72rem);
  --section-title-size: clamp(2.1rem, 3.75vw, 3.35rem);
}

/* Header mais baixo, institucional e com CTA menos agressivo */
.site-header { background: rgba(8,37,41,.975); }
.header-inner { min-height: 74px; }
.brand { height: 56px; }
.brand svg,
.brand img { width: min(214px, 52vw); max-height: 50px; }
.main-nav { gap: 18px; }
.main-nav .menu > li > a {
  font-size: 13.5px;
  font-weight: 740;
  padding: 9px 11px;
}
.nav-cta {
  min-height: 40px !important;
  padding: 9px 15px !important;
  background: var(--yellow) !important;
  color: #061c1f !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: none !important;
}
.nav-cta:hover,
.btn:hover { background: var(--yellow-2) !important; }

/* Hero home mais compacto e refinado */
.hero-repositioned {
  padding-top: clamp(68px, 7.4vw, 104px);
  padding-bottom: clamp(60px, 6.7vw, 90px);
  background:
    radial-gradient(circle at 73% 15%, rgba(214,171,76,.105), transparent 25%),
    linear-gradient(145deg, #082529 0%, #0b3034 48%, #082326 100%);
}
.hero-grid-v4 { gap: clamp(36px, 6vw, 74px); }
.hero-copy-v4 .eyebrow { margin-bottom: 18px; }
.hero-repositioned h1 {
  margin-bottom: 22px;
  letter-spacing: -.062em;
}
.hero-repositioned h1 span:after {
  width: clamp(112px, 14vw, 180px);
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--v4-gold), rgba(214,171,76,.14));
}
.hero-repositioned p {
  max-width: 650px;
  font-size: clamp(1.04rem, 1.15vw, 1.22rem);
  line-height: 1.68;
}
.ecosystem-panel {
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}
.ecosystem-topline strong { color: var(--v4-gold); }
.ecosystem-note {
  background: rgba(214,171,76,.085);
  border-color: rgba(214,171,76,.18);
}

/* Blog: hero menos dominante, leitura mais editorial */
.archive-hero-v4 {
  padding-top: clamp(48px, 6.2vw, 82px);
  padding-bottom: clamp(36px, 5vw, 58px);
}
.archive-hero-v4 h1 {
  max-width: 840px;
  font-size: clamp(2.45rem, 4.65vw, 4.25rem);
  letter-spacing: -.06em;
  line-height: 1.02;
}
.archive-hero-v4 p {
  max-width: 700px;
  font-size: clamp(1.03rem, 1.1vw, 1.16rem);
}
.archive-content-v4.section { padding-top: clamp(48px, 5.8vw, 72px); }
.editorial-list-v4 { border-top-color: rgba(8,37,41,.08); }
.editorial-card-v4 {
  padding-block: clamp(30px, 4.8vw, 54px);
  transition: background-color .18s ease, padding-left .18s ease;
}
.editorial-card-v4:hover {
  background: linear-gradient(90deg, rgba(247,242,232,.72), transparent 70%);
  padding-left: 12px;
}
.editorial-card-v4 h2 {
  font-size: clamp(1.55rem, 2.75vw, 2.65rem);
  letter-spacing: -.052em;
}
.editorial-card-v4 p { font-size: 1rem; line-height: 1.7; }
.read-link-v4 { min-height: 42px; padding: 9px 16px; }

/* Single post: remover sensação de plugin, centralizar e elevar leitura */
.post-hero-v4 {
  padding-top: clamp(50px, 6.6vw, 82px);
  padding-bottom: clamp(42px, 5.4vw, 62px);
  background:
    radial-gradient(circle at 74% 8%, rgba(214,171,76,.10), transparent 25%),
    linear-gradient(145deg, #082529 0%, #0b3034 100%);
}
.article-narrow { max-width: 820px; }
.post-hero-v4 h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.058em;
}
.post-meta { font-size: 14px; color: rgba(255,255,255,.62); }
.post-cover-v4 { padding-bottom: 38px; }
.article-section-v4 {
  padding-top: clamp(50px, 6vw, 78px);
  padding-bottom: clamp(64px, 7vw, 96px);
}
.article-shell-v4 {
  display: block;
  max-width: 760px;
  width: min(760px, 92%);
  margin-inline: auto;
}
.article-content-v4 {
  max-width: 760px;
  margin-inline: auto;
}
.share-rail-v4 { display: none !important; }
.article-content-v4 p,
.article-content-v4 li {
  font-size: clamp(1.12rem, .28vw + 1.05rem, 1.24rem);
  line-height: 1.9;
  color: #202b2e;
  letter-spacing: -.012em;
}
.article-content-v4 p { margin-bottom: 1.72em; }
.article-content-v4 h2 {
  margin-top: 2.05em;
  margin-bottom: .58em;
  font-size: clamp(2rem, 2.55vw, 2.7rem);
  line-height: 1.08;
}
.article-content-v4 h3 {
  margin-top: 1.75em;
  margin-bottom: .52em;
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
}
.article-content-v4 ul,
.article-content-v4 ol { margin: 1.45em 0 1.8em; }
.article-content-v4 li + li { margin-top: .62em; }
.article-content-v4 a:not(.btn) {
  text-decoration-color: rgba(185,133,31,.42);
  text-decoration-thickness: 1.5px;
  text-underline-offset: .25em;
}
.post-actions-v4 {
  margin-top: 52px;
  padding-top: 26px;
  justify-content: center;
}
.article-cta-v4 {
  margin-top: 54px;
  background:
    radial-gradient(circle at 88% 20%, rgba(214,171,76,.15), transparent 30%),
    #082529;
}
.article-cta-v4 .btn,
.cta-band .btn,
.hero .btn,
.hero-repositioned .btn,
.page-hero .btn {
  background: var(--yellow) !important;
  color: #061c1f !important;
  border-color: rgba(214,171,76,.45) !important;
  box-shadow: 0 10px 30px rgba(214,171,76,.14) !important;
}
.btn.secondary,
.hero .btn.secondary,
.hero-repositioned .btn.secondary,
.page-hero .btn.secondary {
  background: rgba(255,255,255,.075) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.22) !important;
  box-shadow: none !important;
}
.related-section-v4.section { padding-top: clamp(58px, 6vw, 82px); }
.related-card-v4 a {
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.related-card-v4 a:hover {
  transform: translateY(-3px);
  border-color: rgba(185,133,31,.25);
  background: #fffdf8;
}

/* Footer mais institucional e menos “widget” */
.site-footer {
  padding-top: clamp(64px, 7vw, 92px);
  background:
    radial-gradient(circle at 12% 0%, rgba(214,171,76,.08), transparent 24%),
    linear-gradient(180deg, #082529, #061c1f);
}
.footer-brand,
.footer-proof {
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  border-radius: 30px;
}
.footer-brand strong { letter-spacing: -.06em; }
.footer-title,
.footer-proof span,
.footer-brand span { color: var(--yellow); }
.footer-cta,
.site-footer a:hover { color: var(--yellow); }
.footer-grid { gap: clamp(22px, 3vw, 38px); }
.site-footer a {
  color: rgba(255,255,255,.68);
  line-height: 1.35;
  transition: color .18s ease, transform .18s ease;
}
.site-footer a:hover { transform: translateX(2px); }
.footer-bottom { color: rgba(255,255,255,.56); }

/* Links: underline apenas em conteúdo editorial e sem ruído nos cards */
.main-nav a,
.nav-cta,
.btn,
.read-link-v4,
.related-card-v4 a,
.site-footer a,
.ecosystem-projects a { text-decoration: none !important; }
.article-content-v4 a:not(.btn) { text-decoration-line: underline !important; }

@media (max-width: 900px) {
  .header-inner { min-height: 70px; }
  .hero-repositioned { padding-top: 58px; padding-bottom: 68px; }
  .archive-hero-v4 { padding-top: 48px; }
  .post-hero-v4 h1 { font-size: clamp(2.35rem, 10vw, 3.55rem); }
}
@media (max-width: 700px) {
  .brand svg,
  .brand img { width: min(198px, 56vw); }
  .hero-repositioned h1 { font-size: clamp(2.55rem, 11.2vw, 3.7rem); }
  .archive-hero-v4 h1 { font-size: clamp(2.28rem, 10.5vw, 3.45rem); }
  .article-shell-v4 { width: min(100% - 32px, 760px); }
  .article-content-v4 p,
  .article-content-v4 li { font-size: 1.075rem; line-height: 1.82; }
  .post-actions-v4 { justify-content: flex-start; }
}
