.images {
  right: 30px;
  position: relative;
}

.circle {
  position: absolute;
  top: 50px;
  left: 10%;
  width: 500px;
  height: 500px;
  border-width: 10px;
  border-radius: 50%;
  z-index: 1;
}

.main-content {
  position: relative;
  padding: 120px 20px 0 20px;
  text-align: left;
  padding-bottom: 120px;
  background-image: url(../img/img/walll.avif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.intro {
  position: relative;
  max-width: 300px;
  z-index: 2;
  left: 10%;
}

.intro h2 {
  font-size: 8rem;
  color: #ffffff;
  font-family: "Lobster Two", sans-serif;
  font-weight: 400px;
  margin-left: 40px;
  margin-top: 20px;
  text-shadow: 1px 1px 2px var(--cor-amarelo), 0 0 30px #573224, 0 0 0.1em rgba(87, 50, 36, 0.459);

}

.intro h2.intro-animate {
  animation: introEffect 1.5s ease forwards; 
  text-shadow: none; 
}

@keyframes introEffect {
  0% {
    opacity: 0;
    transform: scale(0.8);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 
      1px 1px 2px var(--cor-amarelo), 
      0 0 10px #573224, 
      0 0 0.1em rgba(87, 50, 36, 0.459);
  }
}

.intro ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.intro ul li {
  font-size: 1rem;
  margin: 8px 0;
  color: #666;
  display: flex;
  align-items: center;
}

.intro ul li::before {
  content: '✔️';
  margin-right: 8px;
  color: #ff6666;
}

.confeiteira {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  z-index: 3; 
}

.confeiteira-img {
  width: 160px;
  height: 180px;
  object-fit: cover;
}

.desserts-container {
  position: absolute;
  top: 20px;
  right: 0px;
  width: 70%;
  height: 100%;
  border-width: 1px;
  justify-content: center;
}

.dessert-card {
  position: absolute;
  text-align: center;
  border: 2px solid var(--cor-preco-icone);
  padding: 5px;
  margin-left: 60px;
  border-radius: 50%;
  width: 150px;
  transition: all 1000ms;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.096);
}

.dessert-card:hover {
  transform: scale(1.1);
}

.dessert-card img {
  width: 100%;
  border-radius: 12px;
}

.dessert-card h3 {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--cor-destaque);
  font-weight: bold;
}

.dessert-card .bolo {
  margin-top: -10px;
  font-size: 1rem;
  color: var(--cor-destaque);
  font-weight: bold;
}

.dessert-card .torta {
  margin-top: 30px;
  font-size: 1rem;
  color: var(--cor-destaque);
  font-weight: bold;
}

.dessert-card .mousse {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--cor-destaque);
  font-weight: bold;
}

.dessert-card .alfajor {
  margin-top: -5px;
  font-size: 1rem;
  color: var(--cor-destaque);
  font-weight: bold;
}

.button {
  padding: 30px 50px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid var(--cor-botao-hover);
  left: 30%;
  bottom: 50%;
  background-color: var(--cor-botao-hover);
  animation: glow 2s infinite ease-in-out; 
}

.button:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid var(--cor-ativa);
  box-shadow: 4px 5px 17px -4px var(--cor-ativa);
  animation: glow 2s infinite ease-in-out; 
}

.button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--cor-ativa);
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
  animation: glow 2s infinite ease-in-out; 
}

.button:hover::before {
  width: 250%;
  animation: glow 2s infinite ease-in-out; 
}

@keyframes glow {
  0%, 100% {
    text-shadow: 
      1px 1px 2px var(--cor-amarelo), 
      0 0 10px #573224, 
      0 0 0.1em rgba(87, 50, 36, 0.459);
  }
  50% {
    text-shadow: 
      2px 2px 8px var(--cor-amarelo), 
      0 0 30px #ffcc00, 
      0 0 0.3em rgba(255, 204, 0, 0.8);
  }
}

section {
  height: 600px; 
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  font-size: 2rem;
}

.branco {
  height: 600px;
  display: flex;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}

.branco1 {
  display: flex;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}

.amarelo {
  height: 800px; 
  background-image: url(../img/img/walll.avif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: black;
  border: 1px solid #ccc;
}

h1 {
  font-size: 44px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.highlight {
  color: #b46926;
}

p {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 22px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;

  border: none;
  transition: 0.3s ease;
}

.btn-dark {
  background-color: #4a2c20;
  color: white;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: #3b2117;
}

.btn-yellow {
  background-color: #f7b229;
  color: #4a2c20;
  cursor: pointer;
}

.btn-yellow:hover {
  background-color: #e09b23;
}

.cake-image img {
  max-width: 420px;
  height: auto;
}

.text {
  margin-top: -20px;
  font-size: 45px;
  font-family: 'Outfit';
  font-weight: bold;
  color: #4a2c20;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
}

.textp {
  margin-top: 10px;
  font-size: 22px;
  font-family: 'Istok Web';
  color: #4a2c20;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: center;
}

.home-section {
  padding: 20px;
}

.pesquisa {
  display: flex; 
  width: 100%;
  max-width: 800px;
  margin-bottom: 15px;
  margin-top: 40px;
}

.pesquisa input {
  flex: 1; 
  padding: 10px;
  border: 2px solid var(--cor-borda);
  border-radius: 20px 0 0 20px;
  font-size: 16px;
  box-sizing: border-box; 
  background-color: var(--cor-branca);
  color: var(--cor-nome);
}

.pesquisa button {
  background-color: var(--cor-botao);
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 0 20px 20px 0; 
  font-size: 14px;
  cursor: pointer;
  box-sizing: border-box; 
}

.pesquisa button:hover {
  background-color: var(--cor-botao-hover);
}

#mapa {
  width: 100%;
  height: 400px;
  border-radius: 60px;
  border: 4px solid ;
}

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

.info-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.info-block.reverse {
  flex-direction: row;
}

.info-block .text {
  flex: 1;
}

.info-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #4a2c20;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.4;
}

.info-block p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.info-block .image {
  flex: 1;
  text-align: center;
}

.info-block .image img {
  max-width: 100%;
  height: auto;
}

.btn-gradient {
  background: linear-gradient(to right, #fbc252, #4a2c20);
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
}
