* {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background: #fffaf2;
      color: #333;
      line-height: 1.6;
    }
    /* Header */
    header {
      background: #D40074;
      color: white;
      text-align: center;
      padding: 30px 20px;
    }

    header h1 {
      margin: 0;
      font-weight: 600;
      font-size: 2.8rem;
    }
    header p {
      margin: 8px 0 0;
      font-weight: 400;
      font-size: 1.2rem;
    }

    #Logo {
      position: absolute;
      top: 20px;
      right: 20px;
      height: 150px; /* o el tamaño que desees */
      width: auto;
    }

    /* Navegación */
    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background: #96C11E;
      gap: 20px;
      padding: 15px;
      font-weight: 600;
    }
    nav a {
      color: #333;
      text-decoration: none;
      position: relative;
      padding: 6px 8px;
      font-size: 1rem;
      transition: color 0.3s;
    }
    nav a::after {
      content: "";
      display: block;
      height: 2px;
      background: #ff69b4;
      width: 0;
      transition: width 0.3s;
      position: absolute;
      bottom: -4px;
      left: 0;
    }
    nav a:hover,
    nav a:focus {
      color: #ff1493;
    }
    nav a:hover::after,
    nav a:focus::after {
      width: 100%;
    }
    /* Secciones */
    section {
      display: none;
    }

    section.active {
      display: block;
    }

    section h3 {
      font-size: 2rem;
      color: #ff69b4;
      margin-bottom: 15px;
      font-weight: 600;
      text-align: center;
    }
    section p {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      font-size: 1.1rem;
      color: #555;
    }

    /* Estilos para h2 */
    section h2 {
      font-size: 1.8rem;
      color: #D40074; /* rosa intenso como header */
      font-weight: 700;
      margin: 30px 0 15px;
      text-align: center;
      position: relative;
      letter-spacing: 1px;
    }

    /* Línea decorativa debajo de h3 */
    section h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #96C11E; /* verde principal */
      margin: 8px auto 0;
      border-radius: 2px;
    }

    /* Estilo para párrafos dentro de secciones con h3 */
    section p {
      max-width: 700px;
      margin: 0 auto 20px;
      font-size: 1.15rem;
      line-height: 1.5;
      color: #444;
      text-align: justify;
      padding: 0 15px;
    }

    /* Opcional: efecto sutil para párrafos al pasar el mouse */
    section p:hover {
      color: #D40074;
      transition: color 0.3s ease;
    }


/*    Slider */
    .slider {
      position: relative;
      overflow: hidden;
      max-width: 800px;
      margin: 40px auto;
      border-radius: 12px;
      height: 400px; /* altura fija */
      background: linear-gradient(135deg, #ffe4ec, #ffb6c1); /* fondo degradado */
    }


    .slides {
      position: relative;
      height: 100%;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 0;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 400px;
      object-fit: contain; /* muestra toda la imagen */
      object-position: center; /* la centra si sobra espacio */
      display: block;
      border-radius: 12px;
    }




    .prev,
    .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 105, 180, 0.7);
      color: white;
      border: none;
      padding: 10px 16px;
      font-size: 1.5rem;
      cursor: pointer;
      border-radius: 50%;
      z-index: 2;
    }

    .prev:hover,
    .next:hover {
      background: #ff69b4;
    }

    .prev {
      left: 15px;
    }

    .next {
      right: 15px;
    }

    .dots-container {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      z-index: 5;
    }


    .dot {
      width: 12px;
      height: 12px;
      background-color: #ddd;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .dot.active {
      background-color: #ff69b4;
      transform: scale(1.2);
    }



    /* Galería de productos */
    .product-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; /* Centra horizontalmente los items */
      gap: 25px;
      margin-top: 30px;
      padding: 0 20px;
    }

    .product {
      width: 220px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      padding: 15px;
      transition: transform 0.2s ease;
      cursor: pointer;
      text-align: center;
      box-sizing: border-box;
    }

    .product:hover,
    .product:focus-within {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(255,105,180,0.3);
      outline: none;
    }

    .product img {
      border-radius: 8px;
      max-width: 100%;
      height: 160px;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .product p {
      margin: 0;
      font-weight: 600;
      color: #ff69b4;
      font-size: 1.1rem;
    }

    /* Formularios */
    form {
      background: white;
      padding: 25px 20px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      max-width: 600px;
      margin: 30px auto 0;
    }
    form label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: #333;
    }
    form input[type="text"],
    form input[type="email"],
    form textarea,
    form input[type="file"] {
      width: 100%;
      padding: 12px 15px;
      margin-top: 5px;
      margin-bottom: 20px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-family: inherit;
      font-size: 1rem;
      resize: vertical;
    }
    form button {
      background: #ff69b4;
      color: white;
      border: none;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 14px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
      width: 100%;
    }
    form button:hover,
    form button:focus {
      background: #e055a3;
      outline: none;
    }
    /* Footer */
    footer {
      /* background: #633D20; */
      background: #ea82b3;
      color: white;
      text-align: center;
      padding: 30px 20px;
      font-size: 1rem;
    }
    footer a {
      color: white;
      text-decoration: underline;
      margin: 0 8px;
      transition: color 0.3s;
    }
    footer a:hover,
    footer a:focus {
      color: #ffe4e1;
      outline: none;
    }
    /* Botón WhatsApp */
    .whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: transform 0.2s ease;
    }
    .whatsapp:hover,
    .whatsapp:focus {
      transform: scale(1.1);
      outline: none;
    }
    .whatsapp svg {
      width: 70%;
      height: 70%;
      fill: white;
    }

    /*paw*/
    #paw-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }
    
    .paw {
      position: absolute;
      background-image: url('imagenes/Paw.png');
      background-size: contain;
      background-repeat: no-repeat;
      opacity: 0.08;
    }

    /* Estilos para el contenedor de testimonios */
    #contenedor-testimonios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonio {
  width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}

.testimonio img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.testimonio h3 {
  margin-top: 10px;
  font-size: 1.1rem;
}

.testimonio p {
  font-size: 0.95rem;
  color: #333;
}



    /* Responsive */
    @media (max-width: 900px) {
      header h1 {
        font-size: 2.2rem;
      }
      nav {
        gap: 15px;
        font-size: 0.9rem;
      }
      section h2 {
        font-size: 1.7rem;
      }
      .product img {
        height: 140px;
      }
    }
    @media (max-width: 600px) {
      header h1 {
        font-size: 1.8rem;
      }
      nav {
        flex-direction: column; 
        align-items: center;
      }
      nav a {
        padding: 8px 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
      }
      .product-gallery {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 18px;
      }
      .product img {
        height: 120px;
      }
      form {
        padding: 20px 15px;
      }
      form button {
        font-size: 1rem;
        padding: 12px;
      }
    }

/* Responsive para pantallas pequeñas */
@media (max-width: 480px) {
  #Logo {
    position: static;
    display: block;
    margin: 20px auto 10px;
    height: 100px;
  }

  header {
    text-align: center;
    padding: 20px 10px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  header p {
    font-size: 1rem;
  }

  .product img {
    height: 100px;
  }

  section p {
    font-size: 1rem;
    padding: 0 10px;
  }

  footer {
    font-size: 0.9rem;
    padding: 20px 10px;
  }
}

/* Botón hamburguesa (solo visible en móvil) */
.hamburger {
  display: none;
  font-size: 2rem;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2001;
  cursor: pointer;
  color: #000000;
  /* background: #D40074; */
  padding: 10px 14px;
  border-radius: 8px;
}

/* Por defecto, oculta el sidebar móvil */
#sidebar {
  display: none;
}

/* Estilos solo en pantallas pequeñas */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background: #96C11E;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    transition: left 0.3s ease;
    z-index: 2000;
  }

  #sidebar.open {
    left: 0;
  }

  #sidebar a {
    padding: 12px 0;
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #cddc39;
  }

  /* Oculta menú normal en móvil */
  nav:not(#sidebar) {
    display: none;
  }
}

/* En pantallas grandes: muestra menú normal, oculta sidebar y hamburguesa */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
  #sidebar {
    display: none;
  }
  nav:not(#sidebar) {
    display: flex; /* o como tengas definido */
  }
}

/*Responsive para el mapa*/
@media (max-width: 600px) {
    .map-container iframe {
      height: 350px;
    }
  }
