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

:root {
  --brown-900: #1C0F08;
  --brown-800: #2C1810;
  --brown-700: #4A2C1A;
  --brown-600: #6B3D2E;
  --brown-500: #8B5E3C;
  --brown-400: #A87B5A;
  --brown-300: #C9A47E;
  --brown-200: #D4B896;
  --brown-100: #E8D5C0;
  --brown-50:  #F5F0EB;
  --cream:     #FAF7F4;
  --white:     #FFFFFF;
  --text:      #1a1a1a;
  --text-light:#5a5550;
  --accent:    #B8652A;
  --accent-hover: #9A5422;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 94, 60, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(250, 247, 244, 0.95);
  box-shadow: 0 2px 20px rgba(28, 15, 8, 0.08);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.navbar.scrolled .logo { color: var(--brown-800); }
.navbar.scrolled .logo span { color: var(--accent); }

.logo span {
  color: var(--brown-300);
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--accent); }

.nav-links .btn-nav {
  background: var(--accent);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.nav-links .btn-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-800);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 15, 8, 0.82) 0%, rgba(28, 15, 8, 0.55) 50%, rgba(28, 15, 8, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 3rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-300);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(201, 164, 126, 0.4);
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--brown-300);
}

.hero p {
  font-size: 1.1rem;
  color: var(--brown-100);
  max-width: 520px;
  margin: 0 0 2.2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: var(--brown-100);
  border-color: var(--brown-100);
}

.hero .btn-outline:hover {
  background: var(--brown-100);
  color: var(--brown-900);
}

/* -- Pillar strip -- */
.hero-pillars {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-pillar-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201, 164, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-300);
  flex-shrink: 0;
}

.hero-pillar-icon svg {
  width: 18px; height: 18px;
}

.hero-pillar-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-100);
  text-align: left;
  line-height: 1.3;
}

.hero-pillar-text span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--brown-200);
}

.hero-divider {
  width: 1px;
  height: 28px;
  background: rgba(201, 164, 126, 0.25);
  align-self: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(184, 101, 42, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 101, 42, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 101, 42, 0.25);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--brown-900);
  margin-bottom: 1.2rem;
}

.section p.lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

/* ===== PROBLEMA ===== */
.problema {
  background: var(--white);
  color: var(--text);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--brown-100);
  border-bottom: 1px solid var(--brown-100);
}

.problema .section-tag { color: var(--accent); }
.problema h2 { color: var(--brown-900); }
.problema p.lead { color: var(--text-light); max-width: 700px; }

.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.problema-card {
  background: var(--cream);
  border: 1px solid var(--brown-100);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.problema-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 15, 8, 0.08);
}

.problema-card .icon {
  width: 44px; height: 44px;
  background: var(--brown-800);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--brown-200);
}

.problema-card h4 {
  color: var(--brown-800);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.problema-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== O QUE FAZEMOS ===== */
.fazemos { background: var(--white); }

.fazemos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.fazemos-card {
  padding: 2.2rem;
  border-radius: 12px;
  border: 1px solid var(--brown-100);
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fazemos-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 15, 8, 0.08);
}

.fazemos-card .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--brown-400));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.fazemos-card h4 {
  font-size: 1.15rem;
  color: var(--brown-800);
  margin-bottom: 0.6rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.fazemos-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== MULHERES DO COURO ===== */
.mulheres { background: var(--cream); }

.mulheres-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mulheres-visual { position: relative; }

.mulheres-visual-box {
  border-radius: 16px;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.mulheres-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mulheres-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.3rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(184, 101, 42, 0.3);
  z-index: 2;
}

.mulheres-content h2 { margin-bottom: 0.6rem; }

.mulheres-content .subtitle {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

.mulheres-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}

.mulheres-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 1rem; color: var(--text-light);
}

.mulheres-list li svg {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--accent);
}

/* ===== PARCERIAS ===== */
.parcerias {
  background: linear-gradient(168deg, var(--brown-50) 0%, var(--white) 100%);
  text-align: center;
}

.parcerias-content { max-width: 700px; margin: 0 auto; }
.parcerias p.lead { margin: 0 auto 1.5rem; }

.parcerias-features {
  display: flex; justify-content: center; gap: 3rem; margin: 3rem 0; flex-wrap: wrap;
}

.parcerias-feature {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}

.parcerias-feature .icon {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--brown-100);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: border-color 0.2s, transform 0.2s;
}

.parcerias-feature:hover .icon {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.parcerias-feature span {
  font-size: 0.9rem; font-weight: 600; color: var(--brown-700);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-900);
  color: var(--brown-200);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 164, 126, 0.15);
}

.footer .logo { color: var(--brown-100); }
.footer .logo span { color: var(--brown-300); }

.footer-brand .footer-tagline {
  font-size: 0.9rem; color: var(--brown-400);
  margin-top: 0.8rem; line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-300);
  margin-bottom: 1rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.footer-links {
  display: flex; flex-direction: column;
  gap: 0.6rem; list-style: none;
}

.footer-links a { font-size: 0.9rem; color: var(--brown-300); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: var(--brown-500); }

/* ===== QUEM SOMOS PAGE ===== */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(168deg, var(--cream) 0%, var(--brown-50) 100%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-900);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem; color: var(--text-light);
  max-width: 680px; margin: 0 auto; line-height: 1.8;
}

.equipe { background: var(--white); }
.equipe h2 { text-align: center; margin-bottom: 3rem; }

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.membro-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--brown-100);
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.membro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 15, 8, 0.08);
}

.membro-foto {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  display: block;
  border: 3px solid var(--brown-100);
  box-shadow: 0 4px 12px rgba(28, 15, 8, 0.1);
}

.membro-card h3 { font-size: 1.15rem; color: var(--brown-800); margin-bottom: 0.3rem; }

.membro-card .cargo {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
}

.membro-card .bio { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }

.membro-linkedin {
  display: inline-block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.membro-linkedin:hover { color: var(--accent-hover); text-decoration: underline; }

.missao {
  background: var(--brown-800); color: var(--brown-100); text-align: center;
}

.missao h2 { color: var(--white); margin-bottom: 2rem; }

.missao-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; max-width: 900px; margin: 0 auto;
}

.missao-item h4 {
  color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.missao-item p { color: var(--brown-200); font-size: 0.95rem; line-height: 1.7; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    text-align: center;
    padding: 0 2rem;
  }

  .hero-ctas { justify-content: center; }

  .hero-pillars {
    justify-content: center;
    gap: 1.2rem;
  }

  .hero-divider { display: none; }

  .problema-grid,
  .fazemos-grid {
    grid-template-columns: 1fr;
  }

  .mulheres-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mulheres-visual { order: -1; }
  .mulheres-visual-box { height: 280px; }

  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .missao-grid { grid-template-columns: 1fr; }
  .parcerias-features { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(250, 247, 244, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--brown-100);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero { padding: 6rem 0 2rem; min-height: auto; }
  .hero-content { padding: 0 1.5rem; }
  .section { padding: 4rem 1.5rem; }

  .hero-pillars {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-content { max-width: 100%; }

  .equipe-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-links { align-items: center; }
}
