@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500&display=swap');
 
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
:root {
  --white:      #FFFFFF;
  --off-white:  #F7F7F5;
  --light-gray: #E8E8E5;
  --mid-gray:   #888880;
  --dark:       #1A1A18;
  --green:       #1B5E20;
  --green-light: #2E7D32;
   --gold:       #C8973A;
  --gold-light: #DEB96A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}
 
a { text-decoration: none; color: inherit; }
 

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
}
 
nav > ul:first-child {
  width: 100%;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  gap: 0;
}
 
nav li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
 
nav a {
  padding: 20px 10px;
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
  transition: color 0.25s;
  white-space: nowrap;
}
 
nav a:hover { color: var(--dark); }
 
.logotipo {
  margin-right: auto;
  flex-shrink: 1;
  min-width: 0;
}
 
.logotipo a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 10px 14px 0;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  max-width: 100%;
}
 
.logotipo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: invert(1) brightness(0);
}
 
.icon { fill: var(--dark); }
 
@media (max-width: 1000px) {
  .hideMobile { display: none !important; }
}
@media (min-width: 1001px) {
  .hideDesktop { display: none !important; }
}
 
/* ── mobile ── */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px;
  z-index: 200;
  background: var(--white);
  border-left: 1px solid var(--light-gray);
  box-shadow: -8px 0 32px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0px;
}
 
.sidebar li { width: 100%; height: auto; }
 
.sidebar a {
  width: 100%;
  padding: 18px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
}
 
.sidebar a:hover { color: var(--dark); }
.sidebar li:first-child a { justify-content: flex-end; }
 
/* ── Hero ── */
.parallax {
  position: relative;
  height: 60vh;
  background-image: url("img/imagens.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.6);
}
 
.parallax > * { position: relative; z-index: 1; }
 
.hero-content {
  text-align: center;
  color: var(--white);
  padding: 60px 24px 0;
  animation: fadeUp 1.2s ease both;
}
 
.hero-content .eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
 
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
 
.hero-content .subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  margin: 0 auto;
}
 
/* ── (páginas internas) ── */
.section-hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.65);
}
 
.section-hero > * { position: relative; z-index: 1; }
 
.section-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  width: 100%;
  margin-top: 40px;
}
 

.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--green);
  margin: 28px auto;
}
 
/* ── Conteúdo ── */
.conteudo {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 32px 64px;
  animation: fadeUp 1s 0.3s ease both;
}
 
.conteudo p {
  font-size: 1rem;
  line-height: 1.85;
  color: #050505;
  margin-bottom: 28px;
  text-align: justify;
  font-weight: 300;
}
 
.conteudo p:last-child { margin-bottom: 0; }

/* ── Vídeos (Home) ── */

.video-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px 80px;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 480px;
  margin: 32px auto 0;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: var(--dark);
}

@media (max-width: 500px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

 
.conteudo2 {
  max-width: 620px;
  margin: 0 auto;
  padding: 72px 32px 48px;
  text-align: center;
  animation: fadeUp 1s 0.3s ease both;
}
 
.conteudo2 p {
  font-size: 1.45rem;
  line-height: 1.85;
  color: #050505;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
}
 
/* ── Botão ── */
button, .btn {
  display: inline-block;
  margin: 0 auto;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  border-radius: 0;
}
 
button:hover, .btn:hover {
  background: var(--green);
  color: var(--white);
}
 
.btn-wrap {
  text-align: center;
  padding: 0 0 72px;
}
 
/* ── Redes sociais ── */
.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 48px 32px 64px;
  border-top: 1px solid var(--light-gray);
}
 
.redes-sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--light-gray);
  color: var(--mid-gray);
  font-size: 18px;
  transition: border-color 0.25s, color 0.25s;
}
 
.redes-sociais a:hover {
  border-color: var(--green);
  color: var(--green);
}
 
/* ── Footer ── */
.footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  padding: 0 0 40px;
}
 
/* ── Animações ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
 
@media (max-width: 600px) {
  .conteudo, .conteudo2 { padding: 56px 24px 48px; }
  .logotipo a { font-size: 1rem; }
}






/* ── Apoie ── */
.apoio-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 32px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.apoio-card {
  border: 1px solid var(--light-gray);
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.25s;
}

.apoio-card:hover { border-color: var(--green); }

.apoio-card .apoio-icon {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 20px;
}

.apoio-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.apoio-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.pix-box {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  text-align: center;
}


.pix-box .qr-code {
  width: 160px;
  height: 160px;
  margin: 16px auto 20px;
  display: block;
  border: 1px solid var(--light-gray);
}


.pix-box .pix-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.pix-box .pix-key {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  word-break: break-all;
}

@media (max-width: 800px) {
  .apoio-grid { grid-template-columns: 1fr; max-width: 320px; }
}
/* ── IOS ── */

@media (max-width: 1000px) {
  .parallax,
  .section-hero {
    background-attachment: scroll;
  }
}