/* ==============================================
   LEGATUM — style.css
   ============================================== */

/* ---------- @font-face ---------- */
@font-face {
  font-family: 'CatchyMager';
  src: url('Fontes/CatchyMager-Normal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

/* ---------- Tokens ---------- */
:root {
  --blue:       #1E4397;
  --green:      #07A14A;
  --dark:       #111111;
  --white:      #ffffff;
  --off-white:  #f4f4f6;
  --text:       #1d1d1f;
  --muted:      #6e6e73;
  --radius:     14px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tr:         0.4s var(--ease);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==============================================
   CABEÇALHO FIXO
   ============================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Branco por padrão — sem depender de JS para não ter flash escuro */
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: background var(--tr), box-shadow var(--tr);
  padding: 0;
}

/* Ao rolar: um pouco mais sólido */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 12px rgba(0,0,0,0.10);
}

/* No topo: leve, quase translúcido */
.site-header.is-top {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.header-logo      { height: 52px; width: auto; }

/* Mobile: header mais compacto */
@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .header-logo  { height: 36px; }
}

.header-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.header-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color var(--tr);
  white-space: nowrap;
}
.header-nav__link:hover { color: var(--blue); }

/* Header CTA — azul sólido (header claro) */
.btn--header-cta {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 7px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  color: var(--white);
  background: var(--blue);
  transition: background var(--tr), transform var(--tr);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn--header-cta:hover {
  background: #163577;
  transform: translateY(-1px);
}

/* Hamburger (mobile) */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);   /* escuro, header é claro */
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.header-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-hamburger.is-open span:nth-child(2) { opacity: 0; }
.header-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — claro, combina com header branco */
.header-mobile-nav {
  display: none;           /* escondido por padrão; JS e media query revelam */
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0,0,0,0.07);
  /* Fechado: altura zero, sem padding extra vazando */
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.header-mobile-nav.is-open {
  max-height: 420px;
  padding: 6px 0 14px;    /* padding só quando aberto */
}
.header-mobile-nav__link {
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--tr), background var(--tr);
}
.header-mobile-nav__link:hover {
  color: var(--blue);
  background: rgba(30,67,151,0.05);
}
.header-mobile-nav__link--cta {
  margin: 6px 28px 0;
  padding: 11px 24px;
  border: 1.5px solid var(--blue);
  border-radius: 7px;
  text-align: center;
  color: var(--blue);
  font-weight: 600;
}

/* Offset hero content para o header (bg cobre tudo, só o conteúdo desce).
   padding-top no .hero em vez de no __content garante que o flex-center
   calcule o espaço disponível já descontando o header — funciona corretamente
   em qualquer escala de DPI (100%, 125%, 150%, etc.). */
.hero { padding-top: 80px; }
.hero__content { padding-top: 44px; }

@media (max-width: 768px) {
  .hero { padding-top: 64px; }
  .hero__content { padding-top: 28px; }
}


/* ==============================================
   BACK TO TOP
   ============================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 67, 151, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr), background var(--tr);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30,67,151,0.5);
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--tr), box-shadow var(--tr), opacity var(--tr);
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.24);
}
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, #09A14A 0%, #1F4695 100%);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--light {
  background: var(--white);
  color: var(--blue);
}

/* ---------- Section CTA row ---------- */
.section-cta {
  margin-top: 56px;
  text-align: center;
}

/* ---------- Section title (dark bg) ---------- */
.section-title {
  font-family: 'CatchyMager', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-title--dark { color: var(--text); }
.section-title--light { color: var(--white); }


/* ==============================================
   SCROLL-REVEAL (JS adds .is-visible)
   ============================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==============================================
   FULL-HEIGHT SCROLL SECTIONS
   ============================================== */
.section-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Parallax background layer */
.parallax-bg {
  position: absolute;
  /* Oversized top/bottom so parallax movement has room */
  inset: -55% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* Section overlays */
.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0,0,0,0.52);
}
.section-overlay--medium { background: rgba(0,0,0,0.35); }
.section-overlay--heavy  { background: rgba(0,0,0,0.65); }

/* Section inner — content wrapper.
   NOTE: NO transform here — transforms on ancestors break backdrop-filter
   on glass children. Scroll animation is opacity-only. */
.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
}

/* Overlay padrão nas seções com parallax JS */
.section-full::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0,0,0,0.40);
}

/* Proposta: fundo FIXO, overlay escurecido para legibilidade */
.proposta-bg {
  background-image: url('Imagens/escritorio.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}
#proposta::before { background: rgba(0,0,0,0.40); }

/* Padrão: fundo parallax, overlay escurecido para legibilidade */
#padrao::before { background: rgba(0,0,0,0.40); }


/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  height: 100dvh;   /* dynamic vh — corrige barra de endereço mobile */
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0f; /* fallback enquanto poster carrega */
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Todas as layers: absolutas, cobrindo tudo */
.hero__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}

/* Vídeo: sempre visível por baixo (layer de fundo) */
.hero__layer--video {
  opacity: 1;
  z-index: 0;
}

/* Lastframe: hidden, aparece no fim */
#hero-lastframe {
  z-index: 1;
}

/* Poster: fica na frente cobrindo o vídeo, some quando vídeo toca */
.hero__layer--poster {
  opacity: 1;   /* visível por padrão */
  z-index: 2;
  transition: opacity 1.2s ease;
}
/* Quando JS remove a classe, poster some suavemente */
.hero__layer--poster.hide {
  opacity: 0;
  pointer-events: none;
}

/* Mostrar lastframe */
.hero__layer.active { opacity: 1; }

/* Loading bar */
.hero__loader {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 20;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero__loader.visible { opacity: 1; }
.hero__loader-bar {
  height: 100%;
  background: linear-gradient(90deg, #09A14A, #1F4695);
  animation: loaderSlide 1.5s linear infinite;
  width: 40%;
}
@keyframes loaderSlide {
  0%   { margin-left: -40%; }
  100% { margin-left: 100%; }
}

/* Hero gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.40) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.60) 100%
  );
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 36px;
  padding: 40px 48px;
  max-width: 900px;
  width: 100%;
  /* push content to the left side of the screen */
  margin-left: 0;
  margin-right: auto;
}

.hero__logo {
  width: clamp(140px, 16vw, 200px);
}

/* Text block animates in after video starts */
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.hero__text.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__title {
  font-family: 'CatchyMager', Georgia, serif;
  font-size: 78px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero__body {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: #ffffff;
  font-weight: 300;
  line-height: 1.85;
  max-width: 600px;
  text-align: left;
}
.hero__body em {
  font-style: normal;
  color: var(--white);
  font-weight: 500;
}
.hero__body--lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}
.hero__body--setores {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #ffffff;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.hero__body--close {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}


/* Text-shadow forte para legibilidade sobre imagem sem overlay */
#proposta .proposta__title,
#proposta .proposta__bullets li,
#proposta .proposta__intro,
#proposta .section-cta,
#padrao .padrao__headline,
#padrao .padrao__body p,
#padrao .padrao__coda,
#padrao .section-cta {
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9);
}

/* ==============================================
   SEÇÃO 2 — PROPOSTA + CONSCIÊNCIAS
   ============================================== */
.proposta__header {
  max-width: 100%;
  margin: 0 auto 60px;
  text-align: center;
}

.proposta__title {
  font-family: 'CatchyMager', Georgia, serif;
  font-size: 78px;
  font-weight: normal;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.proposta__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 680px;
  margin: 0 auto 36px;
}
.proposta__bullets li {
  display: flex;
  gap: 14px;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  line-height: 1.65;
}
.bullet-arrow {
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.proposta__intro {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

/* Card: duas seções (header pequeno + body maior) divididas por linha */
.card.glass {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  background: rgba(255, 255, 255, 0.13);

  border-radius: 0;
  border: 1px solid #FFFFFF42;

  display: flex;
  flex-direction: column;
  overflow: hidden;           /* garante que header/body respeitam borda */

  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  transition: transform var(--tr), background var(--tr), box-shadow var(--tr);
}
.card.glass:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}

/* Seção superior — título, altura compacta */
.card__header {
  padding: 18px 28px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

/* Seção inferior — lista, ocupa o espaço restante */
.card__body {
  padding: 24px 28px 32px;
  flex: 1;
}

.card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  line-height: 1.4;
}
.card__list li::before {
  content: '•';
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}


/* ==============================================
   SEÇÃO 3 — O PADRÃO MAIS ALTO
   ============================================== */
.padrao__headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 66px;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}

.padrao__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.padrao__body p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  line-height: 1.85;
}

.padrao__coda {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 66px;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}


/* Ticker da seção padrão */
.ticker-stage {
  margin: 16px auto 60px;
  width: 100%;
}
.ticker-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ticker-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ticker-row__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  white-space: nowrap;
  width: 128px;
  flex-shrink: 0;
}
.ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  will-change: transform;
}
.pb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pb__dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

.pb--blue  { background: rgba(30,67,151,0.28);  color: #A8C4F5; border-color: rgba(100,145,230,0.45); }
.pb--blue  .pb__dot { background: #7AAAF5; }
.pb--green { background: rgba(7,161,74,0.20);   color: #7DD9A0; border-color: rgba(7,161,74,0.45); }
.pb--green .pb__dot { background: #7DD9A0; }
.pb--slate { background: rgba(61,74,107,0.30);  color: #A0B3D8; border-color: rgba(100,120,175,0.50); }
.pb--slate .pb__dot { background: #A0B3D8; }
.pb--earth { background: rgba(59,109,17,0.22);  color: #AADA78; border-color: rgba(90,155,30,0.48); }
.pb--earth .pb__dot { background: #AADA78; }

@media (max-width: 600px) {
  .pb { font-size: 10px; padding: 4px 10px 4px 7px; }
}

/* Ticker — spotlight */
@keyframes pb-breathe {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.45); }
}
.ticker-track .pb {
  transition:
    transform    0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow   0.4s ease,
    background   0.4s ease,
    color        0.4s ease,
    border-color 0.4s ease;
}
.pb--lit {
  transform: scale(1.16) !important;
  position: relative;
  z-index: 10;
  animation: pb-breathe 1.1s ease-in-out infinite;
}
.pb--lit.pb--blue  { background: rgba(30,67,151,0.85);  color: #ddeaff; box-shadow: 0 0 20px rgba(100,145,230,0.75), 0 0 40px rgba(100,145,230,0.28); border-color: rgba(168,196,245,0.95); }
.pb--lit.pb--green { background: rgba(7,161,74,0.75);   color: #d0f5e2; box-shadow: 0 0 20px rgba(7,220,100,0.65), 0 0 40px rgba(7,220,100,0.24); border-color: rgba(125,217,160,0.95); }
.pb--lit.pb--slate { background: rgba(61,74,107,0.85);  color: #ccd8f2; box-shadow: 0 0 20px rgba(120,150,220,0.65), 0 0 40px rgba(120,150,220,0.24); border-color: rgba(160,179,216,0.95); }
.pb--lit.pb--earth { background: rgba(59,109,17,0.78);  color: #d2f2a0; box-shadow: 0 0 20px rgba(130,200,50,0.65), 0 0 40px rgba(130,200,50,0.24); border-color: rgba(170,218,120,0.95); }


/* ==============================================
   SEÇÃO 4 — SÓCIOS
   ============================================== */
.socios {
  background: var(--off-white);
}
.socios .section-inner {
  padding: 100px 0 120px;
}

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

.socio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform var(--tr), box-shadow var(--tr);
}
.socio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.socio-card__photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5e5ea;
}
.socio-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s ease;
}
.socio-card:hover .socio-card__photo { transform: scale(1.05); }

.socio-card__info { padding: 28px 26px 36px; }
.socio-card__name {
  font-family: 'CatchyMager', Georgia, serif;
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.2;
}
.socio-card__bio {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

.socios .section-cta .btn--blue:hover {
  background: #163577;
}


/* ==============================================
   SEÇÃO 5 — CONTATO
   ============================================== */
.contato {
  background: var(--blue);
}
.contato .section-inner { padding: 100px 0 120px; }

.contato__title {
  font-family: 'CatchyMager', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 60px;
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  width: 100%;
  transition: border-color var(--tr), background var(--tr);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.15);
}
.form-feedback {
  min-height: 1.4em;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  text-align: center;
}


/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #080808;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
}
.footer__gradient-bar {
  height: 3px;
  background: linear-gradient(135deg, #09A14A 0%, #1F4695 100%);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.footer__logo {
  height: 36px;
  width: auto;
  opacity: 0.88;
}
.footer__address {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 20px 32px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}


/* ==============================================
   RESPONSIVE
   ============================================== */

/* Mobile header */
@media (max-width: 768px) {
  .header-nav,
  .btn--header-cta { display: none; }
  .header-hamburger { display: flex; }
  .header-mobile-nav { display: flex; }
}

/* Tablet */
@media (max-width: 960px) {
  .cards-grid,
  .socios-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .cards-grid { max-width: 100%; grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* iOS/mobile: background-attachment:fixed não funciona → fallback scroll */
@media (max-width: 900px) {
  .proposta-bg {
    background-attachment: scroll;
    /* Posição ajustada conforme referência Elementor: -197px X, +16px Y */
     background-position: calc(50% + 600px) calc(50% + 16px);
  }
}

/* Utilitário nowrap */
.nowrap { white-space: nowrap; }

/* Mobile */
@media (max-width: 600px) {
  .container,
  .container--narrow { padding: 0 20px; }

  .section-inner { padding: 72px 0; }
  .socios .section-inner,
  .contato .section-inner { padding: 72px 0 88px; }

  .hero__body--setores br { display: none; }
  .hero__title      { font-size: clamp(2rem, 10vw, 78px); }
  .hero__content    { padding-top: 32px; padding-left: 24px; padding-right: 24px; padding-bottom: 40px; }
  .proposta__title  { font-size: clamp(1.8rem, 9vw, 78px); }
  .padrao__headline { font-size: clamp(2rem, 10vw, 66px); }
  .padrao__coda     { font-size: clamp(1.8rem, 9vw, 66px); }

  .ticker-row__label { display: none; }

  .btn { white-space: normal; }

  /* Cards mobile: sem espaço excessivo, fontes maiores */
  .cards-grid { gap: 12px; }
  .card__header { padding: 16px 20px 14px; }
  .card__body   { padding: 20px 20px 24px; }
  .card__title  { font-size: 1rem; letter-spacing: 0.04em; }
  .card__list li { font-size: 1rem; gap: 12px; }
  .card__list   { gap: 12px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .scroll-reveal { opacity: 1 !important; transform: none !important; }
  .hero__text { opacity: 1 !important; transform: none !important; }
}
