@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

html {
    overflow-x: hidden;
  }

body {
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    height: 100vh;
}

header {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-top: 20px;
    flex-flow: column wrap;
}

h2 {
    text-align: center;
    font-size: 2em;
    background-color: #B2E5D6;
    font-weight: normal;
}

img {
    cursor: pointer;
}

a {
    color: #000;
}

a:hover {
  color: #000000c3;
}

.menu {
    display: flex;
    align-items: center;
    flex-direction: column;
   
}

.menu-primario {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #F6E1F6;
    z-index: 1000;
}

.btn-abrir-menu{
    display: none;
}

.btn-abrir-menu span {
    color: #000;
    font-size: 40px;
    cursor: pointer;
}

.menu-mobile {
    background-color: #F6E1F6;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 0%;
    overflow: hidden;
    transition: .5s;
    display: flex;
    flex-direction: column;
}

.menu-mobile.abrir-menu {
    width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu {
    display: block;
}

.btn-fechar {
    text-align: end;
    padding: 20px 5%;
}

.btn-fechar span {
    font-size: 3em;
    cursor: pointer;
}

.nav-mobile li  {
    display: flex;
    flex-direction: column;
}

.menu-mobile nav ul {
    text-align: left;
}

.menu-mobile nav ul li a {
    font-size: 1.4em;
    font-weight: 300;
    text-decoration: none;
    padding: 20px 5%;
}

.menu-mobile nav ul li a:hover {
    background-color: #B2E5D6;
}

.icons-mobile {
    display: flex;
    margin-top: auto;
    padding: 20px 5%;
}

.icons-mobile span {
    font-size: 30px;
}

.overlay-menu {
    background-color: #000000bd;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    display: none;
}

.menu .logo {
    padding-top: 20px;
}

.search {
    display: flex;
    position: relative;
    left: 100px;
    bottom: 5px;
}

.search input {
    width: 600px;
    max-width: 600px;
    padding: 6px 8px;
    border: 1px solid rgba(0, 0, 0, 0.623);
    outline: none;
}

.search span {
    position: relative;
    left: -45px;
    top: 7px;
}

.menu-icons {
    display: flex;
    gap: 100px;
}


.tag-icons a p {
    margin-top: 4px;
}

.icons span {
    font-size: 32px;
}

.menu-secundario {
    background-color: #B2E5D6;
    width: 100vw;
}

.menu-secundario li {
    padding: 130px 0 5px 0;
    display: flex;
    justify-content: space-around;
}

.menu-secundario a {
    text-decoration: none;
    font-size: 1.1em;
}

@keyframes marquee {
    0% {
        transform: translateX(100%) ;
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero {
    position: relative;
    margin: 20px auto;
    width: 100%;
    height: auto;
    max-width: 1360px;
    overflow: hidden;
    cursor: pointer;
}


.carrossel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrossel {
    min-width: 100%;
    transition: transform 1.5s;
}

.carrossel:hover {
    transform: scale(1.02);
}

.carrossel img {
  width: 100%;  
  height: 100%;
  object-fit: cover;
  
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

button.prev {
    left: 10px;
  }
  
  button.next {
    right: 10px;
  }

  .funcionalidades {
    display: flex;
    justify-content: space-around;
    background-color: #f7e5a4;
    padding: 10px 6%;
    margin: 30px 0;
  }
  
  .benefit {
    display: flex;
    align-items: center;
  }
  
  
  .benefit a {
    margin: 10px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
  }

  .benefit a:hover {
    color: #000000c3;;
  }
  
  .benefit img {
    cursor: pointer;
  }

  #boasvindas {
    background-color: #fff;
    margin: 10px 0;
  }

  .carrossel-imagens {
    display: flex;
    padding: 30px 6%;
    align-items: center;
    justify-content: space-around;
    box-shadow: 2px 2px 10px #B2E5D6;
    max-width: 1620px;
    margin: 0 auto;
  }

  .carrossel-imagens div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

  }
  .carrossel-imagens img {
    flex: 1;
    transition: transform .5s;
  }

  .carrossel-imagens img:hover {
    transform: scale(1.05);
  }

  .banner-oferta {
    max-width: 1440px;
    margin: 20px auto;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 1.5s;
  }

  .banner-oferta:hover {
    transform: scale(1.02);
  }

  .sobre-nos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 6%;
    max-width: 80%;
    margin: 40px auto;
    gap: 20px;
    background-color: #d1ece4;
    border-radius: 25px 0 25px 0;
  }

  .sobre-nos div {
    text-align: center;
    flex: 1;
  }

  footer {
    background-color: #B2E5D6;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 30px 7% 10px 7%;
    font-size: 1.2em;
  }

  .info span {
    margin: 10px;
  }

  .copyright {
    text-align: center;
  }

  .btn-whatsapp {
    position: fixed;
    bottom: 14px;
    right: 16px;
    z-index: 99;
  }

  .btn-whatsapp img {
    max-width: 50px;
    transition: transform .8s;
  }

  .btn-whatsapp:hover {
	transform: translate(-3px, -3px);
	transition: transform .5s;
}

#chatbot {
    background-color: #724ae8;
}

.chatbot-toggler {
    position: fixed;
    right: 18px;
    bottom: 80px;
    height: 50px;
    width: 50px;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    background: #724ae8;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.chatbot-toggler:hover {
    transform: translate(-3px, -3px);
	transition: transform .5s;
}

.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    position: absolute
}

.show-chatbot .chatbot-toggler span:first-child,
.chatbot-toggler span:last-child {
    opacity: 0;
}

.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot {
    background-color: #E3F2FD;
    position: fixed;
    right: 90px;
    bottom: 100px;
    width: 420px;
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    background-color: #fff;
    border-radius: 15px;
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
}

.show-chatbot .chatbot {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.header-chatbot{
    background-color: #724ae8;
    padding: 16px 0;
    text-align: center;
    position: relative;
}

.header-chatbot h2 {
    color: #fff;
    font-size: 1.4rem;
}

.header-chatbot span {
    position: absolute;
    right: 20px;
    top: 50%;
    color: #fff;
    cursor: pointer;
    display: none;
    transform: translateY(-50%);
}

.chatbot .chatbox {
    height: 380px;
    overflow-y: auto;
    padding: 30px 20px 100px;
}

.chatbox .chat {
    display: flex;
}

.chatbox .incoming span {
    height: 32px;
    width: 32px;
    color: #fff;
    align-self: flex-end;
    background-color: #724ae8;
    text-align: center;
    line-height: 32px;
    border-radius: 4px;
    margin: 0 10px 7px 0;
}

.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}

.chatbox .chat p {
    color: #fff;
    max-width: 75%;
    white-space: pre-wrap;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    background-color: #724ae8;
}

.chatbox .chat p.error {
    color: #721c24;
    background-color: #f8d7da;
}

.chatbox .incoming p {
    color: #000;
    background-color: #f2f2f2;
    border-radius: 10px 10px 10px 0;
}

.chatbot .chat-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    gap: 5px;
    background: #fff;
    padding: 5px 20px;
    border-top: 1px solid #ccc;
}

.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    max-height: 130px;
    font-size: 0.95rem;
    resize: none;
    padding: 16px 15px 16px 0;
}

.chat-input span {
    align-self: flex-end;
    height: 55px;
    line-height: 55px;
    color: #724ae8;
    font-size: 1.35rem;
    cursor: pointer;
    visibility: hidden;
}

.chat-input textarea:valid ~ span {
    visibility: visible;
}
  
@media screen and (max-width: 1534px) and (min-width:1280px){

    .btn-abrir-menu{
        display: none;
    }

     .menu-icons {
        gap: 20px;
    }

    .search {
        display: flex;
        margin-right: 100px;
    }

    .hero {
        max-width: 1220px;
        
        
    }

    .banner-oferta {
        max-width: 1220px;

    }

    .banner-oferta img {
        width: 100%;
    }
    
}

@media screen and (max-width: 1280px) and (min-width: 480px){
    .btn-abrir-menu{
        display: block;
    }

    .btn-abrir-menu span {
        font-size: 50px;
    }

    .menu-primario {
        display: flex;
        justify-content: space-between;
        padding: 5px 4%;
    }

    .icons-mobile  {
        gap: 20px;
    }

    .menu-secundario {
        display: none;
    }

    .barra-anuncio {
        margin-top: 125px;
        
    }

    .barra-anuncio p {
        margin-right: 20px;
    }

    .search, .tag-icons, .icon-suporte, #icon-person, #icon-bag, #icon-language  {
        display: none;
    }

    .hero {
        max-width: 720px;
        margin-top: 150px;
    }

    .carrossel-imagens {
        flex-direction: column;
    }
    
    .banner-oferta {
        max-width: 720px;

    }

    .banner-oferta img {
        width: 100%;
    }

    footer {
        justify-content: center;
        align-items: left;
        font-size: 0.9em;
    }
    
    .copyright {
        margin-top: 20px;
    }

}

@media screen and (max-width:480px) {
    h2 {
        font-size: 1.6em;
    }
    
    .btn-abrir-menu{
        display: block;
    }

    .btn-abrir-menu span {
        font-size: 50px;
    }

    .menu-primario {
        display: flex;
        justify-content: space-between;
        padding: 5px 4%;
    }

    .icons-mobile span {
        font-size: 24px;
    }

    .icons-mobile  {
        font-size: 0.8em;
        gap: 10px;
    }

    .menu-secundario {
        display: none;
    }

    .barra-anuncio {
        margin-top: 125px 
    }

    .barra-anuncio p {
        margin-right: 20px;
    }

    .search, .tag-icons, .icon-suporte, #icon-person, #icon-bag, #icon-language {
        display: none;
    }

    .hero {
        margin-top: 150px;
        max-width: 340px;
        
    }

    #boas-vindas {
        font-size: 1.2em;
    }

    button.prev, button.next {
        padding: 0px;
    }

    button.prev {
        left: 5px;
    }
      
      button.next {
        right: 5px;
    }

    .benefit {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .funcionalidades a  {
        font-size: 0.5em;
        text-align: center;
       
    }

    .benefit img {
        width: 20px;
    }

    .carrossel-imagens {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 250px;
        margin: 0 auto;
        box-shadow: none;
    }

    .banner-oferta {
        max-width: 340px;

    }

    .banner-oferta img {
        width: 100%;
    }

    footer {
        justify-content: center;
        align-items: left;
        font-size: 0.7em;
        padding: 20px 3%;
    }

    
    .info span {
        font-size: 14px;
       
    }
    
    .copyright {
        margin-top: 20px;
    }

    .chatbot {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        z-index: 3000;
    }

    .chatbot .chatbox {
        height: 90%;
    }

    .header-chatbot span {
        display: block;
    }

    button.button-add-cart {
        padding: 6px;
        width: 200px;
        font-size: 0.9em;
    }

    button.button-add-cart:hover {
        background-color: #0a6e0f;
    }

}/* Botões de Adicionar ao Carrinho */
.button-add-cart {
    background-color: #4CAF50; /* Cor de fundo verde */
    color: white; /* Texto branco */
    border: none; /* Sem borda */
    padding: 5px 10px; /* Espaçamento interno */
    text-align: center; /* Centralizar texto */
    text-decoration: none; /* Sem sublinhado */
    font-size: 16px; /* Tamanho da fonte */
    margin: 10px 5px; /* Margens para espaçamento */
    cursor: pointer; /* Cursor em formato de mão */
    border-radius: 5px; /* Borda arredondada */
}

/* Efeito ao passar o mouse */
button .button-add-cart:hover {
    background-color: #0a6e0f; /* Tom mais escuro de verde */
    transform: scale(1.05); /* Leve aumento no tamanho */
}

/* Botões para dispositivos móveis */
@media (max-width: 768px) {
    .button-add-cart {
        width: 100%; /* Ocupa toda a largura disponível */
        padding: 15px; /* Maior espaçamento interno */
        font-size: 18px; /* Texto maior */
    }
}
