/** Alternate Theme **/
body.light-mode footer {
  background-color: var(--light);
  border-top: 1px solid #5959591c;
}

body.light-mode footer ul li a,
body.light-mode footer h4,
body.light-mode .endereco,
body.light-mode .copy,
body.light-mode .info-legal li a,
body.light-mode .copy a{
    color: var(--grey);
    transition: ease 0.2s;
    font-weight: 400;
  color: var(--dark);
}

body.light-mode footer ul li a:hover,
body.light-mode .copy a:hover,
body.light-mode .info-legal li a:hover {
  color: var(--black);
}

body.light-mode footer h5 {
  font-family: var(--funnel);
  font-weight: 300;
  font-size: 60px;
  line-height: 70px;
  color: transparent;
  background: linear-gradient(270deg, var(--dark), var(--black), var(--dark));
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: degradeAnimado 8s ease infinite;
}

body.light-mode footer hr {
  border: 1px solid #eaeaeae5;
  margin: 46px 0;
}

body.light-mode .selo-footer{
  width: 120px;
  margin-bottom: 8px;
  filter: invert(1);
}

body.light-mode .link-contato{
  text-decoration: none;
  color: var(--dark);
}
.link-contato:hover{
  text-decoration: none;
  color: var(--white);
}


/** Alternate Theme **/

/* Botão flutuante fixo */
#btn-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* Cor oficial do WhatsApp */
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

#btn-whatsapp img {
  width: 32px;
  height: 32px;
  filter:invert(1);
}

/* Efeito ao passar o mouse */
#btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}



.link-contato{
  text-decoration: none;
  color: var(--grey);
}
.link-contato:hover{
  text-decoration: none;
  color: var(--white);
}


footer{
    background-color: var(--black);
    padding: 32px 0;
    border-top: 1px solid #ffffff1c;
}

footer h4{
    color: var(--light);
    font-family: var(--funnel);
    margin: 10px 0px;
    font-weight: 400;
}

footer ul li{
    list-style: none;
}

footer ul li a{
    color: var(--grey);
    font-family: var(--funnel);
    font-weight: 400;
    text-decoration: none;
    font-size: 13px;
    line-height: 26px;
    transition: ease 0.2s;
}

footer ul li a:hover{
    color: var(--white);
    font-family: var(--funnel);
    font-weight: 400;
    text-decoration: none;
    font-size: 13px;
    line-height: 26px;
    transition: ease 0.2s;
}


footer hr{
  border: 1px solid #ffffff13;
  margin: 46px 0;
}

footer h5{
  font-family: var(--funnel);
  font-weight: 300;
  font-size: 60px;
  line-height: 70px;
  color: transparent;
  background: linear-gradient(270deg, var(--grey), var(--white), var(--grey));
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: degradeAnimado 8s ease infinite;
}

@keyframes degradeAnimado {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.info-legal li {
  display: inline;
  margin-right: 1rem;
}

.info-legal li a{
  color: var(--grey);
  font-size: 11px;
  transition: ease 0.2s;
}

.info-legal li a:hover{
  color: var(--white);
  font-size: 11px;
  transition: ease 0.2s;
}

.copy{
  color: var(--grey);
  font-family: var(--funnel);
  display: block;
  text-align: right;
  font-size: 11px;
  font-weight: 400;
  margin-top: 8px;
}

.copy a{
    color: var(--grey);
    transition: ease 0.2s;
    font-weight: 400;
}

.copy a:hover{
    color: var(--white);
    transition: ease 0.2s;
}

.flag{
    display: block;
    width: 20px;   
}


.endereco{
    color: var(--grey);
  font-family: var(--funnel);
  font-weight: 400;
  text-decoration: none;
  font-size: 13px;
  margin: 6px 10px 10px 0px;
  line-height: 19px;
}

.selo-footer{
  width: 120px;
  margin-bottom: 8px;
  filter: invert(0);
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 625px;
  margin: 0 auto;
  background-color: rgba(0,0,0,0.9);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 1000;
}

.cookie-consent p {
  margin: 0;
  flex: 1;
}


.texto-consent{
font-family: var(--funnel);
}

.cookie-consent a {
  font-family: var(--funnel);
  color: #99d904; /* cor do link */
  text-decoration: underline;
}

.cookie-consent button {
  background-color: #99d904;
  font-family: var(--funnel);
  color: #fff;
  border: none;
  padding: 8px 16px;
  margin-left: 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

.cookie-consent button:hover {
  background-color: #c2fc3c;
}



@media (min-width: 300px) and (max-width: 767px) {
 footer h5 {
    font-family: var(--funnel);
    font-weight: 300;
    font-size: 29px;
    line-height: 36px;
    color: transparent;
    background: linear-gradient(270deg, var(--grey), var(--white), var(--grey));
    background-size: 600% 600%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: degradeAnimado 8s ease infinite;
  }

  body.light-mode footer h5 {
  font-family: var(--funnel);
  font-weight: 300;
  font-size: 29px;
  line-height: 36px;
  color: transparent;
  background: linear-gradient(270deg, var(--dark), var(--black), var(--dark));
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: degradeAnimado 8s ease infinite;
}

  footer h4 {
  color: var(--light);
  font-family: var(--funnel);
  margin: 24px 10px 4px 0px;
  font-weight: 400;
  font-size: 18px;
}
.copy {
  color: var(--grey);
  font-family: var(--funnel);
  display: block;
  text-align: left;
  font-size: 11px;
  font-weight: 200;
  margin-top: 8px;
}
 .selo-footer {
    width: 73px;
    margin-bottom: 20px;
    filter: invert(0);
    margin-top: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
footer h5 {
  font-family: var(--funnel);
  font-weight: 300;
  font-size: 55px;
  line-height: 60px;
  color: transparent;
  background: linear-gradient(270deg, var(--grey), var(--white), var(--grey));
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: degradeAnimado 8s ease infinite;
}
.selo-footer {
  width: 73px;
  margin-bottom: 20px;
  filter: invert(0);
  margin-top: -50px;
}

  body.light-mode footer h5 {
  font-family: var(--funnel);
  font-weight: 300;
  font-size: 29px;
  line-height: 54px;
  color: transparent;
  background: linear-gradient(270deg, var(--dark), var(--black), var(--dark));
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: degradeAnimado 8s ease infinite;
}

  footer h4 {
  color: var(--light);
  font-family: var(--funnel);
  margin: 24px 10px 4px 0px;
  font-weight: 400;
  font-size: 18px;
}
.copy {
  color: var(--grey);
  font-family: var(--funnel);
  display: block;
  text-align: left;
  font-size: 11px;
  font-weight: 200;
  margin-top: 8px;
}
}

@media (min-width: 1024px) and (max-width: 1279px) {
footer h5 {
  font-family: var(--funnel);
  font-weight: 300;
  font-size: 55px;
  line-height: 54px;
  color: transparent;
  background: linear-gradient(270deg, var(--grey), var(--white), var(--grey));
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: degradeAnimado 8s ease infinite;
}s

  body.light-mode footer h5 {
  font-family: var(--funnel);
  font-weight: 300;
  font-size: 29px;
  line-height: 54px;
  color: transparent;
  background: linear-gradient(270deg, var(--dark), var(--black), var(--dark));
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: degradeAnimado 8s ease infinite;
}

}

@media (min-width: 1280px) and (max-width: 1535px) {

}


@media (min-width: 1536px) {

}