:root {
  --amarelo-girassol: #ffd700;
  --amarelo-escuro: #ffa500;
  --marrom-girassol: #8b4513;
  --verde-folha: #228b22;
  --bege-claro: #fff8dc;
}

* {
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--amarelo-girassol) 0%,
    var(--amarelo-escuro) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-cta {
  background: var(--marrom-girassol);
  color: white;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.4s ease;
}

.btn-cta:hover {
  background: var(--verde-folha);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.section-title {
  color: var(--marrom-girassol);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--amarelo-girassol);
  border-radius: 2px;
}

.sobre-section {
  padding: 80px 0;
  background: var(--bege-claro);
}

.objetivos-section {
  padding: 80px 0;
  background: white;
}

.card-objetivo {
  background: linear-gradient(
    135deg,
    var(--amarelo-girassol) 0%,
    var(--amarelo-escuro) 100%
  );
  color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.card-objetivo:hover {
  transform: translateY(-10px);
}

.card-objetivo i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mosaic-item img {
  max-width: 10rem;
  max-height: 10rem;
}
.custos-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--verde-folha) 0%,
    #1a6b1a 100%
  );
  color: white;
}

.custo-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

.custo-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.custo-item i {
  color: var(--amarelo-girassol);
  font-size: 2rem;
  margin-right: 15px;
}

.quem-somos-section {
  padding: 80px 0;
  background: var(--bege-claro);
}

.lider-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.lider-card:hover {
  transform: translateY(-10px);
}

.lider-card i {
  font-size: 4rem;
  color: var(--amarelo-escuro);
  margin-bottom: 1rem;
}

.depoimentos-section {
  padding: 80px 0;
  background: white;
}

.depoimento-card {
  background: var(--bege-claro);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--amarelo-girassol);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.depoimento-card i {
  color: var(--amarelo-escuro);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-items img {
  width: 10rem;
}

.cta-final-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--amarelo-girassol) 0%,
    var(--amarelo-escuro) 100%
  );
  color: white;
  text-align: center;
}

.beneficio-item {
  font-size: 1.2rem;
  margin: 10px 0;
}

.beneficio-item i {
  color: var(--verde-folha);
  margin-right: 10px;
}

footer {
  background: var(--marrom-girassol);
  color: white;
  padding: 40px 0 20px;
}

footer a {
  color: var(--amarelo-girassol);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--amarelo-girassol);
}

.social-icons {
  font-size: 1.8rem;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--amarelo-girassol);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

