* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.swiper {
  width: 600px;
  height: 300px;
}

body {
    background-color: #f5f5f5;
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #60b200;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: #BFFF00;
}

.meu-botao {
    display: inline-flex;         
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #60b200;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: #1d1d1d;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.meu-botao:hover {
    border: #BFFF00;
    background-color: #BFFF00;      
    color: white;
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}


/*
#sec3 {
  height: 100vh;
  margin: 0;
  background: linear-gradient(
    to bottom, 
    #f5f5f5,
    #BFFF00
  );
}

.historico {
  padding: 2rem;
  text-align: center;
}

.historico .hist-container {
  max-width: 1200px;
  margin: 0 auto;

}
.parcerias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.parceria img {
  width: 240px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .parcerias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #sec3 {
    height: auto;
  }
}

@media (max-width: 480px) {
  .parcerias-grid {
    grid-template-columns: 1fr;
  }

  #sec3 {
    height: auto;
  }
}
*/

.greencolor {
    background: linear-gradient(20deg, #BFFF00, #006400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}