#section_stands {
  background-image: url("https://petsummitve.com/img/bg_stands.png");
  background-size: cover;         /* Cubre todo el contenedor */
  background-position: left top; 
  background-repeat: no-repeat;   /* Evita que se repita */
  padding: 0px 0px;             /* Espaciado interno (ajusta según necesites) */
  color: white;                   /* Texto legible sobre el fondo */
  position: relative;
  z-index: 1;
  
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height:70vh;
}
    
/* Imagen (entra de IZQUIERDA a DERECHA) */
.imagen-slide-stands {
  width: 550px;
  opacity: 0;
  transform: translateX(-250px);
  transition: all 1s ease-out;
}

/* Texto (entra de DERECHA a IZQUIERDA) */
.texto-slide-stands {
  max-width: 700px;
  opacity: 0;
  transform: translateX(150px);
  transition: all 1s ease-out;
}

/* Clase activa cuando entra en viewport */
#section_stands.active .imagen-slide-stands {
  transform: translateX(0);
  opacity: 1;
}

#section_stands.active .texto-slide-stands {
  transform: translateX(0);
  opacity: 1;
}

/* ======== ESTILOS EXISTENTES ======== */
.petsummit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  font-family: 'Montserrat';
}

.petsummit-header {
  text-align: center;
  margin-bottom: 10px;
}

.petsummit-title {
  color: white;
  margin-bottom: 15px;
  font-size: 3.6rem;
  font-weight: bold;
}

.petsummit-description {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 10px;
  color: white;
  line-height: 1.5;
}

.petsummit-packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  background-color:white;
  border-radius:10px;
}

.petsummit-package {
  background-color: transparent;
  border: none;
  padding: 10px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  border-radius:10px;
}

.petsummit-package-header {
  margin-bottom: 15px;
}

.petsummit-zone-title {
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 5px;
  font-weight: normal;
}

.petsummit-package-title {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: bold;
}

.petsummit-sizes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  text-align: center;
  align-items:center;
}

.petsummit-size {
  background-color: #fff;
  border: none;
  padding: 2px 2px;
  font-weight: normal;
  color: #000;
}

@media (max-width: 768px) {
  #section_stands {
    flex-direction: column;
    gap: 10px;
  }
  .imagen-slide-stands {
      width: 350px;
  }
}