/* ═══════════════════════════════════════════════════════════════
   Summit Room — main.css  (pixel-perfect do WordPress/Elementor)
════════════════════════════════════════════════════════════════ */

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

:root {
  /* Cores extraídas do Elementor CSS (post-38.css) */
  --verde:        #1E3A2B;   /* fundo seções escuras */
  --verde-btn:    #336045;   /* header, hover */
  --verde-cta:    #1BAF54;   /* botão WhatsApp / CTA */
  --verde-cafe:   #336045;   /* fundo cafeteria */
  --bege:         #D8C2A7;   /* accent dourado */
  --bege-sub:     #AB9A82;   /* subtítulos / ícones */
  --cinza-card:   #F3F3F3;   /* fundo cards */
  --texto:        #323232;   /* texto principal */
  --branco:       #FFFFFF;

  --fonte: 'Poppins', sans-serif;
  --raio: 8px;
  --raio-lg: 16px;
  --sombra: 0 4px 24px rgba(30,58,43,.10);
  --sombra-lg: 0 10px 48px rgba(30,58,43,.14);
  --trans: .25s ease;

  --header-h: 80px;
  --pad-h: 8%;  /* padding horizontal das seções — igual Elementor */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte);
  font-size: 16px;
  font-weight: 400;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utilitários ───────────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.section-header { text-align: center; margin-bottom: 48px; }

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--texto);
  line-height: 1.2em;
  margin-bottom: 12px;
  text-wrap: balance;
}
.section-title.light { color: var(--branco); }

.section-sub {
  color: var(--bege-sub);
  font-size: 16px;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5em;
}

/* Animação de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Botões globais ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--verde-cta); color: var(--branco);
  padding: 17px 24px; border-radius: 10px;
  font-family: var(--fonte); font-weight: 400; font-size: 15px;
  border: none; cursor: pointer; transition: var(--trans);
  text-transform: capitalize;
}
.btn-primary:hover { background: var(--verde-btn); color: var(--bege); }

/* ─── Badges / Alertas / Forms (admin + dashboard) ─────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge-ativo, .badge-aprovada, .badge-confirmada { background: #dcfce7; color: #16a34a; }
.badge-pendente { background: #fef9c3; color: #854d0e; }
.badge-inativo, .badge-recusada, .badge-cancelada { background: #fee2e2; color: #dc2626; }

.alert { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--raio); font-weight: 600; margin-bottom: 24px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.formulario { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--verde); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1.5px solid #d1d5db; border-radius: var(--raio);
  font-family: var(--fonte); font-size: 1rem; color: var(--texto); background: var(--branco);
  transition: border-color var(--trans); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--bege); box-shadow: 0 0 0 3px rgba(216,194,167,.15);
}
.form-group textarea { resize: vertical; }
.form-divider { border: none; border-top: 1.5px solid #e5e7eb; margin: 28px 0; }
.form-section-title { font-size: 1.1rem; font-weight: 700; color: var(--verde); margin-bottom: 8px; }
.form-hint { font-size: .85rem; color: #9ca3af; margin-bottom: 16px; }

.btn-sm { display: inline-flex; align-items: center; gap: 4px; background: var(--cinza-card); color: var(--texto); padding: 6px 12px; border-radius: 6px; font-size: .8rem; font-weight: 600; border: 1px solid #e5e7eb; cursor: pointer; transition: var(--trans); }
.btn-sm:hover { background: #e5e7eb; }
.btn-sm.btn-danger { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.btn-sm.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-sm.btn-success { background: #dcfce7; color: #16a34a; border-color: #86efac; }
.btn-sm.btn-success:hover { background: #16a34a; color: #fff; }
.btn-danger { background: #dc2626; color: #fff; padding: 10px 20px; border-radius: var(--raio); font-weight: 700; border: none; cursor: pointer; }
.btn-danger:hover { background: #b91c1c; }
.btn-full { width: 100%; justify-content: center; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--verde);
  padding: 13px 28px; border-radius: var(--raio);
  font-weight: 600; font-size: .95rem;
  border: 2px solid var(--verde); cursor: pointer;
  transition: var(--trans);
}
.btn-outline-dark:hover { background: var(--verde); color: var(--branco); }

/* ═══════════════════════════════════════════════════════════════
   HEADER — branco, 97px, logo escuro, botão verde
════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--branco);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(30,58,43,.06);
  transition: height var(--trans), box-shadow var(--trans);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad-h);
}
.header-logo img { height: 30px; width: auto; transition: height var(--trans); }

/* Estado encolhido ao rolar (classe .scrolled aplicada via js/main.js) */
.site-header.scrolled { height: 64px; box-shadow: 0 6px 24px rgba(30,58,43,.12); }
.site-header.scrolled .header-logo img { height: 26px; }

.btn-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--verde-cta);
  color: var(--branco);
  padding: 13px 22px;
  border-radius: 10px;
  font-family: var(--fonte); font-weight: 500; font-size: 15px;
  text-transform: capitalize;
  transition: var(--trans);
}
.btn-header-cta:hover { background: var(--verde-btn); color: var(--bege); }
.btn-header-cta-mobile { display: none; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--texto);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-link:hover { color: var(--verde); background: var(--cinza-card); }
.nav-link.active { color: var(--verde); font-weight: 600; }

/* Dropdown "Espaços" */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle i { font-size: .65rem; margin-left: 4px; transition: transform var(--trans); }
.nav-dropdown:hover .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown.active > .nav-dropdown-toggle { color: var(--verde); font-weight: 600; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: var(--branco);
  border-radius: 10px;
  box-shadow: var(--sombra-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--trans);
  z-index: 110;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--texto);
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--trans);
}
.nav-dropdown-menu a:hover { background: var(--cinza-card); color: var(--verde); }
.nav-dropdown-menu a.active { color: var(--verde); font-weight: 600; }

.btn-menu-mobile {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.btn-menu-mobile span { display: block; width: 24px; height: 2.5px; background: var(--texto); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════════════
   HERO — 71vh, foto visível com overlay verde semi-transparente
════════════════════════════════════════════════════════════════ */
.hero {
  margin-top: var(--header-h);
  height: 71vh;
  min-height: 480px;
  background:
    linear-gradient(rgba(30,58,43,.65) 0%, rgba(51,96,69,.65) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-inner { padding: 0 var(--pad-h); width: 100%; }
.hero-content { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-title {
  font-size: 45px;
  font-weight: 600;
  color: var(--branco);
  line-height: 1.2em;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.hero-sub {
  font-size: 22px;
  font-weight: 300;
  color: var(--bege-sub);
  line-height: 1.5em;
}
.hero-tagline {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════════════════
   AMBIENTE EXCLUSIVO — branco, 4 image-boxes centralizados
════════════════════════════════════════════════════════════════ */
.ambiente {
  padding: 80px 0;
  background: var(--branco);
}
.ambiente .section-header { margin-bottom: 40px; }
.ambiente .section-title { font-size: 36px; font-weight: 600; color: var(--texto); }
.ambiente .section-sub { color: var(--bege-sub); font-size: 16px; font-weight: 300; }
.ambiente-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
  margin-top: 5%;
}
.ambiente-card {
  flex: 1;
  text-align: left;
  min-width: 0;
}
.ambiente-foto {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  background: var(--cinza-card);
}
.ambiente-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.ambiente-card:hover .ambiente-foto img { transform: scale(1.04); }
.ambiente-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 15px;
  text-transform: capitalize;
  line-height: 1.2em;
}
.ambiente-card p { font-size: 14px; font-weight: 300; color: var(--texto); line-height: 1.5em; }

/* ═══════════════════════════════════════════════════════════════
   NOSSOS VALORES — fundo #1E3A2B, 2×3 cards #F3F3F3
════════════════════════════════════════════════════════════════ */
.valores {
  padding: 80px 0;
  background: var(--verde);
}
.valores .section-header { margin-bottom: 40px; }
.valores .section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--branco);
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.valor-card {
  background: var(--cinza-card);
  border-radius: 8px;
  padding: 32px 28px;
  transition: var(--trans);
}
.valor-card:hover { transform: translateY(-3px); box-shadow: var(--sombra-lg); }
.valor-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 10px;
  text-transform: capitalize;
}
.valor-divider {
  width: 32px;
  height: 2px;
  background: var(--bege-sub);
  margin-bottom: 10px;
}
.valor-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--texto);
  line-height: 1.5em;
}

/* ═══════════════════════════════════════════════════════════════
   SOBRE O SUMMIT ROOM — fundo verde, foto esq arredondada, texto dir branco
════════════════════════════════════════════════════════════════ */
.sobre {
  padding: 80px 0;
  background: linear-gradient(231deg, #1E3A2B 0%, #336045 100%);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-foto {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--verde-btn);
}
.sobre-foto img { width: 100%; height: 100%; object-fit: cover; }
.sobre-texto .section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 20px;
}
.sobre-lead {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 10px;
}
.sobre-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--bege-sub);
  margin-bottom: 12px;
}
.sobre-lista { display: flex; flex-direction: column; gap: 7px; }
.sobre-lista li {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  padding-left: 16px;
  position: relative;
}
.sobre-lista li::before { content: '–'; position: absolute; left: 0; color: var(--bege-sub); }

/* ═══════════════════════════════════════════════════════════════
   ECOSSISTEMA — branco, 3×3 cards #F3F3F3, ícones circulares bege
════════════════════════════════════════════════════════════════ */
.ecossistema {
  padding: 80px 0;
  background: var(--branco);
}
.ecossistema .section-header { margin-bottom: 40px; }
.ecossistema .section-title { font-size: 36px; font-weight: 600; color: var(--texto); }
.ecossistema .section-sub { font-size: 16px; font-weight: 300; color: var(--texto); max-width: 800px; }
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.eco-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 32px 26px;
  background: var(--cinza-card);
  border-radius: 8px;
  gap: 14px;
  transition: var(--trans);
}
.eco-item:hover { box-shadow: var(--sombra); }
.eco-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--bege-sub);
  display: flex; align-items: center; justify-content: center;
  color: var(--bege-sub);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.eco-item:hover .eco-icon { border-color: var(--verde); color: var(--verde); }
.eco-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--verde);
  line-height: 1.3;
}
.eco-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--texto);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   ÁREA GOURMET — fundo #1E3A2B, texto esq + fotos fixas dir
════════════════════════════════════════════════════════════════ */
.gourmet {
  background: var(--verde);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 560px;
}
.gourmet-texto {
  padding: 60px var(--pad-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  height: 560px;
}
.gourmet-texto .section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 8px;
}
.gourmet-texto p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
}
.gourmet-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 560px;
  overflow: hidden;
}
.gourmet-fotos img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   CAFETERIA GOURMET — fundo #336045, texto esq + foto fixa dir
════════════════════════════════════════════════════════════════ */
.cafeteria {
  background: var(--verde-cafe);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
}
.cafeteria-texto {
  padding: 60px var(--pad-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  height: 480px;
}
.cafeteria-texto .section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 8px;
}
.cafeteria-texto p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
}
.cafeteria-lista {
  display: flex; flex-direction: column; gap: 7px;
}
.cafeteria-lista li {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  padding-left: 16px;
  position: relative;
}
.cafeteria-lista li::before { content: '–'; position: absolute; left: 0; color: var(--bege-sub); }
.cafeteria-obs { font-size: 14px; color: rgba(255,255,255,.4); font-style: italic; }
.cafeteria-foto {
  overflow: hidden;
  height: 480px;
}
.cafeteria-foto img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL — branco, centralizado
════════════════════════════════════════════════════════════════ */
.cta-final {
  padding: 80px 0;
  background: #f0f0f0;
  text-align: center;
}
.cta-content h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 12px;
  line-height: 1.3em;
}
.cta-content .cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: #6b6b6b;
  margin-bottom: 32px;
}
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--verde-cta);
  color: var(--branco);
  padding: 17px 28px;
  border-radius: 10px;
  font-family: var(--fonte); font-weight: 400; font-size: 15px;
  text-transform: capitalize;
  border: none; cursor: pointer;
  transition: var(--trans);
}
.btn-cta-wa:hover { background: var(--verde-btn); color: var(--bege); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — branco, logo escuro, ícones quadrados pretos
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--branco);
  border-top: 1px solid #e5e7eb;
  padding: 56px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-h) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bege-sub);
  margin-bottom: 16px;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; font-weight: 300; color: #6b6b6b; line-height: 1.6; max-width: 320px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; font-weight: 400; color: var(--texto); transition: color var(--trans); }
.footer-nav a:hover { color: var(--verde); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--texto);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: var(--branco);
  transition: var(--trans);
}
.footer-socials a:hover { background: var(--verde-btn); }
.footer-info { display: flex; flex-direction: column; gap: 8px; }
.footer-info p { font-size: 14px; font-weight: 300; color: #6b6b6b; line-height: 1.5; }
.footer-info i { display: none; }
.footer-bottom {
  padding: 16px var(--pad-h);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
}
.footer-login-link { color: #9ca3af; transition: color var(--trans); }
.footer-login-link:hover { color: var(--verde-btn); }
.footer-credit {
  display: flex; align-items: center; gap: 8px;
  color: #9ca3af; font-size: 12px; font-weight: 300;
  transition: opacity var(--trans);
  text-decoration: none;
}
.footer-credit:hover { opacity: .65; }
.footer-credit img { height: 22px; width: auto; }

/* ═══════════════════════════════════════════════════════════════
   LOGIN PAGE
════════════════════════════════════════════════════════════════ */
.login-page {
  min-height: 100vh;
  background:
    linear-gradient(231deg, #1E3A2B 0%, #336045 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.login-card {
  background: var(--branco); border-radius: var(--raio-lg);
  padding: 48px 40px; width: 100%; max-width: 440px; box-shadow: var(--sombra-lg);
}
.login-brand { text-align: center; margin-bottom: 32px; }
.login-brand img { margin: 0 auto 16px; }
.login-brand h2 { font-size: 1.2rem; color: var(--verde); font-weight: 600; }
.login-form { margin-bottom: 24px; }
.login-footer { text-align: center; font-size: .9rem; color: #9ca3af; }
.login-footer a { color: var(--bege-sub); font-weight: 600; }
.login-back { text-align: center; margin-top: 16px; font-size: .85rem; }
.login-back a { color: #9ca3af; }

/* ─── Admin Login ─────────────────────────────── */
.admin-login-page { min-height: 100vh; background: var(--verde); display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-login-card { background: var(--branco); border-radius: var(--raio-lg); padding: 48px 40px; width: 100%; max-width: 400px; text-align: center; box-shadow: var(--sombra-lg); }
.admin-login-logo { margin: 0 auto 24px; }
.admin-login-card h2 { font-size: 1.1rem; color: var(--verde); font-weight: 600; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════════
   PARCEIROS — vitrine de logos
════════════════════════════════════════════════════════════════ */
.parceiros-hero {
  padding: calc(var(--header-h) + 72px) var(--pad-h) 72px;
  background: linear-gradient(231deg, #1E3A2B 0%, #336045 100%);
  text-align: center;
}
.parceiros-hero .section-title { color: var(--branco); font-size: 42px; font-weight: 600; margin-bottom: 16px; }
.parceiros-hero .section-sub { color: rgba(255,255,255,.72); font-size: 18px; max-width: 620px; margin: 0 auto; }

.parceiros-logos { padding: 80px 0; background: var(--branco); }

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

.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px;
  background: var(--cinza-card);
  border-radius: var(--raio-lg);
  border: 1.5px solid #e5e7eb;
  transition: var(--trans);
  text-align: center;
}
.logo-card:hover { border-color: var(--bege); box-shadow: var(--sombra); }
.logo-card img { max-width: 130px; max-height: 64px; object-fit: contain; filter: grayscale(1); opacity: .75; transition: var(--trans); }
.logo-card:hover img { filter: grayscale(0); opacity: 1; }
.logo-segmento { font-size: .75rem; font-weight: 300; color: #9ca3af; }

.logo-aguarde {
  border-style: dashed;
  background: transparent;
  opacity: .5;
}
.logo-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex; align-items: center; justify-content: center;
}
.logo-placeholder i { font-size: 1.3rem; color: #9ca3af; }

.parceiros-cta {
  padding: 80px 0;
  background: #f0f0f0;
  text-align: center;
}
.parceiros-cta-content h2 { font-size: 36px; font-weight: 600; color: var(--texto); line-height: 1.3em; margin-bottom: 12px; }
.parceiros-cta-content p { color: #9ca3af; margin-bottom: 32px; font-size: 16px; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════════
   SEJA UM ASSOCIADO PAGE
════════════════════════════════════════════════════════════════ */
.associado-hero {
  padding: calc(var(--header-h) + 72px) var(--pad-h) 72px;
  background: linear-gradient(231deg, #1E3A2B 0%, #336045 100%);
  text-align: center;
}
.associado-hero .section-title { color: var(--branco); font-size: 42px; font-weight: 600; margin-bottom: 16px; }
.associado-hero .section-sub { color: rgba(255,255,255,.72); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   ASSOCIADO — Galeria
════════════════════════════════════════════════════════════════ */
.assoc-galeria {
  padding: 60px var(--pad-h);
  background: var(--cinza-card);
}
.assoc-galeria-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.ag-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  position: relative;
}
.ag-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ag-item:hover img {
  transform: scale(1.06);
}
.ag-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s ease;
  border-radius: 8px;
}
.ag-item:hover::after {
  background: rgba(0,0,0,.15);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  animation: lbFadeIn .25s ease;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
  background: none;
  border: none;
  padding: 0;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
  background: none;
  border: none;
  padding: 8px 16px;
  user-select: none;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.planos { padding: 100px 0; background: var(--cinza-card); }
.planos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.plano-card { background: var(--branco); border-radius: var(--raio-lg); padding: 36px 28px; border: 2px solid #e5e7eb; position: relative; transition: var(--trans); }
.plano-card:hover { box-shadow: var(--sombra-lg); border-color: var(--bege); }
.plano-destaque { border-color: var(--bege); box-shadow: var(--sombra-lg); }
.plano-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--bege); color: var(--branco); font-size: .7rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.plano-header { margin-bottom: 28px; }
.plano-header h3 { font-size: 22px; font-weight: 600; color: var(--verde); margin-bottom: 12px; }
.plano-preco { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.preco-valor { font-size: 1.7rem; font-weight: 600; color: var(--bege-sub); }
.preco-periodo { font-size: .9rem; color: #9ca3af; }
.plano-obs { font-size: .85rem; color: #6b6b6b; line-height: 1.5; }
.vagas-tag {
  display: inline-block;
  background: var(--bege);
  color: var(--branco);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}
.plano-beneficios { margin-bottom: 24px; }
.plano-beneficios li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f3f4f6; font-size: .9rem; color: var(--texto); }
.plano-beneficios li i { color: var(--bege-sub); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.plano-beneficios li:last-child { border-bottom: none; }
.plano-cta { width: 100%; justify-content: center; }
.office-salas { margin: 20px 0 24px; }
.office-salas h4 { font-size: .85rem; font-weight: 700; color: var(--verde); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.salas-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.salas-table th { background: var(--cinza-card); padding: 8px 10px; text-align: left; font-weight: 700; color: var(--verde); }
.salas-table td { padding: 8px 10px; border-bottom: 1px solid #f3f4f6; }
.salas-table td em { color: #9ca3af; font-style: normal; }
.formulario-section { padding: 100px 0; background: var(--branco); }
.formulario-wrap { max-width: 720px; margin: 0 auto; }
.formulario-header { text-align: center; margin-bottom: 48px; }
.formulario-header h2 { font-size: 36px; font-weight: 600; color: var(--verde); margin-bottom: 12px; }
.formulario-header p { color: #9ca3af; }
.btn-submit { width: 100%; justify-content: center; }
.formulario-alt { text-align: center; margin-top: 24px; font-size: .9rem; color: #9ca3af; }
.formulario-alt a { color: #25D366; font-weight: 700; margin-left: 6px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ambiente-grid { grid-template-columns: repeat(2, 1fr); }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .gourmet, .cafeteria { grid-template-columns: 1fr; height: auto; }
  .gourmet-texto, .cafeteria-texto { height: auto; }
  .gourmet-fotos { grid-template-columns: 1fr 1fr; height: 320px; }
  .gourmet-fotos img { height: 320px; }
  .cafeteria-foto { height: 280px; }
  .cafeteria-foto img { height: 280px; }
  .planos-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; --pad-h: 5%; }
  .site-header.scrolled { height: 58px; }
  .btn-menu-mobile { display: flex; }
  /* CTA full some; entra o botão-ícone redondo de WhatsApp ao lado do menu */
  .btn-header-cta { display: none; }
  .btn-header-cta-mobile {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    background: var(--verde-cta);
    color: var(--branco);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--trans);
  }
  .btn-header-cta-mobile:hover { background: var(--verde-btn); color: var(--bege); }
  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--branco);
    padding: 16px var(--pad-h) 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 4px;
  }
  .header-nav.open { display: flex; }
  .nav-link { padding: 12px 0; border-radius: 0; border-bottom: 1px solid #f3f4f6; }
  /* Dropdown vira lista expandida no mobile */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { pointer-events: none; }
  .nav-dropdown-toggle i { display: none; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 14px;
    min-width: 0;
    border-bottom: 1px solid #f3f4f6;
  }
  .nav-dropdown-menu a { padding: 10px 0; font-size: 13px; color: #555; }
  .hero { height: 65vh; min-height: 400px; }
  .hero-title { font-size: 28px; line-height: 1.1em; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: 25px; }
  .ambiente-grid { flex-wrap: wrap; gap: 30px; }
  .ambiente-card { flex: 0 0 calc(50% - 15px); }
  .valores-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
  .gourmet-texto, .cafeteria-texto { padding: 48px 5%; height: auto; }
  .planos-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-content h2 { font-size: 22px; }
  .parceiros-cta-content h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .ambiente-grid { gap: 24px; }
  .ambiente-card { flex: 0 0 100%; }
  .eco-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   PÁGINAS SEO — hero, seções, lista, FAQ, CTA (reutilizável)
════════════════════════════════════════════════════════════════ */
.seo-hero {
  margin-top: var(--header-h);
  min-height: 62vh;
  padding: 0 var(--pad-h);
  background:
    linear-gradient(rgba(30,58,43,.78) 0%, rgba(51,96,69,.78) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.seo-hero h1 {
  font-size: 42px;
  font-weight: 600;
  color: var(--branco);
  line-height: 1.2;
  max-width: 880px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.seo-hero p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  max-width: 720px;
  margin: 20px auto 0;
}
.seo-hero .btn-cta-wa { margin-top: 32px; }

.seo-section { padding: 72px 0; background: var(--branco); }
.seo-section:nth-child(even) { background: var(--cinza-card); }
.seo-section .section-inner { max-width: 980px; }
.seo-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--verde);
  line-height: 1.25;
  margin-bottom: 18px;
}
.seo-section p {
  font-size: 16px;
  font-weight: 300;
  color: var(--texto);
  line-height: 1.75;
  margin-bottom: 14px;
}
.seo-lista {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-top: 22px;
}
.seo-lista li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 300;
  color: var(--texto);
  line-height: 1.5;
}
.seo-lista li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 2px;
  color: var(--bege-sub);
  font-size: .85rem;
}

/* FAQ acordeão (details/summary) */
.seo-faq { padding: 72px 0; background: var(--branco); }
.seo-faq .section-inner { max-width: 860px; }
.seo-faq h2 {
  font-size: 30px; font-weight: 600; color: var(--verde);
  text-align: center; margin-bottom: 36px;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--texto);
  position: relative;
  transition: color var(--trans);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bege-sub);
  transition: transform var(--trans);
}
.faq-item[open] summary { color: var(--verde); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer {
  padding: 0 40px 22px 0;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .seo-hero h1 { font-size: 30px; }
  .seo-hero p { font-size: 16px; }
  .seo-lista { grid-template-columns: 1fr; }
  .seo-section h2, .seo-faq h2 { font-size: 24px; }
}
