@import url('https://fonts.googleapis.com/css2?family=Playwrite+NO:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=REM:ital,wght@0,100..900;1,100..900&family=Titan+One&display=swap');
@import url ('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Chango&family=Chela+One&family=Courgette&family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=Grand+Hotel&family=Leckerli+One&family=Pattaya&family=Playwrite+NO&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=REM:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rufina:wght@400;700&family=Satisfy&family=Sevillana&family=Titan+One&display=swap');

:root {
  --bodyFonts: 'Josefin Sans', sans-serif;
  --notoFont: 'Noto Sans', sans-serif;
  --blueColor: #ab06ea;
  --titleColor: #323740;
  --bodyColor: #e8a8ff;
  --lightblueColor: #810ca8;
  --Colorazulclaro:#b5edff;
  --primaryBlue: #530073;
  --accentBlue: #f2ceff;
  --verde: #530073; 
  --transition: 0.3s ease;
  --cardShadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


*::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  padding-top: 0.3rem;
  font-size: 16px;
   
}
.mensagem{
  flex: 1 0 auto;
  margin-bottom: 190px;
  
  
}


img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}


.btn{
  height: 40%;
  margin-top: 20px;
  margin-left: 20px;
  color: #fff;
 
}

.button {
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  background: #3d3a4e;
  background-size: 400%;
  color: #fff;
  border: none;
  cursor: pointer;
}

.button:hover::before {
  transform: scaleX(1);
}

.button-content {
  position: relative;
  z-index: 1;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(
    82.3deg,
    rgba(150, 93, 233, 1) 10.8%,
    rgba(99, 88, 238, 1) 94.3%
  );
  transition: all 0.475s;
}


/* Layout Principal */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  
 
}

/* Header e Navegação */
.navbar {
  background: var(--lightblueColor);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

}

.navbar-nav{
  margin-right: 60px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bodyColor);
  position: fixed;
  width: 100%;
  max-width: 1400px;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  width: 60px;
  height: auto;
  margin-left: 60px;
  
  }

.logo-text{
  margin: 0;
    font-size: 1.8vw;
    color: #ffff;
    font-family: "Raleway", serif;
    font-style: normal;

}

.container-fluid .text-h3{
    font-family: "Poppis", serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    margin-left: 60px;
    margin-top: 10px;
    padding-bottom: 5px;
    
  }



.search-wrapper {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Container do input group */
.input-group {
  display: flex;
  position: relative;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.input-group:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Input de pesquisa */
.search-input {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 25px;
  background: transparent;
  color: #333;
  width: 100%;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #aaa;
  opacity: 0.8;
}

.search-input:focus {
  outline: none;
  border-color: var(--);
  box-shadow: none;
}

/* Botão de pesquisa */
.search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 15px;
  background-color: #28a745;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button:hover {
  background-color: #218838;
  transform: translateY(-50%) scale(1.02);
  
}

.search-button i {
  font-size: 16px;
}


/* Efeito de foco no container */
.input-group:focus-within {
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .search-wrapper {
    position: relative;
    width: 50%;
    max-width: 50%;
    margin: 0px auto;
  }
  /* Botão de pesquisa */
  .search-button {
  position: fixed;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 15px;
  background-color: #28a745;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  }

  .search-button:hover {
  background-color: #218838;
  transform: translateY(-50%) scale(1.02);
  
  }

  .search-button i {
  font-size: 16px;
  }
  .nav-tabs {
    margin-top: 100px;
    color: #8017f7;
    text-transform: uppercase;
    font-weight: bold
    
  }
}
  



h4{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 900;
  text-align: center;
  color: var(--primaryBlue);
  
}


h6{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 400;
    text-align: center;
    color: var(--primaryBlue);
    margin: 10px 170px;
    
  }


.text-p{
  font-family: "Calibri", 'Trebuchet MS', sans-serif;
  font-style: 1.2rem;
  text-align: center;
  color: #2e2f2f;
  margin-bottom: 40px;

}

.bi-person{
  font-size: 100px;
  color: var(--primaryBlue);
}

.bi-cart{
  font-size: 30px;
  margin-left: 10px;
}


.btn-group{
  min-height: 100%;  
  
}

.rede-sociais{
  min-height: 100%;
  margin-right: 80px;
  color: #fff;
  font-size: 30px;
  padding-left: 20px;
}

.bi-instagram:hover{
  color: #ffc800;
}

.accordion-header{
  color: #b5deff;
}

/* Cards */


.titulo-h1 h3{
  margin-top: 0px;
  font-size: clamp(2rem, 2vmin, 2rem);
  font-family: "Poppins", 'Times New Roman', Times, serif;
  color: var(--titleColor);
  text-align: center;

}


.card-img-top{
    object-fit: cover;
    height: 200px; /* Define altura fixa */
    width: 100%;   /* Garante que a largura ocupe todo o espaço do card */
   
  }

 

.card {
    height: 100%; /* Mantém a altura responsiva do card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

       


.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center; /* Centraliza verticalmente */
    gap: 1rem; /* Espaçamento entre itens */
}

.carousel-item img {
    height: 320px; /* Padroniza altura das imagens no carrossel */
    object-fit: cover; /* Preenche o espaço do card sem distorção */
}

.card-title{
    color: var(--primaryBlue);
}
.titulo-h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 5vmin, 6rem);
  font-family: "Poppins", Verdana, Geneva, Tahoma, sans-serif;
  color: var(--primaryBlue);
  text-align: center; 
}


.quantidade-container button{
  background: transparent;
  color:var(--blueColor);
  font-weight: bold;
  border: 0.150em solid var(--blueColor);
  border-radius: 0.9375em;
  box-sizing: border-box;
  cursor: pointer;
  padding: 8px 5px;
  border-radius: 10px;
  cursor: pointer;
  margin: 4px;
 outline: none;
 text-align: center;
 text-decoration: none;
 transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
 user-select: none;
 -webkit-user-select: none;
 touch-action: manipulation;
 will-change: transform;
 text-transform: uppercase;
}


.quantidade-container button:disabled {
  pointer-events: none;
 }
 
.quantidade-container button:hover {
  color: #fff;
  background-color: var(--blueColor);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
 }
 
.quantidade-container button:active {
  box-shadow: none;
  transform: translateY(0);
 }

.quantidade-container .btn {
  background: var(--lightblueColor);
  color:#ffffff;
  font-weight: bold;
  border-radius: 0.9375em;
  box-sizing: border-box;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 10px;
  cursor: pointer;
  margin: 4px;
  min-height: 1.75em;
 min-width: 0;
 outline: none;
 text-align: center;
 text-decoration: none;
 transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
 user-select: none;
 -webkit-user-select: none;
 touch-action: manipulation;
 will-change: transform;
}
.quantidade-container a{
  color: inherit;

}

.whatsapp{
  position:fixed;
  bottom:70px;
  right:30px;
}

.mensagem{
  height: 100%;
  top: 20px;
}


.top{
 width: 400px;
 margin-left: 90px;
 align-items: left;
 margin-bottom: 20px;
 font-size: clamp(15px, 20vw, 1.5vw);
 color: var(--primaryBlue);
 font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.bi-chevron-right{
  width: 60px;
  color: var(--primaryBlue);
}


/* LGPD Banner Styles */  
.lgpd {  
  background-color: #e7f3ff;  
  padding: 0;
  width: 350px;  
  text-align: center;  
  position: fixed; 
  bottom: 0;  
  left: 0;  
  right: 0;  
  z-index: 100; /* Faz com que o banner LGPD fique por cima de elementos com z-index menor */  
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);  
}  

.lgpd .descriptio{
  margin:0;
  margin-right: 10px;  
  text-align: justify;
  padding:20px 20px;
  font-family:OpenSans,arial,sans-serif;
  color:#444242;
  font-size:18px;
  line-height:20px;
  margin-right: 10px;

}
.lgpd .link {  
  color: #007bff;  
  text-decoration: underline;  
}  

.lgpd .actions {  
  margin-top: 10px;  
}  

.lgpd button {  
  margin: 5px 5px;  
  padding: 8px 16px;  
  border-radius: 4px;  
  font-size: 14px;  
  cursor: pointer;  
}  

.lgpd .conf {  
  background-color: var(--verde);  
  color: #fff;  
  border: none;  
}  

.lgpd .accept {  
  background-color: var(--primaryBlue);  
  color: #fff;  
  border: none;  
}  

.lgpd .denial {  
  background-color: #302f2f;  
  color: #fff;  
  border: none;  
}  
/*chatbot*/

.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: none;
  z-index: 1000;
}

.chat-header {
  background: #25D366;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header h3 {
  margin: 0;
  font-size: 16px;
}

.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 15px;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
}

.user-message {
  background: #DCF8C6;
  margin-left: auto;
}

.bot-message {
  background: #E8E8E8;
}

.chat-input {
  padding: 15px;
  border-top: 1px solid #ddd;
  display: flex;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-right: 10px;
}

.chat-input button {
  background: #25D366;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}


.chat-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 999;
}

.chat-trigger i {
  font-size: 24px;
}

/* Animações */
@keyframes slideIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

/*teste card*/


.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-container {
    flex: 1;
    padding: 20px;
    margin-bottom: 20px; 
}

/* Tab content adjustments */
.tab-content {
    height: 100%;
}

.tab-pane {
    height: 100%;
}

/* Row adjustments */
.row {
    margin-right: 0;
    margin-left: 0;
    min-height: 200px; /* Minimum height for content area */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .row-cols-md-4 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .content-container {
        padding: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .row-cols-md-4 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Footer positioning */
.footer {
    margin-top: 20px;
    position: relative;
    width: 100%;
    max-height: 10%;
    background: var(--lightblueColor);
}

.footer p{
  margin-top: 35px;

}

/* Modal adjustments */
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}
/*footer*/

.footer .footer-tags a{

  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 2px 7px;
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
  border: 1px solid #fff;
  border-radius: 6px;

}

.footer .footer-tags a:hover {
  color: #ffffff;
  background: #0085ff;
  border-color: #0085ff;
}

.footer .footer-contact h4 {
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer .footer-contact p {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
}

.footer .footer-contact a {
  display: inline-block;
}

.footer .footer-contact a i {
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
}

.footer .footer-contact a:last-child i {
  margin: 0;
}

.footer .footer-contact a:hover i {
  color: #0085ff;
}

@media (max-width: 575px) {  
  .container-fluid .text-h3 {  
    font-family: "Poppis", serif;  
    font-weight: 400;  
    font-style: normal;  
    color: var(--bodyColor);  
    margin-left: 5px;  
    margin-top: 20px;  
    padding-bottom: 10px;  
  }  

  .titulo-h1 h3{
        margin-top: 0px;
        font-size: clamp(2rem, 2vmin, 2rem);
      font-family: "Poppins", 'Times New Roman', Times, serif;
      color: var(--titleColor);
      text-align: center;
     
    }
  
  /* Wrapper da pesquisa já fixo, mantendo ajuste */  
  .search-wrapper {  
    position: fixed;  
    top: 100px; /* Fixa no topo da página */  
    background-color: rgba(255, 255, 255, 0.8); /* Altera a cor de fundo com opacidade se necessário */  
    z-index: 1000; /* Garante que fique acima dos cards */  
    padding: 10px; /* Espaçamento interno */  
    width: 90%; /* Define a largura para 90% */  
    left: 50%; /* Centraliza na tela */  
    transform: translateX(-50%); /* Ajuste para centralização */  
  }  

  /* Container do input group */  
  .input-group {  
    display: flex;  
    position: relative;  
    align-items: center;  
    background: #fff;  
    border-radius: 25px;  
    width: 100%; /* Mantém 100% para ocupar todo o espaço do wrapper */  
    box-shadow: 0 2px
  }  
  /* Botão de pesquisa */
  .search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 15px;
  background-color: #28a745;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .titulo-h1{
      font-size: clamp(2rem, 5vmin, 6rem);
      font-family: "Poppins", Verdana, Geneva, Tahoma, sans-serif;
      color: var(--primaryBlue);
      text-align: center; 
      margin-top: 100px;
  }

  .btn-group {  
  margin: 5px;  
  }  
  .mensagem {  
  margin-top: 60px;  
  flex: 1 0 auto;  
  margin-bottom: 80px;  
  }  
  .whatsapp {  
  margin-bottom: 40px;  
  }  
  /* Adicionando um ajuste opcional para os cards */  
  .card {  
  position: relative; /* Para que possam ser empilhados atrás do search */  
  z-index: 1; /* Menor que o z-index da pesquisa */  
  } 
 .titulo-h1{
  margin-top: 220px;
  
} 
} 


@media (max-width: 900.98px) {
  .logo {
    width: clamp(100px, 15vw, 150px);
    height: auto;
    margin-left: 10px;
  }
  .container-fluid .text-h3{
    font-family: "Poppis", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--bodyColor);
    margin-left: 5px;
    margin-top: 20px;
    padding-bottom: 10px;
    
  }
  .search-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: var(--whiteColor);
    border-radius: 25px;
    padding: 5px 5px;
    margin-top: 50px;
    box-shadow: var(--cardShadow);
  }
  .search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 15px;
    background-color: #28a745;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    }
  .btn-group{
    margin: 5px;
   
  }
  
  .footer .footer-contact .col-md-4 {
    margin-bottom: 25px;
  }
  
  .footer .footer-contact .col-md-4:last-child {
    margin: 0;
  }
}

.footer .copyright {
  position: relative;
  padding: 30px 0;
  background: var(--blueColor);
}

.footer .copyright .copy-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.footer .copyright .copy-text p a {
  color: #dddddd;
}

.footer .copyright .copy-text p a:hover {
  color: #0085ff;
}

.footer .copyright .copy-menu {
  position: relative;
  font-size: 0;
  text-align: right;
}

.footer .copyright .copy-menu a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .copyright .copy-menu a:hover {
  color: #0085ff;
}

.footer .copyright .copy-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 767.98px) {
  .footer .copyright .copy-text,
  .footer .copyright .copy-menu {
    text-align: center;
  }

  .footer .copyright .copy-text p {
    margin-bottom: 5px;
  }

}

.logofooter{
  width: 30%;
  padding-left: 20px;
}
#subir{
	position:fixed;
	bottom:0px;
	right:0px;
  color: #4cc4e9;
}


/* Media Queries */
@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  .logo-text{
    margin: 0;
      font-size: 4vw;
      color: #ffff;
      font-family: "Raleway", serif;
      font-style: normal;
  
  }
  .header {
    padding: 0.5rem;
  }

  .janela-carrinho {
    width: 100%;
  }
  .top{
    margin-top:90px;
    width: 400px;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: clamp(15px, 20vw, 1.5vw);
    color: var(--primaryBlue);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   }
   .card-text {
    font-size: clamp(1.3rem, 3vw, 0.1875rem);
    line-height: 1.5;
    margin-bottom: 10px;
  
  }
 
   
}

@media (min-width: 577px) and (max-width: 710px) {
  .logo-text{
    margin: 0;
      font-size: 4vw;
      color: #ffff;
      font-family: "Raleway", serif;
      font-style: normal;
  
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-wrapper {
    position: relative;
    width: 50%;
    max-width: 50%;
    margin: 0px auto;
  }
  /* Botão de pesquisa */
  .search-button {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 15px;
  background-color: #28a745;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  }

  .search-button:hover {
  background-color: #218838;
  transform: translateY(-50%) scale(1.02);
  
  }

  .search-button i {
  font-size: 16px;
  }
  .top{
    margin-top:50px;
    width: 400px;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: clamp(15px, 20vw, 1.5vw);
    color: var(--primaryBlue);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   }
    
}

@media (min-width: 600px) and (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .top{
    margin-top:-20px;
    width: 400px;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: clamp(15px, 20vw, 1.5vw);
    color: var(--primaryBlue);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   }
   .search-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
  }
  /* Botão de pesquisa */
  .search-button {
  position: absolute;
  right: 10px;
  top: 60%;
  transform: translateY(-50%);
  padding: 8px 15px;
  background-color: #28a745;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  }

  .search-button:hover {
  background-color: #218838;
  transform: translateY(-50%) scale(1.02);
  
  }

  .search-button i {
  font-size: 16px;
  }
  
}

@media (min-width: 993px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  
}

#chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}
#chat-bubble {
  width: 60px;
  height: 60px;
  background-color: var(--lightblueColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#chat-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  overflow: hidden;
}
#chat-header {
  background-color: #0865c5;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chat-messages {
  height: 350px;
  overflow-y: auto;
  padding: 10px;
}
.message {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 8px;
  max-width: 90%;
}
.bot-message {
  background-color: #f1f0f0;
  align-self: flex-start;
}
.user-message {
  background-color: var(--Colorazulclaro);
  align-self: flex-end;
  margin-left: auto;
}
#chat-input-area {
  display: flex;
  padding: 10px;
  background-color: #f1f0f0;
}
#user-input {
  flex-grow: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
#send-button {
  background-color: var(--blueColor);
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 10px;
  margin-right: 10px;
  border-radius: 5px;
}

/*zoom modal imagem e compartilhar*/

.card-img-top{
    object-fit: cover;
    height: 200px; /* Define altura fixa */
    width: 100%;   /* Garante que a largura ocupe todo o espaço do card */
   
  }
.nav-tabs .nav-link {
  margin-top: 100px;
  color: #8017f7;
  text-transform: uppercase;
  font-weight: bold;
}
.nav-tabs .nav-link.active {
  background-color: #6a0dad;
  color: white;
}
.card {
  background-color: #ffffff;
  color: #2e004d;
}
.btn-custom {
  background-color: #6a0dad;
  color: white;
  text-transform: uppercase;
  margin-left: 10px;
}
.btn-custom:hover {
  background-color: #540b8c;
  color: #ffffff;
}

.btn-lilas {
  background-color: #ffffff;
  color: #540b8c;
  border: 1px solid #540b8c;
  border-radius: 10px;
  text-transform: uppercase;
  margin-left: 10px;
}

.btn-lilas:hover {
  background-color: #540b8c;
  color: #ffffff;
}

.modal-content {
  background-color: #ffffff;
}

.icon-container {
  position: absolute;
  top: 0px;
  right: 10px;
  display: flex;
  gap: 1px;
}
.icon-container .btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: rgb(255, 255, 255);
  padding: 5px;
  border-radius: 50%;
}
.icon-container .btn i {
  font-size: 1.2rem;
}