* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(to bottom, #ffdcee, #ffe9f2);
  color: #4a1d28;
  text-align: center;
  overflow-x: hidden;
}

/* Splash */
#splash {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #ffcce0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

#splash img {
  width: 120px;
  animation: pop 1s ease-in-out infinite alternate;
}

@keyframes pop {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Main content aparecendo */
#main-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#main-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header {
  background-color: rgba(255, 204, 224, 0.9);
  padding: 2rem 1rem 1rem;
  position: relative;
  z-index: 2;
}

.logo {
  max-width: 100px;
  margin-bottom: 10px;
}

.impact-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 6vw;
  font-weight: 900;
  color: #4a1d28;
  margin: 0;
  white-space: nowrap;
}

/* Botões Horário, Endereço, Serviços */
.info-toggle {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 6px;
  margin-top: 1rem;
  padding: 0 0.5rem 0.5rem;
  scrollbar-width: none;
  z-index: 4;
}

.info-toggle::-webkit-scrollbar {
  display: none;
}

.toggle-btn {
  min-width: 100px;
  background-color: #f47da3;
  color: white;
  border: none;
  padding: 10px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.toggle-btn:hover {
  transform: scale(1.05);
}

.toggle-btn.active {
  background-color: #c44c74;
}

/* Conteúdos (horário, endereço, serviços) */
.info-section {
  display: none;
  background: #fff0f6;
  border-radius: 20px;
  padding: 20px;
  margin: 1rem auto;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.info-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Botões principais */
.buttons {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.btn {
  padding: 15px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Cores dos botões */
.btn-online {
  background: linear-gradient(to right, #ff69b4, #c2185b);
  border: none;
}

.btn-whatsapp {
  background: linear-gradient(to right, #25D366, #128C4D);
}

.btn-whatsapp img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.btn-pix {
  background: linear-gradient(to right, #00c3ff, #002a7a);
}

.btn-pix img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.btn-google {
  background: linear-gradient(to right, #4285F4, #34A853, #FBBC05, #EA4335);
  background-size: 300% 100%;
  color: white;
  border: none;
  animation: gradientShift 6s ease infinite;
}

.btn-google img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Galeria */
.gallery {
  margin: -2rem auto;
  max-width: 1000px;
  padding: 0 1rem;
  background: #ffe9f2;
  padding-top: 2rem;
}

.gallery h2 {
  font-size: 22px;
  margin-bottom: 1rem;
  color: #4a1d28;
}

/* Carrossel automático (1 imagem por vez) */
.gallery-carousel {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
  display: flex;
}

/* Padronização das imagens no carrossel */
.gallery-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
}

/* Grade com 3 colunas */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

/* Efeito ao passar o mouse */
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Padronização das imagens no grid */
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.caption-glam {
  background: transparent;
  border-radius: 14px;
  padding: 6px 16px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  box-sizing: border-box;
  animation: fadeIn 0.8s ease both;
  transition: color 0.3s ease;

  /* Subindo mais perto da imagem */
  position: relative;
  top: -70px;  /* valor ajustado para aproximar */
  margin-top: 0;
}






.pet-name {
  font-size: 18px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: #c2185b;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.pet-handle {
  font-size: 14px;
  color: #6b2941;
  font-style: italic;
}

/* Animação entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Footer */
footer {
  margin: 50px 0 10px;
  font-size: 12px;
  color: #777;
}
