@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

header {
  display: flex;
  align-items: center;
  gap: 15px; 
  padding: 10px 20px;
}

h1{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.logo {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease; /* transición suave */
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.1); /* escala 1.3 veces al pasar el mouse */
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff0f5;
  color: #333;
}

header {
  background: linear-gradient(to right, #181616, #181616);
  color: white;
  padding: 2rem;
  text-align: center;
  font-family: 'Pacifico', cursive;
}

nav {
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* permite que los enlaces bajen si no caben */
  padding: 0.5rem 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  display: inline-block;
  font-size: 1rem;
}

/* Efecto hover */
nav a:hover {
  background-color: #f0a500;
  color: white;
}

/* RESPONSIVE para pantallas pequeñas */
@media screen and (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 5px 0;
    width: 90%;
    text-align: center;
  }
}


.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  color: white;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  padding: 20px;
  z-index: 1;
}

#typewriter {
  font-size: 2.5rem;
  font-weight: bold;
}


@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}


.category {
    font-size: 14px;
    font-weight: bold;
    color: #ff6347; /* Color de ejemplo */
    margin-bottom: 5px;
    text-align: center;
  }

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card .info {
  padding: 1rem;
  text-align: center;
}

.product-card .info h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.product-card .info p {
  font-size: 0.9rem;
}

.buy-btn {
  background: #ff1493;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.buy-btn:hover {
  background: #c71585;
}

.contact-section {
  background: #ffe4ec;
  padding: 2rem;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section input,
.contact-section textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: 'Open Sans', sans-serif;
}

.contact-section button {
  background: #a514ff;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
}

.contact-section button:hover {
  background: #c71585;
}

.social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 20px 0;
    }

.social-icons a {
      color: #333;
      font-size: 24px;
      transition: transform 0.3s ease, color 0.3s ease;
    }

.social-icons a:hover {
      transform: scale(1.2);
      color: #0077ff;
    }

footer {
  background: #000000;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.about-us {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-video video {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.about-text {
  max-width: 600px;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

/* Responsive para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 0;
  }

  .about-text {
    text-align: center;
    padding: 0 1rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-us h2 {
    font-size: 2rem;
  }
}


.promotions {
  padding: 40px 20px;
  background-color: #fff8f0;
  text-align: center;
}

.promotions h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5em;
  color: #ff5e5e;
  margin-bottom: 30px;
}

.promo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.promo-card {
  background-color: #ffffff;
  border: 2px solid #ffd1d1;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-card img {
  width: 100%;
  border-radius: 10px;
}

.promo-card .info {
  margin-top: 15px;
}

.promo-card h3 {
  color: #d33;
  margin-bottom: 10px;
}

.promo-card p {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 15px;
}

.promo-card .buy-btn {
  background-color: #ff5e5e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.promo-card .buy-btn:hover {
  background-color: #cc4b4b;
}


.contenedor {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contenedor a {
  text-decoration: none;
}

.dulce_blog {
  background-color: #fce8d5;
  color: #5a2e0f;
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 1.4rem;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dulce_blog:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  background-color: #fde4c8;
  cursor: pointer;
}



.product-card.mejorado {
  max-width: 500px;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image-container {
  width: 100%;
  display: block;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.product-image:hover {
  transform: scale(1.05);
}

.info {
  padding: 1.5rem;
  font-size: 1rem;
  text-align: center;
}

.category {
  background-color: #25d366;
  color: #fff;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.buy-btn {
  background-color: #25d366;
  border: none;
  padding: 0.75rem 1.2rem;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.buy-btn:hover {
  background-color: #1ebe5b;
}

.botones-contacto {
  display: flex;
  justify-content: center; /* Centra los botones horizontalmente */
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.buy-btn,
.telegram-btn {
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buy-btn {
  background-color: #25d366;
}

.buy-btn:hover {
  background-color: #1ebe5d;
}

.telegram-btn {
  background-color: #0088cc;
}

.telegram-btn:hover {
  background-color: #007bb5;
}

.buy-btn i,
.telegram-btn i {
  margin-right: 8px;
}


.telegram-btn:hover {
  background-color: #007bb5;
}

.buy-btn i,
.telegram-btn i {
  margin-right: 8px;
}

.ovni-container {
  position: fixed;
  top: 10%;
  left: -200px;
  z-index: 9999;
  animation: volarOmni 20s linear infinite;
  pointer-events: none;
}

.ovni-mrq {
  width: 300px;
  height: auto;
  display: block;
}

.pensamiento {
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;

  background: #fff;
  color: #333;
  padding: 8px 15px;
  border-radius: 15px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.pensamiento::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

@keyframes volarOmni {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(50vw) translateY(10vh) rotate(10deg);
  }
  50% {
    transform: translateX(100vw) translateY(30vh) rotate(-5deg);
  }
  75% {
    transform: translateX(50vw) translateY(60vh) rotate(5deg);
  }
  100% {
    transform: translateX(0vw) translateY(80vh) rotate(0deg);
  }
}

.reviews {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.reviews h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.review-card {
  background-color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 350px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.review-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.review-card h4 {
  font-size: 1rem;
  color: #f0a500;
}

.blog-article {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.article-container {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-img {
  width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
}

.article-container h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.article-container .meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.article-container h3 {
  margin-top: 1.5rem;
  color: #f0a500;
}

.article-container p {
  line-height: 1.6;
  color: #444;
  margin: 1rem 0;
}

blockquote {
  background-color: #f0f0f0;
  padding: 1rem;
  border-left: 4px solid #f0a500;
  font-style: italic;
  margin: 1.5rem 0;
}

.volver {
  display: inline-block;
  margin-top: 2rem;
  color: #f0a500;
  text-decoration: none;
  font-weight: bold;
}

.volver:hover {
  text-decoration: underline;
}
