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

/* ===== BASE ===== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav {
  margin: auto;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #df4f15;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #df4f15;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ===== BOTÕES ===== */
.btn-voluntaria {
  background: linear-gradient(90deg, #df4f15, #f78e4f);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn-voluntaria:hover {
  opacity: 0.85;
}

.btn-outline-dark:hover {
  background-color: #df4f15;
  color: #fff;
  border-color: #df4f15;
}

.btn-parceiro {
  background-color: #6C3FC9;
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  border: none;
  transition: 0.3s ease;
}

.btn-parceiro:hover {
  background-color: #552da7;
}

.btn-vermais {
  background-color: #6C3FC9;         
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-vermais:hover {
  background-color: #552da7;         
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 30px;
  padding-bottom: 60px;
}

.hero .row {
  align-items: center;
  min-height: 500px;
}

.hero h1 {
  color: #1c1c1c;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
}

.hero p {
  color: #555;
  font-size: 1.1rem;
}

.hero .text-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero .hero-img,
.hero .circle-bg {
  max-width: 100%;
  height: auto;
}

/* ===== SOBRE A CSG ===== */
.sobre-csg {
  background-color: #f9f9f9;
}

.sobre-csg h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: #1c1c1c;
  font-size: 2rem;
}

.sobre-csg .text-orange {
  color: #df4f15;
}

.sobre-csg p {
  line-height: 1.7;
  font-size: 1.05rem;
}

.btn-social {
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-social i {
  font-size: 1.2rem;
}

.btn-social.instagram {
  background-color: #f85437; 
}

.btn-social.instagram:hover {
  background-color: #df4f15;
}

.btn-social.linkedin {
  background-color: #f2784b; 
}

.btn-social.linkedin:hover {
  background-color: #df4f15;
}


/* ===== BIG NUMBERS ===== */
.big-numbers-section {
  background-color: #f9f9f9;
}

.big-numbers-wrapper {
  background: linear-gradient(135deg, #1a1a1a, #111);
  border-radius: 50px;
  padding: 2rem 3rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.number-box {
  flex: 1 1 180px;
  color: #fff;
}

.number-box .number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff4800;
  margin-bottom: 0.5rem;
}

.number-box .label {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
}

@media (max-width: 768px) {
  .big-numbers-wrapper {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .number-box {
    flex: 1 1 100%;
  }
}

/* ===== TÍTULOS GERAIS ===== */
.section-title {
  font-size: 2rem;
  color: #df4f15;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}

/* ===== DEPOIMENTOS ===== */
.testimonial-card {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== EVENTOS ===== */
.card-img-top {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  object-position: center;
  border-radius: 8px; 
}

#apoiadores a{
  margin-top: 2.5rem;
}

#apoiadores a:hover{
  color: #fff;
}


/* ===== RODAPÉ ===== */
.footer-custom {
  background-color: #df4f15;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
}

.footer-custom .logo-footer {
  width: auto;
  max-height: 110px;
  margin-bottom: 0.5rem;
}

.footer-custom a {
  color: #fff;
  transition: 0.2s ease-in-out;
}

/* Botão fixo para subir ao topo */
#btnTopo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #df4f15;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; 
}
#btnTopo:hover {
    background-color: #333;
}

