*{
  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: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(26, 125, 90, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  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, rgba(26, 125, 90, 0.95) 0%, rgba(20, 92, 67, 0.95) 100%),
    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600&h=900&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--branco);
  text-align: center;
  padding: 140px 20px 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, 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-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid var(--laranja);
  color: var(--branco);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
}

.hero-title{
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle{
  font-size: 20px;
  opacity: 0.95;
  font-weight: 400;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--laranja);
  margin: 0 auto;
  animation: scaleIn 0.6s ease 0.6s backwards;
}

/* CONTAINERS */
.container{
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
}

.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);
}

/* PROBLEMA */
.problema{
  background: var(--branco);
  color: #111;
}

.problema h2{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  margin-bottom: 40px;
}

.problema-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.problema-stat {
  flex-shrink: 0;
  text-align: center;
  padding: 40px;
  background: var(--cinza-claro);
  border-radius: 16px;
  border-left: 5px solid var(--laranja);
}

.stat-big {
  font-size: 120px;
  font-weight: 900;
  color: var(--verde-principal);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.problema-stat p {
  font-size: 16px;
  color: var(--cinza-medio);
  margin-top: 15px;
}

.problema-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cinza-medio);
  margin-bottom: 20px;
}

/* SOLUÇÃO */
.solucao{
  background: var(--cinza-claro);
}

.solucao h2{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  margin-bottom: 50px;
}

.solucao-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.solucao-image {
  flex: 1;
  position: relative;
}

.solucao-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(26, 125, 90, 0.2);
}

.solucao-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--branco);
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: var(--verde-principal);
}

.badge-icon {
  font-size: 20px;
}

.solucao-text {
  flex: 1;
}

.destaque {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cinza-escuro);
  font-weight: 500;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--laranja);
}

.beneficios {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.beneficio-item {
  display: flex;
  gap: 15px;
  align-items: start;
}

.check {
  background: var(--verde-principal);
  color: var(--branco);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
}

.beneficio-item strong {
  display: block;
  color: var(--verde-principal);
  font-size: 16px;
  margin-bottom: 5px;
}

.beneficio-item p {
  color: var(--cinza-medio);
  font-size: 14px;
  line-height: 1.5;
}

/* COMO FUNCIONA */
.como-funciona{
  padding: 100px 8%;
  text-align: center;
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.como-funciona::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(26, 125, 90, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.funciona-header {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.funciona-header h2{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  margin-bottom: 15px;
}

.funciona-subtitle {
  font-size: 18px;
  color: var(--cinza-medio);
}

.steps{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.step-card{
  background: var(--branco);
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--verde-principal);
  width: 220px;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(26, 125, 90, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--laranja);
  color: var(--branco);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card h3{
  color: var(--verde-principal);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p{
  color: var(--cinza-medio);
  font-size: 14px;
  line-height: 1.6;
}

.step-connector {
  font-size: 32px;
  color: var(--laranja);
  font-weight: 700;
  margin: 0 -10px;
}

/* ESPECIALIDADES */
.especialidades {
  background: var(--cinza-claro);
  padding: 100px 8%;
}

.especialidades h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  text-align: center;
  margin-bottom: 60px;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.esp-card {
  background: var(--branco);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.esp-card:hover {
  border-color: var(--verde-principal);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 125, 90, 0.12);
}

.esp-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.esp-card h4 {
  color: var(--verde-principal);
  font-size: 15px;
  font-weight: 600;
}

/* RESULTADOS */
.resultados{
  background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
  padding: 100px 8%;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.resultados::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;
}

.resultados-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.resultados h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
}

.resultados-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 60px;
}

.grid-resultados{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.resultado-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.resultado-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.resultado-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.resultado-box h3{
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

.resultado-box p {
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: 15px;
  line-height: 1.4;
}

.resultado-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
}

.progress-bar {
  height: 100%;
  background: var(--laranja);
  border-radius: 10px;
  animation: progressFill 1.5s ease;
}

.case-highlight {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
  opacity: 0.95;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  font-size: 48px;
}

.author-info strong {
  display: block;
  font-size: 16px;
  color: var(--branco);
  margin-bottom: 3px;
}

.author-info span {
  font-size: 13px;
  opacity: 0.7;
}

/* METAS */
.metas{
  padding: 100px 8%;
  background: var(--branco);
}

.metas h2{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--verde-principal);
  text-align: center;
  margin-bottom: 60px;
}

.metas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.meta-card {
  background: var(--cinza-claro);
  padding: 35px;
  border-radius: 12px;
  border-left: 5px solid var(--verde-principal);
  transition: all 0.3s ease;
}

.meta-card:hover {
  background: var(--branco);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.meta-year {
  display: inline-block;
  background: var(--laranja);
  color: var(--branco);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.meta-card h4 {
  color: var(--verde-principal);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.meta-card ul {
  list-style: none;
}

.meta-card li {
  color: var(--cinza-medio);
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
}

.meta-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--laranja);
  font-weight: 700;
}

/* DOAÇÃO */
.doacao{
  background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
  color: var(--branco);
  padding: 100px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.doacao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.doacao-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.doacao h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
}

.doacao-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
}

.doacao-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.doacao-card{
  background: var(--branco);
  color: var(--cinza-escuro);
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.doacao-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destaque-card {
  border: 3px solid var(--laranja);
  transform: scale(1.05);
}

.destaque-card:hover {
  transform: scale(1.08) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--laranja);
  color: var(--branco);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.doacao-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.doacao-card h3{
  color: var(--verde-principal);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.doacao-desc {
  font-size: 16px;
  font-weight: 600;
  color: var(--cinza-escuro);
  margin-bottom: 20px;
}

.doacao-includes {
  list-style: none;
  text-align: left;
}

.doacao-includes li {
  color: var(--cinza-medio);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
}

.doacao-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--verde-principal);
  font-weight: 700;
}

/* BOTÃO DOAR */
.btn-doar{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: var(--laranja);
  color: var(--branco);
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-doar:hover{
  background: var(--laranja-escuro);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-doar:hover .btn-icon {
  transform: translateX(5px);
}

.garantia {
  margin-top: 40px;
  opacity: 0.85;
}

.garantia p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* 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;
  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;
}

.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;
}

.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);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes progressFill {
  from {
    width: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  
  .problema-content,
  .solucao-content {
    flex-direction: column;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step-connector {
    transform: rotate(90deg);
    margin: -5px 0;
  }
  
  .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;
  }
  
  .container {
    padding: 60px 20px;
  }
  
  h2 {
    font-size: 32px !important;
  }
  
  .stat-big {
    font-size: 80px;
  }
  
  .problema-stat {
    padding: 30px 20px;
  }
  
  .step-card {
    width: 100%;
    max-width: 320px;
  }
  
  .especialidades-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .doacao-grid {
    grid-template-columns: 1fr;
  }
  
  .destaque-card {
    transform: scale(1);
  }
  
  .destaque-card:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  h2 {
    font-size: 26px !important;
  }
  
  .stat-big {
    font-size: 60px;
  }
  
  .navbar nav {
    display: flex;
    flex-wrap: wrap;
  }
  
  .navbar a {
    margin-left: 10px;
    font-size: 13px;
  }
  
  .metas-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}