@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v22/1Ptug8LJRfWJmhDAuUs4TYFs.woff2) format("woff2");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.4s ease, color 0.4s ease;
}

html, body{
  scroll-behavior: smooth;
}

h1{
  color: white;
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
  width: 100vw;
      font-family: 'Raleway', sans-serif;
}

body.light-mode {
  background-color: #ffffff;
  color: #000000;
}

body.dark-mode {
  background-color: #0a0a0a;
  color: #ffffff;
}

.theme-switch {
  position: relative;
  width: 70px;
  height: 32px;
  border-radius: 20px;
  border: none;
  background: var(--switch-bg, #ddd);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid white;
  transition: background 0.3s ease;
}

.theme-switch .icon-light,
.theme-switch .icon-dark {
  flex: 1;
  text-align: center;
  font-size: 16px;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.theme-switch .switch-ball {
  position: absolute;
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.dark-mode .theme-switch {
  --switch-bg: #444;
}

.dark-mode .theme-switch .switch-ball {
  transform: translateX(38px);
}

.dark-mode .theme-switch .icon-light {
  opacity: 0.2;
}

.dark-mode .theme-switch .icon-dark {
  opacity: 1;
}

.light-mode .theme-switch {
  --switch-bg: #e6e6e6;
}

.light-mode .theme-switch .switch-ball {
  transform: translateX(0);
}

.light-mode .theme-switch .icon-light {
  opacity: 1;
}

.light-mode .theme-switch .icon-dark {
  opacity: 0.2;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin-active {
    animation: spin 0.6s ease-out;
}

body.light-mode #toggle-theme {
  background: #1b1b1b;
  color: #fff;
}

body.dark-mode #toggle-theme {
  background: #efefef;
  color: #000;
}

header {
  position: relative;
  height: 700px;
  overflow: visible;
  background-color: rgb(0, 0, 0);
}

@media (max-width: 700px) {
  header{
    height: 500px;
  }
}





#imgHeaderBlack,
#imgHeaderWhite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#imgHeaderBlack {
  background-image: url("img/imgHeaderBlack.png");
  box-shadow: 0 6px 18px rgba(1, 171, 43, 0.25),
    0 12px 36px rgba(1, 171, 43, 0.15);
  animation: headerAnimacaoBlack 20s infinite ease-out;
}



body.light-mode #imgHeaderWhite {
  opacity: 0.8;
}
body.light-mode #imgHeaderBlack {
  opacity: 0;
}
body.dark-mode #imgHeaderBlack {
  opacity: 0.8;
}
body.dark-mode #imgHeaderWhite {
  opacity: 0;
}

#imgHeaderWhite {
  background-image: url("img/imgHeaderWhite.png");
  box-shadow: -1px 2px 22px 9px rgba(0, 0, 0, 0.76);
  -webkit-box-shadow: -1px 2px 22px 9px rgba(0, 0, 0, 0.76);
  -moz-box-shadow: -1px 2px 22px 9px rgba(0, 0, 0, 0.76);
  animation: headerAnimacaoWhite 20s infinite ease-out;
}
@keyframes headerAnimacaoBlack {
  0% {
    background-image: url("img/imgHeaderBlack.png");
  }
  35% {
    background-image: url("img/imgHeaderBlack.png");
  }
  /* transição */
  40% {
    background-image: url("img/imgHeader2.png");
  }

  64% {
    background-image: url("img/imgHeader2.png");
  }
  /* transição */
  68% {
    background-image: url("img/imgHeader3.png");
  }

  97% {
    background-image: url("img/imgHeader3.png");
  }
  /* transição */
  100% {
    background-image: url("img/imgHeaderBlack.png");
  }
  /* 50% {
   background-image: url('img/imgHeader2.png');
  }

  100%{
background-image: url('img/imgHeader3.png');
  } */
}

@keyframes headerAnimacaoWhite {
  0% {
    background-image: url("img/imgHeaderWhite.png");
  }
  35% {
    background-image: url("img/imgHeaderWhite.png");
  }
  /* transição */
  40% {
    background-image: url("img/imgHeader2.png");
  }

  64% {
    background-image: url("img/imgHeader2.png");
  }
  /* transição */
  68% {
    background-image: url("img/imgHeader3.png");
  }

  97% {
    background-image: url("img/imgHeader3.png");
  }
  /* transição */
  100% {
    background-image: url("img/imgHeaderWhite.png");
  }
}
/* @keyframes headerAnimacaoBlack{
  from {
   box-shadow:
    0 6px 18px rgba(1, 171, 43, 0.25),
    0 12px 36px rgba(1, 171, 43, 0.15);
  }
  to {
    box-shadow:
    0 6px 18px rgba(0, 167, 42, 0.25),
    0 12px 36px rgba(0, 179, 45, 0.288);
  }
}


@keyframes headerAnimacaoWhite{
  from {
   box-shadow:
    0 6px 18px rgba(7, 7, 7, 0.25),
    0 12px 36px rgba(1, 171, 43, 0.15);
  }
  to {
    box-shadow:
    0 6px 18px rgba(248, 248, 248, 0.25),
    0 12px 36px rgba(255, 255, 255, 0.288);
  }
} */



/* @media (max-width: 480px) {
  #toggle-theme {
    top: 12px;
    right: 10px;
    font-size: 16px;
    padding: 8px;
    width: 50px;
    height: 50px;
  }
} */

#containerDivHeader {
  width: 100%;
  height: 110px;
  position: sticky;
  top: 0px;
  backdrop-filter: blur(6px);
  box-shadow: rgba(15, 15, 15, 0.32) 0px 15px 17px 1px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
}

#logo {
  width: 65px;
  height: 65px;
  margin-left: 20px;
}

.botao-contato {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(0, 191, 165, 0.2);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.botao-contato:hover {
  background: rgba(0, 191, 165, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
}

.botao-contato svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  #containerDivHeader {
    padding: 0 16px;
    height: 70px;
  }
#logo{
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  #containerDivHeader {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 10px 0;
    
  }
#logo{
    margin-left: 0;
  }

}

@media (max-width: 400px) {
  #logo {
    width: 50px;
    height: 50px;
    margin-left: 0;
  }

  /* .botao-contato {
    font-size: 14px;
    padding: 10px 0;
    gap: 6px;
  }

  .botao-contato svg {
    width: 20px;
    height: 20px;
  } */
}

@media (max-width: 480px) {
  #logo{
    margin-left: 0;
  }
  .botao-contato {
    font-size: 14px;
    padding-top: 15px;
    gap: 8px;
  }

  .botao-contato svg {
    width: 24px;
    height: 24px;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.h2Main {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.h2Main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #33ff00, #00ff2a);
  border-radius: 2px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .h2Main {
    font-size: 1.8rem;
  }
}

#cardsMain {
  display: flex;
  flex-direction: row; 
  justify-content: center;
  align-items: center;
  width: 1000px;
  height: 700px;
  gap: 20px;
}

#blocoPrincipal {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#roupeirosMain {
  width: 100%;
  height: 100%;
  background-image: url("https://srmoveisatacadao.com.br/imagem/Roup-Imperatriz-6-Reflec-Ntl.jpg?0.934634994578865");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#blocoSecundario {
  flex: 1;
  height: 100%;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.classItem {
  width: calc(50% - 10px);
  height: calc(50% - 10px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition:  0.3s ease;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  position: relative; 
  overflow: hidden;  
  border-radius: 13px;
}

.classItem:hover {
  transform: scale(1.02);
  filter: brightness(1.07);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.classItem:hover .h3ClassItem {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}
.classItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0)
  );
  pointer-events: none;
}

.h3ClassItem {
  position: relative; 
  z-index: 2;
  font-size: 1.7em;
  font-weight: bold;
  color: whitesmoke;
  cursor: pointer;
  margin-bottom: 30px;
}


#camasMain {
  background-image: url("https://srmoveisatacadao.com.br/imagem/CamaCasalLailaBranco.1.jpeg?0.13706643375244576");
  background-size: cover;
  background-position: center;
}

#cozinhaMain {
  background-image: url("https://srmoveisatacadao.com.br/imagem/Cozinha-Madri-Cinamomo-Grafite.jpeg?0.21559822770546688");
  background-size: cover;
  background-position: center;
}

#salaMain {
  background-image: url("https://cdn.pixabay.com/photo/2017/08/02/01/01/living-room-2569325_640.jpg");
  background-size: cover;
  background-position: center;
}

#maisCategorias {
  background-image: url("https://srmoveisatacadao.com.br/imagem/Colchobox-Bau-Solt-Nanda%20NOVO.jpg?0.38932249676033837");
  background-size: cover;
  background-position: center;
}

@media (max-width: 850px) {
  #cardsMain {
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
  }

  #blocoPrincipal,
  #blocoSecundario {
    width: 120%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  #blocoPrincipal .classItem {
    width: 90%;
    height: 200px;
  }

  #blocoSecundario .classItem {
    width: 90%;
    height: 200px;
  }

  .h3ClassItem {
  font-size: 2em; 
  font-weight: 700; 
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85), 
               0 0 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  text-align: center;
  }

  
#section1{
 width: 77%;
}
}

#maisVendidos {
  width: 100%;
  display: flex;
  justify-content: center;
 margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  padding: 10px 0;
}

.carousel-slide {
  flex: 0 0 calc(50% - 10px);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide h3 {
  padding: 10px;
  font-size: 1rem;
  background-color: var(--card-bg, #fff);
  color: var(--text-color, #222);
  margin: 0;
}

.carousel-slide:hover img {
  transform: scale(1.04);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 168, 36, 0.425);
  border: 3px solid rgb(0, 0, 0);
  backdrop-filter: blur(6px);
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 1.6rem;
  color: #000000;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.45);
  background-color: #00a331;
  transform: translateY(-50%) scale(1.1);
}


.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 100%;
  }

  .carousel-slide img {
    height: 400px;
  }

  .carousel-btn {
    font-size: 1.4rem;
    padding: 8px 12px;
    border: 2px solid black;
  }
}

/* -------------------------------------------------------------- */

.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 400px;
  height: 510px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  transition: all 0.3s ease, background 0.3s ease, color 0.3s ease;
  font-family: Arial, sans-serif;
  backdrop-filter: blur(12px);
}

.chatbot-header {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.chatbot-close {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.2s ease;
}

body.light-mode .chatbot-container {
  background: rgba(255, 255, 255, 0.932);
    border: 1px solid rgb(0, 29, 0);
  color: #111;
}

body.light-mode .chatbot-header {
  background: rgba(0, 161, 56, 0.986);
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

body.light-mode .chatbot-close {
  color: #ff0000;
}

body.light-mode .chatbot-close:hover {
  color: #000;
}

body.dark-mode .chatbot-container {
  background: rgba(15, 15, 15, 0.75);
  border: 1px solid rgba(0, 255, 0, 0.2);
  color: #00ff88;
}

body.dark-mode .chatbot-header {
  background: rgba(0, 0, 0, 0.6);
  color: #00ff88;
  border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

body.dark-mode .chatbot-close {
  color: #ff0000;
}

body.dark-mode .chatbot-close:hover {
  color: #ffffff;
}

body.dark-mode #chat-input::placeholder{
  color: #e8ffe8;

}

@media (max-width: 768px) {
  .chatbot-container {
    border-radius: 0;
    box-shadow: none; 
        width: 80vw;
    height: 57vh;
    bottom: 10px;
    right: 10px;
    border-radius: 16px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
  }
}

.chatbot-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

body.light-mode .chatbot-body {
  background: rgba(196, 255, 196, 0.493);
  color: #111;
}

body.dark-mode .chatbot-body {
  background: rgba(10, 10, 10, 0.3);
  color: #e8ffe8;
}

.bot-message {
  background: linear-gradient(135deg, rgba(0,255,120,0.15), rgba(0,255,120,0.05));
  border: 1px solid rgba(0,255,120,0.2);
  padding: 10px 14px;
  border-radius: 12px 12px 12px 0;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4em;
  transition: all 0.3s ease;
}

body.light-mode .bot-message {
  background: linear-gradient(135deg, rgba(0,128,0,0.15), rgba(0,128,0,0.05));
  border: 1px solid rgb(20, 102, 0);
  color: #111;
}

body.dark-mode .bot-message {
  color: #e8ffe8;
}

.user-message {
  background: linear-gradient(135deg, rgba(0,255,0,0.4), rgba(0,255,0,0.2));
  border: 1px solid rgba(0,255,0,0.3);
  padding: 10px 14px;
  border-radius: 12px 12px 0 12px;
  max-width: 80%;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.4em;
  transition: all 0.3s ease;
}

body.light-mode .user-message {
  background: linear-gradient(135deg, rgba(0,200,0,0.4), rgba(0,200,0,0.2));
  border: 1px solid rgba(0,200,0,0.3);
  color: #111;
}

body.dark-mode .user-message {
  color: #e8ffe8;
}

.chatbot-footer {
  display: flex;
  border-top: 1px solid rgba(0, 255, 0, 0.3);
  transition: 1s ease;
}

.chatbot-footer input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  transition: color 0.3s ease;
}

body.light-mode .chatbot-footer input {
  color: #111;
  background-color: #acfac3;
}

body.dark-mode .chatbot-footer input {
  color: #e8ffe8;
}

.chatbot-footer input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.chatbot-footer button {
  background-color: #00ff88;
  border: none;
  color: black;
  font-weight: bold;
  padding: 0 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.chatbot-footer button:hover {
  background-color: #29cc00;
  transform: scale(1.05);
}

.chatbot-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #00ff88;
  color: black;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9998;
}

.chatbot-toggle:hover {
  transform: scale(1.05);
}

.chatbot-toggle.hidden {
  display: none;
}

.chatbot-body::-webkit-scrollbar {
  width: 6px;
}

body.light-mode .chatbot-body::-webkit-scrollbar-thumb {
  background: rgba(0, 128, 0, 0.4);
  border-radius: 3px;
}

body.dark-mode .chatbot-body::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 0, 0.3);
  border-radius: 3px;
}

footer {
  height: 600px;
  background-color: #333;
  color: #f1f1f1; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
   border-top: 2px solid black;
  border-bottom: 2px solid black;
}

footer h3 {
  font-size: 2.4rem;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;

}
.span{
    animation: pulseGlow 2.5s infinite ease-in-out;
color: white;
}
.span2{
     text-shadow: 0 0 3px #00ff15, 0 0 10px #00cc55;
     color: white;
}

footer p {
  font-size: 1.6rem;
  color: #ccc;
  max-width: 600px;
 
}

.hr{
  width: 85%;
  border: 1px solid #00ff15;
  height: 1px;
  background-color: #00ff15;
  margin: 10px 0;
       text-shadow: 0 0 5px #00ff15, 0 0 10px #00cc55;


}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 5px #00ff15, 0 0 10px #00cc55;
  }
  50% {
    text-shadow: 0 0 20px #00ff15, 0 0 40px #00cc55;
  }
}
@keyframes pulseGlow2 {
  0%, 100% {
box-shadow: 0px 0px 53px 0px rgba(0,255,21,0.35);
-webkit-box-shadow: 0px 0px 53px 0px rgba(0,255,21,0.35);
-moz-box-shadow: 0px 0px 53px 0px rgba(0,255,21,0.35);
  }
  50% {
box-shadow: 0px 0px 53px 3px rgba(0,255,21,0.35);
-webkit-box-shadow: 0px 0px 53px 3px rgba(0,255,21,0.35);
-moz-box-shadow: 0px 0px 53px 3px rgba(0,255,21,0.35);
  }
}
/* footer .social-icons {
  display: flex;
  gap: 20px;
}

footer .social-icons a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-icons a:hover {
  color: #07d400; 
  transform: translateY(-3px);
} */

footer small {
  font-size: 1rem;
  color: #aaa;
}

#logoFooter {
  width: 80px;
  height: auto;
}

@media (max-width: 768px) {
  footer {
    padding: 15px 15px;
  }

  footer h3 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  footer p {
    font-size: 1.2rem;
  }

  /* footer .social-icons a {
    font-size: 1.8rem;
  } */

  #logoFooter {
    width: 100px;
  }
}

@media (max-width: 480px) {
  footer {
    gap: 12px;
  }

  footer h3 {
    font-size: 2rem;
  }

  footer p {
    font-size: 1rem;
  }

  /* footer .social-icons {
    gap: 15px;
  }

  footer .social-icons a {
    font-size: 1.6rem;
  } */

  #logoFooter {
    width: 60px;
  }

  footer small {
    font-size: 0.9rem;
  }
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    margin: auto;
    color: #f0f0f0;
    background-color: #1c1e21;
    padding: 25px;
    border-radius: 16px;
    font-family: 'Inter', 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    text-align: center;
    z-index: 999999;
    border: none;
}

#cookie-banner p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

#cookie-banner button {
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out; /* Transição mais rápida */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#accept-cookies {
    background: #25d366;
    color: #fff;
    margin-right: 15px;
}

#accept-cookies:hover {
    transform: scale(1.02); 
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5); 
}

#accept-cookies:active {
    transform: scale(0.98);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#decline-cookies {
    background: #6c757d;
    color: #fff;
}

#decline-cookies:hover {

    transform: scale(1.02); 
    box-shadow: 0 6px 15px rgba(108, 117, 125, 0.4);
}

#decline-cookies:active {
    transform: scale(0.98); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#cookiesPolitica{
      color: white;
      transition: 0.3s ease;
}

#cookiesPolitica:hover{
    text-shadow: 0 0 3px #00ff15, 0 0 10px #00cc55;
}


.top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px; 
  margin-left: 20px; 
  background-color: #1c1e21;
  border-radius:10px;
  z-index:9999999999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:  0.25s ease;
}

.top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.top:before {
  content:"";
  position:absolute;
  inset:30%;
  transform:translateY(20%) rotate(-45deg);
  border-top:5px solid #00d841;
  border-right:5px solid #00d841;
  transition: 0.25s ease;
}

.top:hover:before {
border-top:5px solid #1c1e21;
  border-right:5px solid #1c1e21;
}

.top:hover{
     background-color: #00d841;
}

@media (max-width: 768px) {
.top {
  top: 20px;
  right: 20px;
  z-index: 10;
}
}



#miniCardsContainer {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  opacity: 0;
  display: none;
  transform: translateY(-15px);
  transition: opacity .4s ease, transform .4s ease;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

#miniCardsContainer.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.miniCard {
  width: 200px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.28);

  transition: transform .25s ease, box-shadow .25s ease;
}

.miniCard:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.miniCardImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform .3s ease;
}

.miniCard:hover .miniCardImg {
  transform: scale(1.06);
}

.miniCard::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 60px;             
  width: 100%;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),      
    rgba(0,0,0,0.70),        
    rgba(0,0,0,0)       
  );

  z-index: 1;
}

.miniCardP {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}


@media (max-width: 768px) {
  .miniCard {
    width: 150px;
    height: 160px;
  }
  .miniCardP {
    font-size: 0.9rem;
  }
}

.favoritos{
    width: 30px;
    height: 30px;
    vertical-align: middle;
    transition: 0.3s ease;
     filter: brightness(100%) saturate(100%) invert(100%) sepia(59%) saturate(9%) hue-rotate(205deg) brightness(103%) contrast(104%);
  }

.menu1,
.menu2,
.menu3 {
  width: 43px;
  height: 7px;
  background-color: #000000;
  margin: 6px 0;
  transition: 0.4s;
  z-index: 14500;
  border: 1px solid #00ce00;
}

.change .menu1 {
  transform: translate(0, 13px) rotate(-45deg);
}

.change .menu2 {
  opacity: 0;
}

.change .menu3 {
  transform: translate(0, -13px) rotate(45deg);
}

.menu0 {
  cursor: pointer;
  position: relative;
  display: inline-block;
  z-index: 1000000000000000000000000;
}



.dropdown2 {
  position: absolute;
  top: 40px;
    right: 0;       
  left: auto;     
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  gap: 20px;
  background-color: #1c1e21;
width: 100px;
height: 110px;
justify-content: center;
align-items: center;
margin-top: 5px;
}

.menu0.change .dropdown2 {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu0 a {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .25s ease, transform .25s ease;
}

.menu0.change a {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .menu0 {
    right: 0;
    top: 0;
    position: absolute;
    margin-top: 20px;
    margin-right: 20px;
  }
}


  .hr1{
    position: absolute;
    top: 52%;
    width: 60%;
    height: 1px;
    background-color: #ffffff1e;
  }

.nav1{
  display: flex;
  gap: 25px;
}


  
  .bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  #whatsapp-button2 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 55px;
    color: #25D366;
    background-color: #1c1e21;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.25s ease;
    cursor: pointer;
  }

  #whatsapp-button2:hover{
     transform: scale(1.1);
  }

  @media (max-width: 600px) {
    #whatsapp-button2 {
      font-size: 48px;
      padding: 4px;
    }
  }

.containerAviso{
  position: absolute;
  bottom: 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.aviso{
  position: relative;
  background-color: rgba(0, 0, 0, 0.508);
  color: white;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  width: 33%;
}


.aviso a {
  text-decoration: underline;
 color: #00ff15;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff158f, 0 0 10px #00cc5575;
  }

@media (max-width: 768px) {
  .aviso{
    width: 80%;
    font-size: 14px;
  }
}
