*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root {
  --verde-principal: #1A7D5A;
  --verde-escuro: #145C43;
  --laranja: #FF6B35;
  --laranja-escuro: #e85a28;
  --cinza-escuro: #333;
  --cinza-medio: #666;
  --cinza-claro: #f8f9fa;
  --branco: #ffffff;
}

body{
  background: var(--branco);
  color: #111;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: var(--branco);
  border-bottom: 1px solid rgba(26, 125, 90, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.navbar a{
  margin-left: 30px;
  text-decoration: none;
  color: var(--verde-principal);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--laranja);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover{
  color: var(--laranja);
}

.navbar .logo{
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar .logo img{
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar .logo:hover img{
  transform: scale(1.05);
}

.navbar .logo span{
  font-size: 22px;
  font-weight: 700;
  color: var(--verde-principal);
  letter-spacing: -0.5px;
}

/* HERO */
.hero{
  background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
  padding: 140px 20px 100px;
  text-align: center;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title{
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle{
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease;
  color: #FF6B35;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  animation: fadeInUp 1.2s ease;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ABOUT SECTION */
.about-container{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8%;
  gap: 80px;
  background: var(--branco);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--laranja);
  font-weight: 600;
  margin-bottom: 15px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.8);
}

.image-box {
  flex: 1;
  max-width: 500px;
}

.image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 125, 90, 0.2);
  transition: transform 0.4s ease;
}

.image-frame:hover {
  transform: translateY(-10px);
}

.image-box img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--laranja);
  color: var(--branco);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.text-box{
  flex: 1;
  max-width: 550px;
}

.text-box h2{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--verde-principal);
  line-height: 1.2;
}

.text-box p{
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--cinza-medio);
  font-size: 16px;
}

.text-box p strong {
  color: var(--verde-principal);
  font-weight: 600;
}

.signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.signature-line {
  width: 60px;
  height: 2px;
  background: var(--laranja);
}

.signature span {
  font-size: 14px;
  color: var(--cinza-medio);
  font-style: italic;
}

/* VALUES SECTION */
.values-section {
  background: var(--cinza-claro);
  padding: 100px 8%;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  margin-top: 10px;
}

.values{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card{
  background: var(--branco);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 4px solid var(--verde-principal);
}

.value-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 125, 90, 0.15);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3{
  margin-bottom: 15px;
  color: var(--verde-principal);
  font-size: 24px;
  font-weight: 700;
}

.value-card p{
  color: var(--cinza-medio);
  line-height: 1.7;
  font-size: 15px;
}

.values-list p {
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.bullet {
  color: var(--laranja);
  font-weight: 700;
  flex-shrink: 0;
}

/* TIMELINE / JORNADA */
.timeline {
  padding: 100px 8%;
  background: var(--branco);
}

.timeline-header {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

/* LINHA LATERAL (efeito jornada) */
.timeline-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--laranja), transparent);
  border-radius: 10px;
}

/* TÍTULO */
.timeline-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  margin-bottom: 20px;
}

/* TEXTO */
.timeline-header p {
  color: var(--cinza-medio);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  padding-left: 10px;
}


/* LABEL */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 10px;
}

/* TEAM */
.team {
  background: var(--cinza-claro);
  padding: 100px 8%;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  margin-top: 10px;
}

.team-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--branco);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.team-image {
  position: relative;
  flex-shrink: 0;
}

.team-image img {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.team-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--verde-principal);
  color: var(--branco);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.team-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--verde-principal);
  margin-bottom: 5px;
}

.team-role {
  color: var(--laranja);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px !important;
}

.team-text p {
  color: var(--cinza-medio);
  line-height: 1.8;
  margin-bottom: 15px;
}

.team-achievements {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--cinza-claro);
}

.achievement {
  display: flex;
  flex-direction: column;
}

.achievement strong {
  font-size: 24px;
  color: var(--verde-principal);
  font-weight: 700;
  margin-bottom: 5px;
}

.achievement span {
  font-size: 12px;
  color: var(--cinza-medio);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* IMPACT */
.impact {
  background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
  padding: 100px 8%;
  color: var(--branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.impact-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.impact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
}

.impact-description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 14px;
  opacity: 0.9;
}

/* FOOTER */
.footer {
  background: var(--cinza-escuro);
  color: var(--branco);
  padding: 60px 8% 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--branco);
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 16px;
  color: var(--laranja);
  font-weight: 600;
  margin-bottom: 15px !important;
  font-style: italic;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 20px !important;
}

.footer-cnpj {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 20px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--branco);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--laranja);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  font-size: 15px;
  transition: transform 0.3s ease;
  color: white;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-partners {
  text-align: center;
  margin-bottom: 40px;
}

.footer-partners h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--branco);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partners-logos img {
  height: 45px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.5;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .about-container,
  .team-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }
  
  .navbar .logo span {
    font-size: 18px;
  }
  
  .navbar .logo img {
    height: 38px;
  }
  
  .navbar a {
    margin-left: 15px;
    font-size: 14px;
  }
  
  .hero {
    padding: 100px 20px 80px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-container,
  .values-section,
  .timeline,
  .team,
  .impact {
    padding: 60px 5%;
  }
  
  .text-box h2,
  .values-header h2,
  .timeline-header h2,
  .team-header h2,
  .impact h2 {
    font-size: 32px;
  }
  
  .image-box {
    max-width: 100%;
  }
  
  .values {
    grid-template-columns: 1fr;
  }
  
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  
  .team-content {
    padding: 30px 20px;
  }
  
  .team-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }
  
  .team-achievements {
    flex-direction: column;
    gap: 20px;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: 40px 5% 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .text-box h2,
  .values-header h2,
  .timeline-header h2,
  .team-header h2,
  .impact h2 {
    font-size: 26px;
  }
  
  .navbar nav {
    display: flex;
    flex-wrap: wrap;
  }
  
  .navbar a {
    margin-left: 10px;
    font-size: 13px;
  }
}