/* Reset y base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: 	#fffcfc;
  color: #333;
}

/* Navbar */
.navbar {
  background: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo { height: 50px; }
.menu { list-style: none; display: flex; gap: 20px; }
.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}
.menu li a:hover { color: #28a745; }



/* Hero */
.hero {
  background: url('img/hero-texto.png') center/cover no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 60px;
  position: relative;
  text-align: center;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: 300px; /* Mueve el bloque a la derecha */
  text-align: left;
}
.hero-content h1 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.desde {
  font-size: 20px;
  margin-bottom: 20px;
  color: #28a745;
}

/* Botón */
.btn {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero-content .btn {
  margin-left: 160px; /* ajusta este valor según lo que necesites */
}

.btn:hover {
  transform: scale(1.1);
  background-color: #218838;
}

/* Secciones */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
h2, h1 {
  font-family: 'Playfair Display', serif;
}
.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

/* Galería */
.ejemplares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.ejemplar-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.ejemplar-card:hover {
  transform: translateY(-5px);
}

.ejemplar-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}
.ejemplar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 10px 0 5px;
}
.ejemplar-card p {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.gallery-card {
  text-align: center;
}
.circle-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}
.circle-img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.circle-img.aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.nombre-cachorro {
  font-weight: 600;
  margin-top: 10px;
  color: #444;
}

/* Onda */
.wave-divider svg {
  display: block;
  width: 100%;
  margin-top: -5px;
}

/* Nosotros */
.flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.text {
  flex: 1;
  text-align: left;
}
.side-img {
  flex: 1;
  max-width: 300px;
  border-radius: 10px;
}
#nosotros {
  background: linear-gradient(to bottom, #f0efef 0%, #f7f7f7 100%);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding-top: 100px;
}

/* Testimonios */
.testimonios {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
blockquote {
  background: white;
  padding: 25px;
  border-left: 5px solid #28a745;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  max-width: 300px;
}
blockquote:hover {
  transform: translateY(-5px);
}
blockquote footer {
  margin-top: 10px;
  font-style: italic;
  color: #28a745;
}

/* Blog */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}
.post {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.post:hover {
  transform: translateY(-5px);
}
.post h3 {
  margin-bottom: 10px;
  color: #28a745;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}
.post p {
  color: #555;
  font-size: 16px;
}
.video-section {
  background: linear-gradient(to bottom, #f0fdf4, #fff);
  padding: 80px 20px;
  text-align: center;
}

.video-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #28a745;
  margin-bottom: 10px;
}

.video-wrapper .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.video-frame {
  max-width: 850px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 6px solid #fff;
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}


/* Footer y contacto */
.footer-full {
  background: #111;
  color: white;
  padding: 80px 20px;
  text-align: center;
  width: 100%;
}

.footer-full h2 {
  font-size: 36px;
  color: #28a745;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.footer-full .subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.contacto-item h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.contacto-item p a {
  color: #28a745;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contacto-item p a:hover {
  color: #1e7e34;
}


/* WhatsApp */
#whatsapp {
  position: fixed;
  bottom: 40px; /* Antes: 20px. Ahora sube un poco */
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonios {
    flex-direction: column;
    align-items: center;
  }
  .gallery {
    flex-direction: column;
  }
  .navbar {
    flex-direction: column;
    padding: 10px;
  }
  .menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-content {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }
  
}

.intro-parrafo {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
/* Mobile menu (invisible por defecto) */
.nav-menu {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
  }
  
  .hamburger {
    width: 25px;
    height: 3px;
    background-color: #28a745;
    display: block;
    position: relative;
    transition: 0.3s ease-in-out;
  }
  
  .hamburger::before,
  .hamburger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #28a745;
    transition: 0.3s ease-in-out;
  }
  
  .hamburger::before {
    top: -8px;
  }
  
  .hamburger::after {
    top: 8px;
  }
  
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-menu {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      padding: 20px 0;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .menu {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
  
    .navbar {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
    }
  
    .logo-container {
      display: flex;
      justify-content: space-between;
      width: 100%;
      align-items: center;
    }
  }
  
}



