/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Roboto:wght@300;400;500&display=swap');

/* ============================================
   VARIÁVEIS
   ============================================ */
:root {
  --green-dark:    #063d27;
  --green-primary: #0d7a4e;
  --green-mid:     #10b981;
  --gold:          #f39c12;
  --bg-light:      #f5f7fa;
  --text:          #2c3e50;
  --text-muted:    #666;
  --white:         #ffffff;
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:     0 12px 32px rgba(0,0,0,0.14);
  --radius:        12px;
  --radius-sm:     6px;
  --transition:    .3s ease;
  --green-navbar:  #0d5c37;
  --green-footer:  #021e13;
  --text-dark:     #1a1a1a;
  --border:        #e5e7eb;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: linear-gradient(135deg, var(--green-navbar) 0%, var(--green-mid) 100%);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
}
.navbar-logo span { color: var(--gold); }
.navbar-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navbar-links a {
  color: rgba(255,255,255,0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.navbar-links a:hover { color: var(--gold); }
.navbar-links a.active { color: var(--gold); }
.navbar-links a.navbar-cta {
  background: var(--gold);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ============================================
   HERO PEQUENO (páginas internas)
   ============================================ */
.hero-inner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -80px; right: -60px;
}
.hero-inner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.hero-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SEÇÕES GENÉRICAS
   ============================================ */
.section { padding: 64px 48px; }
.section-white { background: var(--white); }
.section-light { background: var(--bg-light); }
.section-green {
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
}
.section-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}
.section-green .section-title,
.section-green .section-sub {
  color: var(--white);
}
.container { max-width: 1100px; margin: 0 auto; }

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--green-primary);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ============================================
   BOTÕES
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(243,156,18,0.4);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   CONTEÚDO TEXTUAL (privacidade / termos)
   ============================================ */
.text-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--white);
}
.text-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 36px 0 12px;
}
.text-content h2:first-child { margin-top: 0; }
.text-content p {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 12px;
}
.text-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.text-content ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}
.text-content .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, var(--green-footer), var(--green-dark));
  padding: 48px 48px 24px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--gold); }
.footer-info { font-size: 12px; line-height: 1.8; }
.footer-cnpj {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.footer-links a {
  color: var(--gold);
  font-size: 13px;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 0.75; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   HOME — HERO PRINCIPAL
   ============================================ */
.hero-home {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 60%, var(--green-mid) 100%);
  padding: 88px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-home-circles {
  position: absolute;
  width: 450px; height: 450px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -120px; right: -100px;
  pointer-events: none;
}
.hero-home-circles--2 {
  width: 320px; height: 320px;
  top: auto; right: auto;
  bottom: -90px; left: -70px;
}
.hero-home-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-home h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-home h1 span { color: var(--gold); }
.hero-home > .hero-home-content > p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* HOME — SOBRE RESUMO */
.sobre-row {
  display: flex;
  gap: 48px;
  align-items: center;
}
.sobre-icon-wrap { flex-shrink: 0; }
.sobre-icon {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  box-shadow: 0 8px 24px rgba(13,122,78,0.3);
}
.sobre-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.sobre-text p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}
.link-verde {
  color: var(--green-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
}
.link-verde:hover { color: var(--green-dark); }

/* HOME — CONTATO */
.contato-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.contato-item {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px 28px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  min-width: 180px;
  text-align: center;
}
.contato-item span {
  display: block;
  font-size: 11px;
  opacity: .7;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SOBRE — DADOS DA EMPRESA
   ============================================ */
.dados-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.dado-item {
  display: flex;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.dado-item:last-child { border-bottom: none; }
.dado-item:nth-child(even) { background: var(--bg-light); }
.dado-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
  flex-shrink: 0;
}
.dado-valor {
  font-size: 14px;
  color: var(--text);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-links { gap: 16px; }
  .navbar-links a:not(.navbar-cta) { display: none; }
  .section { padding: 48px 20px; }
  .hero-inner { padding: 40px 20px; }
  .hero-inner h1 { font-size: 26px; }
  .hero-home { padding: 60px 20px; }
  .hero-home h1 { font-size: 30px; }
  .sobre-row { flex-direction: column; text-align: center; }
  .sobre-icon-wrap { margin: 0 auto; }
  .contato-items { flex-direction: column; align-items: center; }
  .text-content { padding: 40px 20px; }
  footer { padding: 36px 20px 20px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .dado-item { flex-direction: column; gap: 4px; }
  .dado-label { min-width: unset; }
}

/* ============================================
   MODIFIERS
   ============================================ */
.section-title--left { text-align: left; }

.history-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.history-content p:last-child { margin-bottom: 0; }

/* Skip navigation */
.skip-link {
  position: fixed;
  top: -120px;
  left: 0;
  background: var(--gold);
  color: var(--text-dark);
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* Footer info contact links */
.footer-info a { color: inherit; }

/* Footer info contact block spacing */
.footer-contact {
  margin-top: 10px;
  line-height: 1.8;
}
