/* ============================================================
   FLORESTAS & AMBIENTE LTDA — CSS Design System
   Premium Minimalist Forest Theme
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg-dark:     #0D1A12;
  --c-bg-darker:   #081009;
  --c-bg-light:    #F5F2EC;
  --c-bg-white:    #FEFCF8;
  --c-green-deep:  #1E3A14;
  --c-green-mid:   #2D5016;
  --c-green-accent:#4A7C35;
  --c-green-light: #6BA050;
  --c-gold:        #B8935A;
  --c-gold-light:  #D4AE7A;
  --c-text-dark:   #1A1A1A;
  --c-text-mid:    #3D3D3D;
  --c-text-light:  #6B6B6B;
  --c-text-white:  #F5F2EC;
  --c-text-muted:  rgba(245,242,236,0.6);
  --c-border:      rgba(45, 80, 22, 0.15);
  --c-border-light:rgba(245,242,236,0.12);

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizes */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  4rem;
  --fs-5xl:  5.5rem;
  --fs-6xl:  7rem;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full:999px;

  /* Transitions */
  --tr-fast:   150ms ease;
  --tr-base:   300ms cubic-bezier(0.4,0,0.2,1);
  --tr-slow:   600ms cubic-bezier(0.4,0,0.2,1);
  --tr-spring: 500ms cubic-bezier(0.34,1.56,0.64,1);

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(0,0,0,0.08);
  --sh-md:  0 8px 32px rgba(0,0,0,0.12);
  --sh-lg:  0 24px 64px rgba(0,0,0,0.16);
  --sh-green: 0 8px 32px rgba(45,80,22,0.25);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  color: var(--c-text-dark);
  background: var(--c-bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
@media (pointer: coarse) { button { cursor: pointer; } }

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--c-green-accent);
  border-radius: var(--r-full);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform var(--tr-fast), background var(--tr-fast);
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid var(--c-green-accent);
  border-radius: var(--r-full);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity var(--tr-base);
  opacity: 0.5;
}
.cursor--hover { transform: translate(-50%, -50%) scale(1.8); background: var(--c-gold); }
.cursor-follower--hover { transform: translate(-50%, -50%) scale(1.5); opacity: 0.2; border-color: var(--c-gold); }

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}
@media (max-width: 768px) { .container { padding-inline: var(--sp-sm); } }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.label {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green-accent);
  margin-bottom: var(--sp-sm);
  display: block;
}
.label--light { color: var(--c-gold-light); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-md);
}
.section-title em { color: var(--c-green-mid); font-style: italic; }
.section-title--light { color: var(--c-text-white); }
.section-title--light em { color: var(--c-gold-light); }

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--c-text-light);
  line-height: 1.6;
  max-width: 560px;
}
.section-subtitle--light { color: var(--c-text-muted); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.section-header .section-subtitle { margin-inline: auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--tr-base);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform var(--tr-base);
}
.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--c-green-mid);
  color: var(--c-text-white);
  box-shadow: var(--sh-green);
}
.btn--primary:hover {
  background: var(--c-green-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(45,80,22,0.35);
}

.btn--ghost {
  border: 1.5px solid rgba(245,242,236,0.4);
  color: var(--c-text-white);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--c-text-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

.btn__icon { transition: transform var(--tr-base); }
.btn:hover .btn__icon { transform: translateX(4px); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal-up, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--tr-slow);
}
.nav.scrolled {
  background: rgba(8,16,9,0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border-light);
}
.nav__container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.75rem;
  transition: opacity var(--tr-base);
}
.nav__logo:hover { opacity: 0.8; }
.nav__logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.nav__logo-wordmark {
  display: flex; flex-direction: column;
}
.nav__logo-fa {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-text-white);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-green-light), var(--c-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo-text {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
  max-width: 120px;
}

.nav__links {
  display: flex; align-items: center; gap: var(--sp-lg);
}
.nav__link {
  font-size: var(--fs-sm);
  color: rgba(245,242,236,0.75);
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color var(--tr-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--c-gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr-base);
}
.nav__link:hover { color: var(--c-text-white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--cta {
  background: var(--c-green-mid);
  color: var(--c-text-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  font-weight: 500;
  transition: background var(--tr-fast), transform var(--tr-fast) !important;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--c-green-accent) !important; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; cursor: none;
  padding: 4px 0;
}
.nav__toggle span {
  display: block; height: 1.5px;
  background: var(--c-text-white);
  border-radius: 2px;
  transition: var(--tr-base);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--c-bg-darker);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform var(--tr-slow);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute; top: 2rem; right: 2rem;
  font-size: var(--fs-xl); color: var(--c-text-white);
  cursor: none; transition: opacity var(--tr-fast); opacity: 0.6;
}
.mobile-menu__close:hover { opacity: 1; }
.mobile-menu__links { display: flex; flex-direction: column; gap: var(--sp-lg); text-align: center; }
.mobile-menu__link {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  color: var(--c-text-white);
  font-weight: 300;
  transition: color var(--tr-fast);
}
.mobile-menu__link:hover { color: var(--c-gold-light); }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100dvh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,16,9,0.35) 0%,
    rgba(8,16,9,0.55) 40%,
    rgba(8,16,9,0.75) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--sp-lg);
}
.hero__eyebrow {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-md);
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(var(--fs-3xl), 7vw, var(--fs-6xl));
  font-weight: 300;
  color: var(--c-text-white);
  line-height: 1.08;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold-light);
}
.hero__subtitle {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: rgba(245,242,236,0.8);
  line-height: 1.7;
  margin-bottom: var(--sp-xl);
  font-weight: 300;
}
.hero__actions {
  display: flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; z-index: 2;
  color: rgba(245,242,236,0.6);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color var(--tr-fast);
}
.hero__scroll:hover { color: var(--c-text-white); }
.hero__scroll-arrow { font-size: var(--fs-md); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.br-desktop { display: block; }
@media (max-width: 600px) { .br-desktop { display: none; } }

/* ── SOBRE ───────────────────────────────────────────────── */
.sobre {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-white);
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.sobre__text {
  font-size: var(--fs-md);
  color: var(--c-text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-md);
}
.sobre__text strong { color: var(--c-green-mid); font-weight: 600; }
.sobre__stats {
  display: flex; gap: var(--sp-xl); margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--c-border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__number {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 500;
  color: var(--c-green-mid);
  line-height: 1;
}
.stat__label {
  font-size: var(--fs-xs);
  color: var(--c-text-light);
  letter-spacing: 0.05em;
  max-width: 100px;
  line-height: 1.3;
}
.sobre__image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}
.sobre__image img {
  transition: transform var(--tr-slow);
}
.sobre__image:hover img { transform: scale(1.04); }
.sobre__image-badge {
  position: absolute; bottom: var(--sp-md); right: var(--sp-md);
  background: rgba(8,16,9,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-sm) var(--sp-md);
  display: flex; flex-direction: column;
  font-size: var(--fs-xs);
  color: var(--c-gold-light);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__image { aspect-ratio: 16/9; order: -1; }
  .sobre__stats { gap: var(--sp-lg); }
}

/* ── SERVIÇOS ────────────────────────────────────────────── */
.servicos {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-light);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.servico-card {
  background: var(--c-bg-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  border: 1px solid var(--c-border);
}
.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.servico-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--c-green-deep);
  position: relative;
}
.servico-card__img img { transition: transform var(--tr-slow); }
.servico-card:hover .servico-card__img img { transform: scale(1.06); }

/* ESG visual */
.esg-visual {
  display: flex; align-items: center; justify-content: center;
  height: 100%; gap: 1rem;
}
.esg-visual span {
  font-family: var(--f-display);
  font-size: 4rem; font-weight: 600;
  color: rgba(245,242,236,0.15);
  line-height: 1;
}
.esg-visual span:nth-child(2) { color: var(--c-gold); font-size: 5rem; }

/* Licenciamento visual */
.servico-card__img--licenc { background: #162A0E; }
.licenc-visual {
  display: flex; align-items: center; justify-content: center; height: 100%;
}
.licenc-icon { font-size: 4rem; opacity: 0.4; filter: grayscale(0.5); }

.servico-card__body { padding: var(--sp-lg); }
.servico-card__icon { font-size: 1.5rem; margin-bottom: var(--sp-xs); display: block; }
.servico-card__title {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-xs);
  line-height: 1.25;
}
.servico-card__text {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.65;
}

@media (max-width: 1100px) { .servicos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .servicos__grid { grid-template-columns: 1fr; } }

/* ── SETORES ─────────────────────────────────────────────── */
.setores {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-dark);
}
.setores__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-sm);
}
.setor-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: none;
  border: 1px solid var(--c-border-light);
}
.setor-card__img {
  position: absolute; inset: 0;
  background: var(--c-green-deep);
}
.setor-card__img img { transition: transform 0.6s ease; }
.setor-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,16,9,0.92) 0%, rgba(8,16,9,0.2) 60%, transparent 100%);
  transition: var(--tr-base);
}
.setor-card:hover .setor-card__img img { transform: scale(1.08); }
.setor-card:hover .setor-card__overlay { background: linear-gradient(to top, rgba(8,16,9,0.96) 0%, rgba(8,16,9,0.4) 60%, rgba(8,16,9,0.1) 100%); }

.setor-card__img--urbano {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0D1A12, #1E3A14);
}
.urbano-visual { font-size: 5rem; opacity: 0.3; }

.setor-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--sp-md);
  z-index: 2;
}
.setor-card__icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.setor-card__title {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-text-white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.setor-card__text {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: 1.5;
  max-height: 0; overflow: hidden;
  transition: max-height var(--tr-base), opacity var(--tr-base);
  opacity: 0;
}
.setor-card:hover .setor-card__text { max-height: 80px; opacity: 1; }

@media (max-width: 960px) {
  .setores__grid { grid-template-columns: repeat(3, 1fr); }
  .setor-card:nth-child(4), .setor-card:nth-child(5) { display: none; }
}
@media (max-width: 600px) {
  .setores__grid { grid-template-columns: repeat(2, 1fr); }
  .setor-card:nth-child(4), .setor-card:nth-child(5) { display: flex; }
}

/* ── DIFERENCIAIS ────────────────────────────────────────── */
.diferenciais {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-white);
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.diferencial {
  padding: var(--sp-xl) var(--sp-lg);
  background: var(--c-bg-light);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.diferencial::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-green-mid), var(--c-green-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr-slow);
}
.diferencial:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.diferencial:hover::before { transform: scaleX(1); }

.diferencial__number {
  font-family: var(--f-display);
  font-size: var(--fs-5xl);
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.04em;
}
.diferencial__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-sm);
  display: block;
}
.diferencial__title {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-text-dark);
  margin-bottom: var(--sp-sm);
  line-height: 1.2;
}
.diferencial__text {
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  line-height: 1.7;
}
@media (max-width: 900px) { .diferenciais__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .diferenciais__grid { grid-template-columns: 1fr; } }

/* ── EVENTOS ─────────────────────────────────────────────── */
.eventos {
  position: relative;
  padding: var(--sp-3xl) 0;
  overflow: hidden;
}
.eventos__bg {
  position: absolute; inset: 0;
}
.eventos__img { object-position: center top; }
.eventos__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,16,9,0.92) 0%, rgba(13,26,18,0.88) 100%);
}
.eventos__content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.eventos__text {
  font-size: var(--fs-md);
  color: rgba(245,242,236,0.75);
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
}
.eventos__tipos {
  display: flex; flex-wrap: wrap; gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.evento-tipo {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(245,242,236,0.08);
  border: 1px solid rgba(245,242,236,0.15);
  border-radius: var(--r-full);
  padding: 0.4rem 0.9rem;
  font-size: var(--fs-sm);
  color: var(--c-text-white);
  transition: var(--tr-base);
  backdrop-filter: blur(8px);
}
.evento-tipo:hover { background: rgba(245,242,236,0.14); border-color: var(--c-gold-light); }
.evento-tipo__icon { font-size: var(--fs-base); }

/* ── CONTATO ─────────────────────────────────────────────── */
.contato {
  padding: var(--sp-3xl) 0;
  background: var(--c-bg-light);
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.contato__text {
  font-size: var(--fs-md);
  color: var(--c-text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}
.contato__location {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--c-green-mid);
  font-weight: 500;
  margin-bottom: var(--sp-lg);
}
.contato__tag-cloud {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.tag {
  display: inline-block;
  background: rgba(45,80,22,0.1);
  border: 1px solid rgba(45,80,22,0.2);
  color: var(--c-green-mid);
  border-radius: var(--r-full);
  padding: 0.25rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Form */
.contato__form {
  background: var(--c-bg-white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
  display: flex; flex-direction: column; gap: var(--sp-md);
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-input {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  color: var(--c-text-dark);
  background: var(--c-bg-white);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  outline: none;
}
.form-input:focus {
  border-color: var(--c-green-accent);
  box-shadow: 0 0 0 3px rgba(74,124,53,0.12);
}
.form-input::placeholder { color: var(--c-text-light); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-sm);
  background: rgba(45,80,22,0.08);
  border: 1px solid rgba(45,80,22,0.2);
  border-radius: var(--r-md);
  color: var(--c-green-mid);
  font-size: var(--fs-sm);
  font-weight: 500;
}
.form-success.show { display: block; }

@media (max-width: 900px) {
  .contato__grid { grid-template-columns: 1fr; }
  .contato__form { order: -1; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--c-bg-darker);
  padding: var(--sp-2xl) 0 var(--sp-lg);
  border-top: 1px solid var(--c-border-light);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--c-border-light);
}
.footer__logo {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: var(--sp-md);
}
.footer__logo-fa {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  background: linear-gradient(135deg, var(--c-green-light), var(--c-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__logo-name {
  font-size: var(--fs-sm);
  color: rgba(245,242,236,0.5);
  line-height: 1.3;
  max-width: 140px;
}
.footer__tagline {
  font-family: var(--f-display);
  font-size: var(--fs-md);
  color: rgba(245,242,236,0.35);
  font-style: italic;
  line-height: 1.5;
  max-width: 320px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-md);
}
.footer__list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link {
  font-size: var(--fs-sm);
  color: rgba(245,242,236,0.45);
  transition: color var(--tr-fast);
}
.footer__link:hover { color: var(--c-text-white); }
.footer__text { font-size: var(--fs-sm); color: rgba(245,242,236,0.35); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: var(--sp-sm);
  flex-wrap: wrap;
}
.footer__copy { font-size: var(--fs-xs); color: rgba(245,242,236,0.25); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-dark); }
::-webkit-scrollbar-thumb { background: var(--c-green-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-green-accent); }

/* ── ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-green-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
