body {
  margin: 0;
  font-family: Arial, sans-serif;

  /* Color base neutro */
  background-color: #f6f7f5;

  /* Huevitas / patitas sutiles */
  background-image:
    radial-gradient(circle at 6px 6px, rgba(0,0,0,0.06) 2px, transparent 2px),
    radial-gradient(circle at 18px 18px, rgba(0,0,0,0.04) 2px, transparent 2px);

  background-size: 36px 36px;
}
Enviado
Escribe en Steve Obando

    
}

}
header{
 color: white;
padding: 40px 20px;
text-align: center;
}
header h1::after {
  content: " 🐾";
} 
header {
 background-image: url("images/tobbychaqueta.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
}
header p {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 10px;
}
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
/* --- Carrusel --- */
.carousel{
  position: relative;
  margin-top: 16px;
}

.carousel-track{
  display: flex;
  gap: 16px;
  overflow-x: auto;          /* esto permite "deslizar" */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 44px;        /* espacio para los botones */
}

.carousel-track img{
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
  flex: 0 0 auto;            /* para que no se aplasten */
}

/* botones */
.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: white;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev{ left: 8px; }
.carousel-btn.next{ right: 8px; }

.video-wrapper {
  max-width: 900px;
  margin: 40px auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.story-card {
  overflow: hidden;
  border-radius: 16px;
}

.story-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}