@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  background-color: #25D366;
  color: white;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background-color: #1ebe5d;
}

.whatsapp-float i {
  pointer-events: none;
}

/* HEADER */
.top-bar{
    background: rgb(136, 136, 136);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    position: relative;
}
/* Logo */
.logo{
    font-size: 20px;
    margin-top: 10px;
    margin-left: 40px;
}
.logo .casa{
    color: #f07a85;
}
.logo .biju{
    color: rgba(255, 255, 255, 0.2);
}
/* Search */
.search-box{
    display: flex;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}
.search-box input{
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}
.search-box button{
    background: #f07a85;
    border: none;
    color: white;
    padding: 0 15px;
    cursor: pointer;
}
/* Info */
.top-info{
    display: flex;
    flex-direction: column;
    font-size: 13px;
    text-align: left;
    margin-right: 10px;
}
.top-info a{
    color: white;
    font-size: 13px;
    text-decoration: none;
    text-decoration: underline;
}
/* Icons */
.icons{
    display: flex;
    gap: 30px;
}
.icon {
    position: relative;
    color: white;
    font-size: 30px;
}
.icon .badge{
    position: absolute;
    top: -3px;
    right: -10px;
    background: #f07a85;
    color: white;
    font-size: 40%;
    padding: 2px 6px;
    border-radius: 10px;
}

/* MENU */
.menu{
    background: #f07a85;
    justify-content: center;
}
.menu ul{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}
.menu li{
    display: inline-block;
}
.menu a{
    color: white;
    text-decoration: none;
    padding: 12px 0;
    display: block;
}
.menu a:hover{
    text-decoration: underline;
}

/* HERO IMAGES */
.hero{
    position: relative;
    height: 400px;
    background: url('../images/hero1.png') no-repeat center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero2{
    position: relative;
    height: 400px;
    background: url('../images/hero2.png') no-repeat center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* BEST SELLERS & PROMOTIONS*/
.bestsellers, .promotions{
    padding: 40px 20px;
    text-align: center;
    background: white;
}
.bestsellers h2, .promotions h2{
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}
/* Carousel container */
.carousel-container{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 40px;
}
.carousel-container .prev,
.carousel-container .next{
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #f07a85;
    color: white;
    border: none;
    font-size: 2rem;
    padding: 5px 12px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    z-index: 10;
}
.carousel-container .prev:hover,
.carousel-container .next:hover{
    background: #d46c7b;
}
.carousel-container .prev{
    left: 10px;
}
.carousel-container .next{
    right: 10px;
}
/* Carousel inner wrapper */
.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}
.carousel::-webkit-scrollbar {
    display: none;
}
/* Product card */
.product {
    flex: 0 0 180px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
/* Product images */
.product img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}
/* Product name */
.product h3 {
    font-size: 1rem;
    margin: 8px 0 4px 0;
    color: #333;
}
/* Product Price */
.product p {
    font-size: 1rem;
    color: #f07a85;
    font-weight: bold;
    margin-bottom: 10px;
}
/* Navigation buttons */
.product button {
    padding: 8px 15px;
    border: none;
    background: #f07a85;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}
.product button:hover {
    background: #d46c7b;
}
/* FOOTER */
.footer {
  background: #e5e5e5;
  padding: 30px 60px;
  font-size: 14px;
  color: #333;
}

/* Layout principal */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Promoções */
.footer-promo h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.promo-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
  min-width: 120px;
}
.promo-form button {
  background: #f07a85;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 4px;
}
.promo-form button:hover {
  background: #d46c7b;
}

/* Contatos */
.footer-contact h4,
.footer-pages h4 {
  margin-bottom: 10px;
  font-weight: 600;
}
.footer-contact p {
  margin-bottom: 5px;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* Páginas */
.footer-pages ul {
  list-style: none;
  padding: 0;
}
.footer-pages ul li {
  margin-bottom: 5px;
}
.footer-pages ul li a {
  color: #333;
  text-decoration: none;
}
.footer-pages ul li a:hover {
  text-decoration: underline;
}

/* Pagamentos e Redes */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
.payment-icons img {
  height: 28px;
  margin: 5px;
}
.social-icons img {
  height: 28px;
  margin: 5px;
  border-radius: 50%;
}
.admin-link {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}
.admin-link:hover {
  text-decoration: underline;
}
.copy {
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}

/* Footer Payment and Social Icons */
.social-icons a {
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
  margin: 3px;
  margin-top: 3px;
  transition: color 0.3s ease;
}

.social-icons p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}

.payment-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.payment-icons img {
  margin-right: 10px;
}

/* DUVIDAS */
.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

/* Missão, Visão, Valores */
.cards {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  border: 1px solid #5d5d5d;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
  color: #333;
  margin-bottom: 10px;
}

.card p, .card li {
  color: #555;
  line-height: 1.6;
  list-style: none;
}

h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 1.8rem;
}

/* Initially invisible */
.hidden {
  display: none !important;
}

/* Dialog Overlay */
#dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#dialog-text {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 0.75rem;
  text-align: left;
  height: 420px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Modal box */
.dialog-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  width: 350px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Botão fechar */
#close-dialog {
  margin-top: 15px;
  padding: 8px 16px;
  background: #f07a85;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#close-dialog:hover {
  background: #f07a85;
}

/* Botões das dúvidas */
.doubts button {
  margin: 5px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2.5px solid #f07a85;
  background: white;
  cursor: pointer;
}

.doubts button:hover {
  background: #f07a85;
  color: white;
}

/* Rodapé */
.mapa {
  margin: 40px 0 20px;
}