body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fffcf7 !important;
  color: #333 !important;
  text-align: center;
  height: 100vh;
}

header {
  background-color: #f6e9df;
  padding: 30px 20px;
}

.profile-img {
  width: 120px;
  border-radius: 50%;
}

.polaroid {
  background-color: white;
  padding: 10px 10px 30px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: inline-block;
  margin-bottom: 20px;
  max-width: 220px;
  text-align: center;
  border: 1px solid #ddd;
}

.polaroid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.polaroid .legenda {
  margin-top: 8px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
}


.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-links i {
  font-size: 28px;
  color: #333;
  transition: transform 0.3s ease;
}

.social-links i:hover {
  transform: scale(1.2);
  color: #ff5f5f;
}


.div-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;         
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  width: 250px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
}

.empresa-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #696060; 
  border-radius: 5px;
  width: 250px;
  margin-top: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.empresa-button:hover {
  background-color: #cfcfcf;
}

.ibera-button {
  background-color: #e0e0e0;
  color: #333;
}

.ibera-button:hover {
  background-color: #cfcfcf;
}

.icon-right {
  height: 20px;
  width: auto;
  object-fit: contain;
}


.icon-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.whatsapp-button2{
    background-color: #0ab83e;
}

#catalogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}

.produto {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.produto:hover{
transform: scale(1.03);

}

.produto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.botao-compra {
  margin-top: auto; /* empurra pro final */
  background-color: #ff5f5f;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.botao-compra:hover {
  background-color: #e04e4e;
}


footer {
  background-color: #f6e9df;
  padding: 20px;
  font-size: 14px;
}

.aviso-promocao {
  background-color: #fff2e6;
  color: #cc3300;
  padding: 12px 20px;
  margin: 20px auto;
  max-width: 600px;
  border-left: 6px solid #ff5f5f;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.scroll-center {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff5f5f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  animation: pulseScroll 2s infinite ease-in-out;
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.scroll-center:hover {
  background-color: #e04e4e;
  transform: translateX(-50%) scale(1.08);
}

@keyframes pulseScroll {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
  100% { transform: translateX(-50%) translateY(0); }
}

.cronometro {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: linear-gradient(45deg, #fef0e8, #fce6dc);
  color: #a14d36;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}