* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

span {
  color: var(--cor-03);
}

:root {
  --cor-01: #042D29;
  --cor-02: #0A7E4D;
  --cor-03: #AFEB2B;
  --cor-04: #eef7e2;
  --cor-bg: #E5E5E5;
  --sidebar: #15312d;
}

.text-primary {
  color: var(--cor-03) !important;
}

.btn-primary {
  background-color: var(--cor-01) !important; 
  border: none;
  color: var(--cor-03);
}

.btn-primary:hover {
  background-color: var(--cor-02) !important;
  color: var(--cor-03);
}

/* ---- CONFIG HOME ---- */
.home {
  background-image: url(../img/bg-home.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.cont-home {
  position: relative;
  z-index: 3;
  color: #fff;
}

.cont-home h1 {
  color: #fff;
  font-weight: bold;
  font-size: 50px;
}

.paragrafo-ecosistema {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}


.cont-home i {
  color: var(--cor-03);
  font-size: 30px;
}

/* Sobreposição de cor */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(334deg, #4c6b2896, #103a168e, #0a7e3e91);
  background-size: 180% 180%;
  animation: gradient-animation 6s ease infinite;
  z-index: 2;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ECOSISTEMA */

.ecosistema h5 {
  color: var(--cor-03);
  font-weight: bold;
}

/* ---- FOOTER ----  */

footer a {
  color: var(--cor-03);
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

footer i {
  color: var(--cor-03);
}

footer h6, p {
  color: #aaaaaa;
}

footer img {
  max-width: 200px;
  padding-bottom: 30px;
}

.social-icons {
  display: inline-flex;
  list-style: none;
}

.social-icons a {
  position: relative;
  border:
1px solid var(--cor-03);
  border-radius:
50%;
  padding:
15px;
  margin:
10px;
  width: 35px;
  height: 35px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition:
all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp {
  width: auto;
  position: fixed;
  top: 85%;
  right: 1%;
  padding: 10px;
  z-index: 10000000;
}

/* Estilo geral do banner de cookies */
.cookies-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho do banner (inclui o ícone e a frase) */
.cookies-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
}

.cookies-header i {
  font-size: 24px;
  color: #ff9800;
  margin-right: 10px;
}

.cookies-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Texto explicativo */
.cookies-container p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  text-align: center;
}

.cookies-options label {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cookies-options input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #007bff;
}

/* Estilo do botão de salvar */
.cookies-save {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.cookies-save:hover {
  background-color: #0056b3;
}

/* Estilo responsivo */
@media (max-width: 600px) {
  .cookies-container {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }
}
