:root {
    /* Cores principais */
    --azul-principal: #26678A;
    --azul-escuro: #1d4f6b;
    --azul-claro: #6b8a9e;
    
    --rosa-principal: #F49FB6;
    --rosa-escuro: #e55a78;
    --rosa-claro: #FAD4D8;
    --rosa-pastel: #FBE4E6;
    
    /* Cores secundárias */
    --verde-whatsapp: #25D366;
    --verde-whatsapp-escuro: #128C7E;
    --rosa-instagram: #E0BFD3;
    
    /* Cores de texto */
    --texto-escuro: #2B2B2B;
    --texto-cinza: #5E5E5E;
    --texto-claro: #ffffff;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--azul-principal);
  border-radius: 6px;
  border: 2px solid #e0e0e0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--azul-escuro);
}

html,body{
   height: 100%;   
}

@font-face {
    font-family: 'tan-pearl';
    src: url('./tan-pearl.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

.clear{
  clear: both
}

.header {
    background-color: #fff;
    padding: 20px 2%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.logo {
    font-family: 'tan-pearl', serif;
    color: var(--azul-principal);
    font-size: 48px;
    margin: 0;
    order: 2;
    margin-left: -80px;
}

/* MENU */
.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    color: #3a6298;
    order: 3;
    margin-left: -45px;
}

.menu-desktop ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu-desktop li a {
    color: var(--azul-principal);
    font-weight: bold;
    font-size: 18px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-desktop li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--rosa-principal);
    transition: width 0.3s;
}

.menu-desktop li a:hover::after,
.menu-desktop li a.active::after {
    width: 100%;
}

.menu-desktop li a:hover,
.menu-desktop li a.active {
    color: var(--rosa-principal);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* Escondido à direita */
  left: auto; /* Remove a propriedade left */
  width: 300px;
  height: 100%;
  background-color: var(--azul-escuro);
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1); /* Sombra invertida */
  padding: 20px 20px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

.sidebar.active {
  right: 0; /* Mostra vindo da direita */
  left: auto; /* Remove a propriedade left */
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px
}

.sidebar ul li {
  margin: 25px 0;
  transition: transform 0.3s ease;
}

.sidebar ul li:hover {
  transform: translateX(5px);
}

.sidebar ul li a {
  color:var(--rosa-claro);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  font-size: 17px;
  font-family: 'Poppins', serif;
}

.sidebar ul li a:hover {
  color: var(--rosa-escuro);
  width: 100%;
}

.sidebar-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20px);
}

.mosaico-wraper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    padding: 0 20px;
    max-width: 1100px;
}

.mosaico-single {
    flex: 1 1 45%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-mosaico-single {
    width: 100%;
    padding-top: 90%;
    background-color: #ccc;
    border: 4px solid white;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.servicos .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    position: relative; 
    align-items: center; 
}

.servicos  .container .box-servico{
    background-repeat: no-repeat;
    background-position: center calc(100% - 5px);
    background-size: 18px 18px;
}

.servicos  .container .box-servico h2{
    font-weight: normal;
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    font-family:'Poppins';
    text-align: center;
}

.servicos  .container .box-servico p{
    font-weight: normal;
    color: white;
    font-size: 12px;
    margin-top: 8px;
    font-family:'Poppins';
    text-align: center;
}

.servicos .container .box-servico:nth-of-type(1),
.servicos .container .box-servico:nth-of-type(3) {
    width: 30%;
    padding: 30px 2%;
    background-color: var(--azul-claro);
    z-index: 1;
}

.servicos .container .box-servico:nth-of-type(2) {
    width: 40%;
    padding: 45px 2%;
    background-color: var(--azul-principal);
    border-radius: 8px;
    z-index: 2; 
}

.valores {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--rosa-pastel);
    padding: 40px 20px;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 25px;
    gap: 40px;
}

.valores .item {
   flex: 1 1 200px;
    width: 200px;
    margin: 20px;
}

.valores .item img {
    width: 50px;
    margin-bottom: 10px;
}

.valores .titulo {
    font-weight: bold;
    color: #2D4E60;
    margin-bottom: 5px;
    font-family: 'Poppins', serif;
}

.valores .desc {
    font-size: 14px;
    color: #5E5E5E;
    font-family: 'Poppins', serif;
}

.queridinhos {
    background-color: var(--rosa-claro);
    padding: 40px 20px;
    text-align: center;
}



.titulo-centralizado span {
    color: var(--azul-principal);
}

.produto-queridinho {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  width: 200px; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produto-queridinho .nome {
    font-weight: bold;
    color: var(--texto-escuro);
    margin-top: 18px;
    font-family: 'Poppins', serif;
    font-size: 15px;
}

.produto-queridinho .preco {
   color: var(--rosa-principal);
    font-weight: bold;
}

.produtos-grid {
    display: flex;
    justify-content: center;  
    flex-wrap: wrap;          
    gap: 2rem;                 
    padding: 1rem;             
    text-align: center;   
    margin: 0 auto;     
}
.produtos-grid.produto {
    flex: 1 1 300px;  /* largura mínima 300px e ajustável */
    max-width: 320px; /* largura máxima p/ não esticar demais */
    margin: 0 auto;   /* garante centralização */
}

.produto-queridinho .img-mosaico-single {
   width: 100%;
   padding-top: 100%;
   background-size: cover;
   background-position: center;
   border-radius: 24px;
   box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.5);
   transition: transform 0.3s ease-in-out;
}

.produto-queridinho .img-mosaico-single:hover {
   transform: scale(1.1);
}

.produto .nome {
    font-weight: bold;
    color: var(--texto-escuro);
    margin-top: 18px;
    font-family: 'Poppins', serif;
    font-size: 15px;
}

.produto .preco, .produto-ninho .preco {
    color: var(--rosa-principal);
    font-weight: bold;
}

/* cardapio */
.aviso{
    background-color: #ffe6e9;
    color: #004d6d;
    padding: 20px 50px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 20px auto;
    justify-content: center;
}

.cardapiozinho {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F5F5F5;
  padding: 40px 20px;
  gap: 40px;
}

.menu-cardapio {
  text-align: center;
}

.menu-cardapio h2 {
  font-size: 2rem;
  color: var(--azul-principal);
  font-family: 'Poppins', serif;
  font-weight: bold;
}

.menu-cardapio p {
  color: var(--rosa-principal);
  font-family: 'Poppins', serif;
}

.menu-cardapio ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin-top: 10px;
  border-bottom: 1px solid #ccc;
}

.menu-cardapio a {
  text-decoration: none;
  font-weight: bold;
  color: #999;
  padding: 10px;
  transition: 0.3s;
  font-family: 'Poppins', serif;
}

.menu-cardapio a:hover,
.menu-cardapio a.active {
  color: #e91e63;
}

/* Slider */
.slider-container {
  position: relative;
  width: 100%;
  padding: 0 40px;
  overflow: hidden;
}

.produtos-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.produtos-grid-c {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* Produto */
.produto-ninho {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    height: 540px;
    width: 280px;
    flex: 0 0 280px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}
.produto {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    height: 500px;
    width: 280px;
    flex: 0 0 280px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.produto::before,.produto-ninho::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,139,0.1) 0%, rgba(255,107,139,0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produto:hover ,.produto-ninho:hover{
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(244, 159, 182, 0.3);
    border: 2px solid var(--rosa-principal);
}

.produto:hover::before ,.produto-ninho:hover::before{
    opacity: 1;
}

.img-mosaico-single-c {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.produto:hover .img-mosaico-single-c {
    transform: scale(1.05);
}

.img-mosaico-single-c::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-escolha {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 5px 10px 0;
    border: 1px solid #ddd;
    border-radius: 15px;
    background-color: #f8f8f8;
    color: #333;
    font-size: 13px;
    cursor: pointer;
}
.btn-escolha.active {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff5252;
    font-weight: bold;
}
.cores {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    margin: 8px 0 5px 0;
    font-weight: bold;
}

.produto:hover .img-mosaico-single-c::after {
    opacity: 1;
}

.nome-c {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-family:'Poppins';
}

.produto:hover .nome-c {
    color: var(--rosa-principal);
}

.preco {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rosa-principal);
    margin-bottom: 15px;
}

.btn-add {
    display: inline-block;
    background: var(--rosa-principal);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.4);
    border: none;
    cursor: pointer;
    font-family:'Poppins';
}

.btn-add-pote,
.btn-add-escondidinho,
.btn-add-fatia,
.btn-add-barra,
.btn-add-docinho{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: var(--rosa-principal);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(94, 44, 4, 0.2);
}

.produto:hover .btn-add, .produto-ninho:hover .btn-add {
    opacity: 1;
    transform: translateY(0);
}

.btn-add:hover {
    background: var(--rosa-escuro);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 139, 0.6);
}

/* Lista de Preços */
.produto ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: left;
}

.produto ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  transition: background-color 0.3s;
}

.produto ul li:hover {
  background-color: #fce9ef;
}

.produto ul li span {
  color: var(--rosa-principal);
  font-weight: 600;
}

/* Botões do Carrossel */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  color: #333;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
  z-index: 10;
}

.carousel-button:hover {
  background: var(--rosa-principal);
  color: #fff;
}

.carousel-button.prev {
  left: 5px;
}

.carousel-button.next {
  right: 5px;
}

/* Controle de visibilidade */
.cardapio {
  display: none;
  width: 100%;
}

.cardapio.ativo {
  display: block;
}
button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--verde-whatsapp);
  color: white;
  transition: 0.5s ease-in-out;
  font-size: 24px;
  width: 40%;
  text-align: center;
  margin: 0 auto;
}

.btn-whatsapp:hover{
  transform: scale(1.2);
}

.btn-instagram {
  background-color: var(--rosa-instagram);
  color: white;
  transition: 0.5s ease-in-out;
}

.btn-instagram:hover{
   transform: scale(1.2);
}

button img {
  width: 20px;
  height: 20px;
}

.texto-aviso{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;  
  max-width: 400px;
  background-color: #FDFD96;
  padding:25px;
  border-radius: 10px;
  border-left: 6px solid #f4f43b;
  margin-bottom: 10px;
  color: #4e3c24;
  text-align: justify;
}

.texto-aviso p{
  font-family: 'Poppins', serif;
  color:#866132eb;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
} 

footer{
  background-color: var(--rosa-pastel);
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-family: 'Poppins', serif;
  padding: 10px; 
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--verde-whatsapp);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: var(--verde-whatsapp-escuro);
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float::after {
  content: "Fale conosco!";
  position: absolute;
  left: -120px;
  width: 110px;
  background: white;
  color: var(--verde-whatsapp);
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-float:hover::after {
  opacity: 1;
}

.notificacao {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.4s ease;
}

.notificacao.mostrar {
    transform: translateX(0);
}

.notificacao-erro{
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(214, 214, 10, 0.949);
    color: black;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.4s ease;
}

.notificacao-erro.mostrar {
    transform: translateX(0);
}

section.pedidos {
    background: white;
    border-radius:  12px;
    box-shadow:  0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

section.pedidos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b,#4ecdc4);
}

.titulo-centralizado {
    text-align: center;
    color:#292f36;;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 15px;
}

.titulo-centralizado::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4ecdc4;
    border-radius: 2px;
}

.descricao-pedidos {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', serif;
}
 .aviso-encomenda {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px 20px;
    background-color: #FDEBD0;
    color: #B35624;
    border-left: 6px solid #D35400;
    font-family: 'Poppins', serif;
    font-size: 1rem;
    border-radius: 6px;
    text-align: center;
  }

.pedido-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.produtos-pedido {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 300px;
    border: 1px dashed #e0e0e0;;
    display: flex;
    flex-direction: column;
}

.pedido-vazio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #888;
    flex-grow: 1;
}

.pedido-vazio i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color:#e0e0e0;
}

.pedido-vazio p {
    font-size: 1.2rem;
    max-width: 400px;
    margin-bottom: 1rem;
}

.item-pedido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition:  all 0.3s ease;
    border-left: 4px solid #4ecdc4;
}

.item-pedido:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-nome {
    font-weight: 600;
    font-size: 1.1rem;
    color: #292f36;
}

.item-preco {
    color:  #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

.remover-item {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:  all 0.3s ease;
}

.remover-item:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: scale(1.1);
}

.resumo-pedido {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow:0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.total-pedido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px dashed  #e0e0e0;
    font-family:'Poppins';
}

.total-label {
    font-size: 1.3rem;
    font-weight: 600;
    color:  #292f36;
    font-family:'Poppins';
}

.total-valor {
    font-size: 1.8rem;
    font-weight: 700;
    color:  #ff6b6b;
}

.botoes-pedido {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.desc-tamanho{
    text-align: center;
}
.btn-bairro {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  font-family: 'Poppins', sans-serif;
}

.btn-bairro label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 20px;
  font-family: 'Poppins';
}

.btn-bairro select {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
   font-family: 'Poppins';
}
#frete-resultado {
  margin-top: 12px;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 1rem;
  color: #2c3e50;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  max-width: 280px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  
  opacity: 0;           /* invisível no início */
  transform: translateY(5px); /* levemente abaixo */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* classe que ativa a exibição */
#frete-resultado.show {
  opacity: 1;
  transform: translateY(0);
}
 .popup-loja {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  /* Caixa da mensagem */
  .popup-conteudo {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: aparecer 0.3s ease;
  }

  .popup-conteudo h3 {
    margin-bottom: 10px;
    color: #b71c1c;
  }

  .popup-conteudo ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 10px 0;
  }

  .popup-conteudo button {
    background: #b71c1c;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
  }

  .popup-conteudo button:hover {
    background: #8c1313;
  }

  @keyframes aparecer {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
.btn-pedido {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition:  all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.endereco-form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.endereco-form label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px;
}

.endereco-form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.formatos-tortas {
    text-align: center;
    margin: 20px 0;
}
.sabores-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.titulo-principal {
    text-align: center;
    color: #e91e63;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}

.titulo-principal:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #e91e63;
    margin: 15px auto;
}

.sabores-grid {
    display: flex;
    gap: 20px;
}

.sabor-coluna {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Ajuste para fazer os cards terem o mesmo tamanho */
.sabores-grid {
    align-items: stretch; /* Isso faz com que os itens se estiquem para ter a mesma altura */
}

.card-sabor {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    flex: 1; /* Isso faz cada card crescer para ocupar o espaço disponível */
    display: flex;
    flex-direction: column;
}

/* Conteúdo do card cresce para ocupar o espaço */
.card-conteudo {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-sabor:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2);
}

.nome-sabor {
    color: #e91e63;
    margin: 10px 0;
    font-size: 22px;
}

.descricao-sabor {
    color: #666;
    font-size: 16px;
    margin: 0;
}
  .descricao-sabor-c{
    color: #666;
    font-size: 14px;
    margin: 0;
    }
.btn-add-sabor {
    background-color: rgba(226, 48, 87, 0.719); 
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
    display: flex; /* Transforma em flex container */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

.btn-add-sabor:hover {
    background-color: rgb(245, 92, 118);
}
.sabor-coluna:last-child .card-sabor:last-of-type {
  opacity: 0; /* Torna transparente mas mantém no layout */
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--azul-principal);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

.cookie-consent p {
  margin: 0;
}

.cookie-consent a {
  color: var(--rosa-principal);
  font-weight: bold;
  text-decoration: underline;
}

.cookie-consent button {
  background: var(--rosa-principal);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-consent button:hover {
  background: var(--rosa-escuro);
}

    @media (max-width: 600px) {
      .cookie-consent {
        flex-direction: column;
        text-align: center;
      }
    }

.menu-formatos {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 20px;
    margin-top: 35px;
}

.menu-link-formato {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}

.menu-link-formato.active {
    background-color: var(--azul-principal);
    color: white;
    width: 100%;
}

/* Esconder seções não ativas */
.secao-tortas {
    display: none;
}

.secao-tortas.ativo {
    display: block;
}

.tipo-conteudo {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.center {
    display: flex;
    justify-content: center;
    gap: 20px; /* espaço entre os itens */
    margin-bottom: 20px;
}

.item {
    display: flex;
    flex-direction: column; /* coloca imagem em cima e botão embaixo */
    align-items: center;    /* centraliza botão embaixo da imagem */
}
.img-solo {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(94, 44, 4, 0.2);
    border: 3px solid #f0e6d8;
}

.btn-gramas {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background-color: var(--rosa-principal);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* TÍTULO */
.sabores-titulo {
    text-align: center;
    color: var(--rosa-principal);
    font-size: 1.4rem;
    margin: 15px 0 20px;
    font-weight: 600;
    position: relative;
    font-family: 'Poppins', serif;
}

.sabores-titulo:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #e8c39e;
    margin: 8px auto 0;
    border-radius: 3px;
}

/* OPÇÕES DE SABOR */
.flavor-options {
    display: flexbox;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 25px;
}

.flavor-option {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f5f0;
    border: 1px solid #f0e6d8;
    margin-top: 10px;
}

.flavor-option.selected {
    background: var(--rosa-principal);
    border-color: #5e2c04;
    color: rgb(0, 0, 0);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(94, 44, 4, 0.2);
}

.flavor-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.flavor-name {
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Poppins', serif;
}

.flavor-name span {
  display: block; /* força quebra automática */
  margin-left: 10px; /* opcional: dá um recuo */
}

.preco-box {
    text-align: center;
    margin: 20px 0;
}

.preco {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5e2c04;
}

/* Estilos para controles de seleção */
.selecao {
    margin-bottom: 10px;
}

.selecao-tamanho-redonda {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.selecao label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.opcoes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.galeria-tortas {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}
.frase{
    max-width: 600px;
    margin: 30px auto; 
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #7B4B3A;
    background-color: #FFF1E6; 
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(123, 75, 58, 0.15);
    line-height: 1.5;
}

.titulo-galeria {
    text-align: center;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 40px;
    position: relative;
    margin-top: 50px;
}

.titulo-galeria:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #e91e63, #ff80ab);
    border-radius: 2px;
}

.grid-tortas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card-torta {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    aspect-ratio: 1/1;
}

.card-torta:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

.imagem-torta {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.card-torta:hover .imagem-torta {
    transform: scale(1.05);
}

.overlay-torta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.card-torta:hover .overlay-torta {
    transform: translateY(0);
}

.overlay-torta span {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
}
.quantidade-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

.btn-quantidade-mais,.btn-quantidade-menos {
    background: var(--rosa-principal);
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-quantidade:hover {
    background: #e73370;
}

.quantidade {
    font-size: 16px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}
   .docinhos-container {
            position: relative;
        }
        
        .docinho-opcoes {
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }
        
        .docinho-opcoes.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .docinho-opcoes h3 {
            margin-bottom: 20px;
            text-align: center;
            color: #343a40;
            font-size: 20px;
        }
        
        .preco-destaque {
            color: #ff6b6b;
            font-weight: bold;
        }
        
        .opcoes-titulo {
            margin: 20px 0 15px;
            font-size: 18px;
            color: #343a40;
            display: flex;
            align-items: center;
        }
        
        .opcoes-titulo::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #eee;
            margin-left: 15px;
        }
        
        .sabores, .tamanhos {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
            margin-bottom: 25px;
        }

         .btn-sabor.selected, .btn-tamanho.selected {
            background-color: var(--rosa-principal);
            border-color: #5e2c04;
            color: rgb(0, 0, 0);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(94, 44, 4, 0.2);
}
        
        .btn-sabor, .btn-tamanho {
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            background: white;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            text-align: center;
        }
        
        .btn-sabor:hover, .btn-tamanho:hover {
            border-color: #ff6b6b;
            transform: translateY(-2px);
        }
        
        
        .btn-tamanho {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .tamanho-preco {
            font-size: 14px;
            margin-top: 5px;
            color: #343a40;
        }
        
        .btn-tamanho.selected .tamanho-preco {
            color: white;
        }
.footer-corporativo {
    background-color: var(--rosa-claro);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Arial', sans-serif;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Poppins', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--azul-escuro);
}

.footer-col p {
    color: var(--azul-principal);
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Poppins', serif;
    font-size: 15px;
}

.footer-social a {
    color: var(--azul-escuro);
    font-size: 1.5rem;
    transition: all 0.8s;
   
}

.footer-bottom, .footer-bottom a {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--azul-escuro);
    font-size: 0.9rem;
}

/* Ícones de contato */
.footer-col i {
    margin-right: 10px;
    color: var(--dourado);
    width: 30px;
    text-align: center;
}


@media (min-width: 902px) {
  .sidebar {
    right: auto; /* Remove a posição right */
    left: -300px; /* Escondido à esquerda */
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1); /* Sombra no lado correto */
  }
  
  .sidebar.active {
    left: 0; /* Mostra vindo da esquerda */
    right: auto;
  }
}

@media (max-width: 900px) {
  .header{
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .servicos{
    display: none;
  }
  
  .grid-tortas {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .produto{
      width: calc(50% - 20px);
      margin: 0px 10px;
      left: 15px;
  }
  
  .header-container {
      flex-direction: row;
      justify-content: flex-start;
      padding: 15px 20px;
  } 
  .sidebar {
    width: 85%;
    max-width: 300px;
    right: -100%; /* Escondido à direita */
    left: auto;
    padding: 25px 15px;
    background-color: var(--azul-escuro);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); /* Sombra invertida */
  }
  
  .sidebar.active {
    right: 0; /* Mostra vindo da direita */
    left: auto;
  }

  .logo {
      order: 1;
      margin-left: auto;
      margin-right: auto;
      font-size: 36px;
      text-align: center;
      width: calc(100% - 80px);
  }

  .menu-toggle {
      order: 1;
      margin-left: 0;
      font-size: 24px;
      z-index: 1100;
  }
  
  .menu-desktop {
      display: none;
  }
  .produto-ninho{
    height: 550px;
    margin-left: 12px;
  }
  .produto-ninho .btn-escolha{
    width: 70px;
  }
  .produto-queridinho {
        width: 90%; /* ocupa toda a largura disponível */
    }

    .produto-queridinho .img-mosaico-single {
        height: 180px; /* aumenta a imagem */
    }

    .produto-queridinho .nome,
    .produto-queridinho .preco {
        font-size: 1.4em; /* aumenta o texto */
    }

    .galeria-tortas{
      margin-top: -250px; /* ajusta a margem superior */
    }

    .whatsapp-float:hover,
    .whatsapp-float::after,
    .btn-instagram:hover,
    .btn-whatsapp:hover{
       transform: none;
        box-shadow: none;
        
    }
     
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
    
    .btn-whatsapp,
    .btn-bairro{
        width: 100%;
    
    }
    .texto-aviso{
        text-align: justify;
    }
    .btn-quantidade-mais,.btn-quantidade-menos{
        width: 50px;
    }
     .center {
    flex-direction: column;   /* empilha os itens */
    align-items: center;
  }

  .item {
    width: 100%; /* ocupa a largura */
    max-width: 280px;
  }
  .endereco-form .titulo-centralizado{
    font-size: 1.8rem;
  }
  .titulo-centralizado {
    font-size: 1.8rem;
  }
  .titulo-galeria{
    margin-top: 32px;
  }
  .produtos-grid .produto {
        align-items: center;
        justify-content: center;
        flex: 1 1 90%;   /* ocupa 90% da tela */
        max-width: 350px;
        margin-right: 50px;
    }
    .img-mosaico-single-c{
        width: 100%;
        height: 240px;
    }
}




@media (max-width: 600px) {
    .grid-tortas {
        grid-template-columns: 1fr;
    }
    
    .titulo-galeria {
        font-size: 2rem;
    }
    
    .servicos{
      display: none;
    }
}

/* Responsividade */
@media screen and (max-width:768px) {
    .menu-desktop{
      display: none;
    }
    
    footer{
      font-size: 8px;
    }
    
    .servicos{
      display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
    
    .produto {
        width: calc(100% - 40px);
        margin: 0px 20px;
        left: 20px;
    }
    
    .carousel-button {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
    
    button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .menu-cardapio ul {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .menu-cardapio a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .produto {
        width: 85%;
        margin: 0 auto 20px;
    }
    
    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .aviso {
        padding: 15px 20px;
        width: 90%;
    }
    
    .notificacao {
        width: 80%;
        right: 10%;
        top: 10px;
    }
    
    .btn-add {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 15px;
    }
    
    .sabores-grid {
        flex-direction: column;
        gap: 0;
    }

    .sabor-coluna {
        flex-direction: column;
        display: contents; 
    }

    .card-sabor {
        width: 90%;
        margin: 0 auto 20px auto;
        min-height: 240px;
        display: flex;
        flex-direction: column;
    }
    
    .descricao-sabor {
        font-size: 14px;
        color: #666;
        margin-top: 8px;
        margin-bottom: 12px;
    }
 
    .titulo-principal {
        font-size: 26px;
    }

    .btn-add-sabor {
        font-size: 0.9rem;
        padding: 6px;
        margin-top: auto;
    }

    .menu-formatos {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .menu-link-formato {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .produto {
        width: 160px;
        flex: 0 0 232px;
        padding: 12px;
    }
    
    button {
        width: 100%;
        justify-content: center;
    }
}