* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.special-gothic-expanded-one-regular {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

body {
    background-color: rgba(154, 164, 133, 0.7);
    background-image: url('backy.jpeg');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #2c3e50;
}
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #495b29;
   color: white;
   text-align: center;
}

.lista-texto {
    flex: 1 1 200px;
    max-width: 600px;      /* Controla a largura máxima */
    margin: 0 auto;        /* Centraliza dentro do container pai */
    text-align: justify;
    line-height: 1.6;
    font-size: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);

}

@media (max-width: 768px) {
  .lista-texto {
    padding: 0 30px; /* adiciona espaço lateral */
    font-size: 0.85rem; /* opcional: mantém legível */
    text-align: justify; /* opcional: evita quebra estranha no justificado */
  }
  
    h3 {
    font-size: 1.5rem;
    text-align: center;
    margin: 30px 20px;
  }
  
}






.navbar {
   
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;      /* Centraliza verticalmente */
    height: 10vh;
    
    position: relative;
    text-align: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    width: 100%; /* Garante que ocupa toda a barra */
     font-family: "ivyora-display", serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #DAA520;
}


.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
justify-content: center; /* opcional: centraliza os itens se sobrar espaço */
    gap: 50px;

    padding: 30px;
    max-width: 1200px;
    margin: auto;
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.item {
    background-color: white;
    padding: 35px 25px;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 300px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    height: 100%; /* permite expansão uniforme */
    min-height: 450px; /* valor fixo mínimo para alinhamento */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item.visible {
    opacity: 1;
    transform: translateY(0);
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}


.description {
    margin: 12px 0;
    font-size: 16px;
    color: #34495e;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.buy-button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background-color:#495b29;
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    border-radius: 20px;    
}

.buy-button:hover {
   
    transform: scale(1.05);
}

h1 {
    text-align: center;
    margin: 40px 0 40px;
    font-size: 48px;
    color: #ffffff;
    font-family: "ivyora-display", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}


a {
    text-decoration: none;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.titulo-imagem {
    text-align: center;
    margin: 50px 0;
}

.titulo-imagem img {
    max-width: 30%;
    height: auto;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 20px;
    }

    .logo {
        font-size: 20px;
    }

    .container {
        grid-template-columns: repeat(2, 1fr); /* Agora tem 2 colunas */
        padding: 20px 30px; /* Aumentei a margem lateral para 30px */
        gap: 30px; /* Espaço maior entre os itens */
    }

    .item {
        padding: 20px 15px;
        margin-top: 15px;
        width: 100%; /* Garantir que o item ocupa 100% do espaço */
        max-width: 300px; /* Pode ser ajustado conforme necessário */
        height: 350px; /* Defina uma altura fixa para todos os itens */
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Para garantir que o conteúdo se distribua bem */
    }

    .item img {
        width: 100%;
        height: 150px; /* Defina uma altura fixa para as imagens */
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .titulo-imagem {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 20px; /* Aumentei as margens laterais para a imagem também */
    }

    .titulo-imagem img {
        max-width: 90%;
    }

}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.menu-toggle {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 10001; /* Fica acima do menu */
    padding: 1rem;
    position: fixed; /* Importante: permanece visível ao abrir o menu */
    top: 20px;
    right: 20px;
}

/* Menu lateral */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: rgba(154, 164, 133, 0.95);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 1.5rem;
    z-index: 10000;
}

/* Links do menu */
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(30px);
    animation: linkFadeIn 0.4s forwards;
}

.menu.ativo li:nth-child(1) {
    animation-delay: 0.1s;
}

.menu.ativo li:nth-child(2) {
    animation-delay: 0.2s;
}

.menu.ativo li:nth-child(3) {
    animation-delay: 0.3s;
}

/* Links */
.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
     font-family: "ivyora-display", serif;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu a:hover {
    color: #495b29;
    transform: translateX(10px);
}

.menu.ativo {
    transform: translateX(0);
}

/* Animação de entrada dos links */
@keyframes linkFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "ivyora-display", serif;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.botoes-centrais {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}


.botao-grande {
  text-align: center;
  text-decoration: none;
  background-color: #ffffff;
  border: 2px solid #495b29;
  border-radius: 16px;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 150px; /* altura padronizada */
  width: 200px;  /* largura opcional para padronizar também */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
   font-family: "ivyora-display", serif;
    font-weight: 400;
    font-style: normal;
  color: black;
}

h3{
 font-size: 2rem;
font-family: "ivyora-display", serif;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
font-weight: 400;
font-style: normal;
  color: rgba(255, 255, 255, 0.95);
  margin: 100px auto; font-size: 3rem;
    margin-bottom: 1rem;
font-weight: 400;
font-style: normal;
}

.pix-box h3{
font-size: 3rem;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
font-family: "beloved-script", sans-serif;
font-weight: 400;
font-style: normal;
  color: #495b29;
  margin: 0px auto;
}

h2{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "beloved-script", sans-serif;
font-weight: 400;
font-style: normal;
  color: #495b29;
  margin: 20px auto;
  padding: 30px 200px;
}

.botao-grande img {
  width: 80%;
  height: auto;
  border-radius: 12px;
}

.botao-grande span {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
}

.botao-grande:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.imagens-duplas {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.imagens-duplas img {
  width: 45%;
  height: 45%;
  border-radius: 12px;
}

.pix-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .pix-box {
    width: 80% !important;
    height: auto; /* permite a altura ajustar conforme o conteúdo */
    padding: 20px;
  }

  .pix-container {
    flex-direction: column;
    align-items: center;
  }

  .pix-box h3 {
    font-size: 2rem;
  }

  .pix-box p,
  .pix-box strong {
    font-size: 1rem;
  }

  .pix-box button {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

.pix-box {
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-family: "ivyora-display", serif;
    font-weight: 400;
    font-style: normal;
  width: 500px;
  height: 250px;
  margin-top: 20px;
}

.pix-box p {
  font-size: 18px;
  margin-bottom: 8px;
}

.pix-box strong {
  display: block;
  font-size: 20px;
  margin-bottom: 16px;
  color: #444;
}

.pix-box button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #495b29;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.pix-box button:hover {
  background-color: #222;
}

.pix-container p{
 font-family: "ivyora-display", serif;
font-weight: 400;
font-style: normal;
font-size: 1.5rem;
color:#495b29;
margin-bottom: 50px;
}

.pix-container strong{
 font-family: "ivyora-display", serif;
    font-weight: 400;
    font-style: normal;
font-size: 1.5rem;
color:#000000;
}

