:root {
  --t27-green: #147a32;
  --t27-green-deep: #0b2a18;
  --t27-ink: #121a16;
  --t27-gold: #d4a017;
  --t27-gold-soft: #f3d27a;
  --t27-cream: #f4f0e6;
  --t27-paper: #fffcf6;
  --t27-muted: #5d6b63;
  --t27-line: rgba(18, 26, 22, .1);
  --t27-white: #fff;
  --t27-radius: 22px;
  --t27-header: 78px;
  --t27-max: 1180px;
  --t27-serif: "Fraunces", Georgia, serif;
  --t27-sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body.t27 {
  font-family: var(--t27-sans);
  color: var(--t27-ink);
  background: var(--t27-cream);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.t27-wrap { width: min(100% - 40px, var(--t27-max)); margin-inline: auto; }

.t27-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--t27-header);
  display: flex;
  align-items: center;
  transition: background .25s, box-shadow .25s, height .32s ease;
}
.t27-header.is-solid {
  background: rgba(255, 252, 246, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(11, 42, 24, .08);
}
.t27-header-inner {
  width: min(100% - 40px, var(--t27-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.t27-logo img {
  height: 46px;
  width: auto;
  max-width: none;
  transition: height .32s ease, filter .25s ease;
}
body.t27-home .t27-header:not(.is-solid) {
  height: 118px;
}
body.t27-home .t27-header:not(.is-solid) .t27-logo img {
  height: 88px;
}
.t27-nav { margin-left: auto; display: flex; gap: 22px; list-style: none; padding: 0; }
.t27-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  color: #f4f0e6;
  letter-spacing: .01em;
}
.t27-header.is-solid .t27-nav a { color: var(--t27-ink); }
.t27-nav a:hover { color: var(--t27-gold); }
.t27-actions { display: flex; gap: 10px; align-items: center; }
.t27-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  transition: transform .2s, background .2s, color .2s;
}
.t27-btn:hover { transform: translateY(-1px); }
.t27-btn-ghost {
  background: transparent;
  color: #f4f0e6;
  border: 1px solid rgba(255,255,255,.35);
}
.t27-header.is-solid .t27-btn-ghost { color: var(--t27-ink); border-color: var(--t27-line); }
.t27-btn-gold { background: var(--t27-gold); color: #1a1404; }
.t27-btn-green { background: var(--t27-green); color: #fff; }
.t27-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
}
.t27-header.is-solid .t27-menu-btn { background: var(--t27-cream); color: var(--t27-ink); }

.t27-drawer {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 24, .55);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.t27-drawer.is-open { opacity: 1; pointer-events: auto; }
.t27-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: var(--t27-paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(16px);
}
.t27-drawer.is-open .t27-drawer-panel { transform: none; }
.t27-drawer a { text-decoration: none; font-weight: 700; color: var(--t27-ink); }
.t27-drawer-close { align-self: flex-end; border: 0; background: none; font-size: 1.6rem; cursor: pointer; }

.t27-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: var(--t27-green-deep);
}
.t27-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.t27-slide.is-active { opacity: 1; z-index: 1; }
.t27-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: t27ken 18s ease-in-out infinite alternate;
}
.t27-slide.is-active .t27-slide-bg { animation-play-state: running; }
@keyframes t27ken { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.t27-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,42,24,.82) 0%, rgba(11,42,24,.28) 58%, rgba(11,42,24,.45) 100%),
    linear-gradient(180deg, rgba(11,42,24,.35) 0%, transparent 28%, rgba(11,42,24,.7) 100%);
  z-index: 2;
}
.t27-hero-copy {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, var(--t27-max));
  margin: 0 auto;
  padding: calc(var(--t27-header) + 90px) 0 90px;
  max-width: 760px;
  margin-left: max(20px, calc((100% - var(--t27-max)) / 2));
}
.t27-kicker {
  display: inline-block;
  color: var(--t27-gold-soft);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.t27-kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--t27-gold);
  margin-top: 10px;
}
body.t27-inner .t27-header {
  background: rgba(255, 252, 246, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(11, 42, 24, .08);
}
body.t27-inner .t27-nav a,
body.t27-inner .t27-btn-ghost { color: var(--t27-ink); }
body.t27-inner .t27-btn-ghost { border-color: var(--t27-line); }
body.t27-inner .t27-menu-btn { background: var(--t27-cream); color: var(--t27-ink); }
body.t27-inner .t27-page-hero .t27-wrap { padding: 56px 0 36px; }
.t27-hero h1 {
  font-family: var(--t27-serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 560;
  line-height: 1.12;
  margin: 0 0 18px;
  white-space: pre-line;
}
.t27-hero p {
  font-size: 1.08rem;
  max-width: 42ch;
  color: rgba(255,255,255,.88);
  margin: 0 0 28px;
}
.t27-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.t27-hero-nav {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100% - var(--t27-max)) / 2));
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.t27-dot {
  width: 42px;
  height: 3px;
  border: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 0;
}
.t27-dot.is-active { background: var(--t27-gold); }

.t27-section { padding: 88px 0; }
.t27-section h2 {
  font-family: var(--t27-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 560;
  white-space: pre-line;
}
.t27-section .t27-kicker { color: var(--t27-green); }
.t27-band-copy .t27-kicker,
.t27-assoc .t27-kicker,
.t27-hero .t27-kicker,
.t27-page-hero .t27-kicker { color: var(--t27-gold-soft); }
.t27-home .t27-logo img { filter: drop-shadow(0 2px 10px rgba(0,0,0,.4)); }
.t27-header.is-solid .t27-logo img { filter: none; }
.t27-lead { color: var(--t27-muted); font-size: 1.05rem; max-width: 62ch; }

.t27-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.t27-photo {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #dfe8e2 center/cover no-repeat;
  box-shadow: 0 30px 60px rgba(11, 42, 24, .12);
}
.t27-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.t27-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.t27-card {
  background: var(--t27-paper);
  border-radius: 20px;
  padding: 22px;
  min-height: 230px;
  box-shadow: 0 16px 40px rgba(11, 42, 24, .06);
  border: 1px solid rgba(11,42,24,.05);
}
.t27-card img { width: 42px; height: 42px; margin-bottom: 18px; }
.t27-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.t27-card p { margin: 0; color: var(--t27-muted); font-size: .95rem; }

.t27-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.t27-benefit {
  position: relative;
  overflow: hidden;
  background: var(--t27-paper);
  border-radius: 24px;
  padding: 26px 24px 30px;
  min-height: 292px;
  border: 1px solid rgba(11, 42, 24, .06);
  box-shadow: 0 18px 44px rgba(11, 42, 24, .07);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.t27-benefit::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--t27-green), var(--t27-gold));
}
.t27-benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(11, 42, 24, .14);
}
.t27-benefit-visual {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.t27-benefit-num {
  font-family: var(--t27-serif);
  font-size: 1.4rem;
  color: var(--t27-gold);
  font-weight: 560;
  letter-spacing: .04em;
  padding-top: 4px;
}
.t27-benefit-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: linear-gradient(160deg, #1a8a3c 0%, #0b2a18 100%);
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 24px rgba(11, 42, 24, .22),
    inset 0 0 0 1px rgba(243, 210, 122, .4);
}
.t27-benefit-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: none;
}
.t27-benefit h3 {
  font-family: var(--t27-serif);
  font-size: 1.28rem;
  font-weight: 560;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--t27-green-deep);
}
.t27-benefit p {
  margin: 0;
  color: var(--t27-muted);
  font-size: .98rem;
  line-height: 1.55;
}

.t27-band {
  background: var(--t27-green-deep);
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 420px;
}
.t27-band-photo { background: center/cover no-repeat; min-height: 320px; }
.t27-band-copy { padding: 56px 48px; }
.t27-band-copy h2 { color: #fff; }
.t27-band-copy p { color: rgba(255,255,255,.82); }

.t27-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.t27-step {
  background: #143d28;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px 24px;
  color: #fff;
  text-align: left;
}
.t27-step span {
  font-family: var(--t27-serif);
  color: var(--t27-gold-soft);
  font-size: 1.4rem;
}
.t27-step img { width: 40px; height: 40px; margin: 16px 0; filter: brightness(0) invert(1); }
.t27-step h3 { margin: 0 0 8px; }
.t27-step p { margin: 0; color: rgba(255,255,255,.82); }

.t27-assoc {
  background: linear-gradient(160deg, #0b2a18, #147a32 80%);
  color: #fff;
  padding: 88px 0;
}
.t27-assoc h2 { color: #fff; }
.t27-assoc .t27-wrap { display: flex; flex-direction: column; gap: 8px; }
.t27-assoc-grid {
  grid-template-columns: repeat(3, 1fr);
}
.t27-assoc .t27-benefit {
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.t27-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.t27-post {
  background: var(--t27-paper);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 40px rgba(11, 42, 24, .06);
  display: flex;
  flex-direction: column;
}
.t27-post img { width: 100%; height: 210px; object-fit: cover; }
.t27-post div { padding: 20px; }
.t27-post time { color: var(--t27-green); font-size: .8rem; font-weight: 700; }
.t27-post h3 { margin: 8px 0; font-size: 1.15rem; font-family: var(--t27-serif); font-weight: 560; }
.t27-post p { margin: 0; color: var(--t27-muted); font-size: .95rem; }

.t27-contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.t27-form {
  background: var(--t27-paper);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(11, 42, 24, .08);
}
.t27-form input, .t27-form textarea {
  width: 100%;
  border: 1px solid var(--t27-line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.t27-form textarea { min-height: 120px; resize: vertical; }
.t27-meta { color: var(--t27-muted); }
.t27-meta p { margin: 0 0 10px; }

.t27-page-hero {
  min-height: 42vh;
  background: center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.t27-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,42,24,.15), rgba(11,42,24,.78));
}
.t27-page-hero .t27-wrap { position: relative; z-index: 1; padding: 120px 0 40px; }
.t27-page-hero h1 {
  font-family: var(--t27-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
  font-weight: 560;
}

.t27-prose { max-width: 760px; }
.t27-prose p { color: var(--t27-muted); font-size: 1.05rem; }
.t27-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.t27-list-item {
  display: grid;
  grid-template-columns: auto 56px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--t27-paper);
  border-radius: 18px;
  padding: 18px;
}
.t27-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--t27-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.t27-list-item img { width: 48px; height: 48px; }
.t27-timeline { display: grid; gap: 0; margin-top: 24px; }
.t27-timeline-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding-bottom: 22px;
}
.t27-timeline-item i {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--t27-gold);
  box-shadow: 0 0 0 6px rgba(212,160,23,.18);
}

.t27-legal {
  background: var(--t27-paper);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 40px rgba(11,42,24,.05);
}
.t27-legal h1 { font-family: var(--t27-serif); color: var(--t27-green); }
.t27-blog-search {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  max-width: 420px;
  border: 1px solid var(--t27-line);
}
.t27-blog-search input { border: 0; flex: 1; font: inherit; outline: none; background: transparent; }
.t27-article { max-width: 760px; margin: 0 auto; }
.t27-article h1 {
  font-family: var(--t27-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 560;
  line-height: 1.15;
  margin: 0 0 12px;
}
.t27-article img { border-radius: 20px; margin: 12px 0 24px; }
.t27-article-body { font-size: 1.05rem; color: #3d4a43; }
.t27-article-body h2, .t27-article-body h3 { color: var(--t27-green-deep); font-family: var(--t27-serif); }

.t27-footer {
  background: #07150e;
  color: #dbe7df;
  padding: 56px 0 24px;
}
.t27-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.t27-footer img { height: 42px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.t27-footer a { color: #dbe7df; text-decoration: none; }
.t27-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.t27-copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; padding-top: 18px; font-size: .88rem; color: #9aaf9f; }

.t27-preview-bar {
  position: fixed;
  left: 16px;
  bottom: 84px;
  z-index: 85;
  background: var(--t27-gold);
  color: #1a1404;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  max-width: min(420px, calc(100% - 32px));
}
.t27-preview-bar a { color: inherit; text-decoration: underline; }
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}
.t27-wa img { width: 34px; height: 34px; }
.t27-popup {
  position: fixed;
  inset: 0;
  background: rgba(7,21,14,.72);
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.t27-popup-card {
  background: #fff;
  max-width: 560px;
  width: 100%;
  border-radius: 24px;
  padding: 32px;
  position: relative;
}
.t27-popup-card h2 { font-family: var(--t27-serif); color: var(--t27-green); margin-top: 0; }
.t27-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: #f0f0f0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}
.t27-cta {
  background: linear-gradient(135deg, #0b2a18, #147a32);
  color: #fff;
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
}
.t27-cta p { color: rgba(255,255,255,.88); max-width: 54ch; margin: 0 auto 22px; }
.t27-cta h2 { color: #fff; }
.t27-feedback { margin-top: 10px; font-weight: 600; }
.t27-feedback.sucesso { color: var(--t27-green); }
.t27-feedback.erro { color: #b42318; }
.t27-empty { text-align: center; color: var(--t27-muted); padding: 40px 16px; }
.t27-blog-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--t27-paper);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 40px rgba(11, 42, 24, .06);
}
.t27-blog-row img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.t27-blog-row > div { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.t27-blog-row h2 { font-family: var(--t27-serif); font-weight: 560; margin: 8px 0 10px; }
.t27-assoc-actions { margin-top: 8px; }
.t27-legal-date {
  background: #eef6ef;
  border-left: 4px solid var(--t27-green);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 24px;
}
.t27-legal h2, .t27-legal h3 { color: var(--t27-green-deep); font-family: var(--t27-serif); }
.t27-legal p, .t27-legal li { color: var(--t27-muted); }

@media (max-width: 980px) {
  .t27-nav, .t27-actions .t27-btn-ghost { display: none; }
  .t27-menu-btn { display: grid; place-items: center; margin-left: auto; }
  body.t27-home .t27-header:not(.is-solid) { height: 100px; }
  body.t27-home .t27-header:not(.is-solid) .t27-logo img { height: 72px; }
  .t27-split, .t27-band, .t27-contact, .t27-footer-grid { grid-template-columns: 1fr; }
  .t27-cards, .t27-steps, .t27-posts { grid-template-columns: 1fr; }
  .t27-benefits-grid { grid-template-columns: 1fr 1fr; }
  .t27-assoc-grid { grid-template-columns: 1fr; }
  .t27-hero-copy { max-width: none; margin-left: auto; padding-bottom: 120px; }
  .t27-hero-nav { flex-direction: row; right: 20px; left: 20px; bottom: 24px; }
  .t27-dot { width: 28px; }
  .t27-photo, .t27-photo img { min-height: 260px; }
  .t27-list-item { grid-template-columns: auto 1fr; }
  .t27-list-item img { display: none; }
  .t27-blog-row { grid-template-columns: 1fr; }
  .t27-cta { padding: 32px 22px; }
}
@media (max-width: 640px) {
  .t27-benefits-grid { grid-template-columns: 1fr; }
}
