body {
      background-color: #79FFBC;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    header {
      width: 100%;
      text-align: center;
      margin: 20px auto;
    }

    header img {
      width: 180px;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0); }
    }

    .slider {
      width: 80%;
      /*max-width: 1220px;*/
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .slides {
      display: flex;
      transition: transform 1s ease;
      width: 100%;
    }

    .slides img {
      width: 100%;
      border-radius: 10px;
    }

    .intro {
      width: 80%;
      text-align: center;
      border-radius: 10px;
      background: #fff;
      color: #333;
      margin-top: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .intro h1 {
      font-size: 2.2em;
      font-family:'Fredoka One', cursive;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .titulo-puga {
      font-family: 'Pacifico', cursive; /* Fuente alegre y festiva */
      font-size: 3rem;
      text-align: center;
      background: linear-gradient(
        -45deg,
        #ff6f91,
        #ff9671,
        #ffc75f,
        #f9f871,
        #7bed9f,
        #70a1ff,
        #ff6b81
      );
      background-size: 400% 400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradiente-animado 6s ease infinite;
      margin: 30px 0;
    }

    @keyframes gradiente-animado {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .intro-columns {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 95%;
      margin: 0 auto;
    }

    .intro-columns p {
      flex: 1 1 400px;
      font-size: 1.1em;
      line-height: 1.8;
      text-align: justify;
    }

    .intro p {
      max-width: 100%;
      margin: 0 auto 20px;
      font-size: 1.1em;
      line-height: 1.8;
      padding: 0 20px 0 20px
    }


    /* Título de productos */
    .titulo-productos {
      text-align: center;
      font-family:'Fredoka One', cursive;
      font-size: 2rem;
      font-weight: bold;
      margin: 60px 0 20px;
      color: #333;
      background: linear-gradient(90deg, #ff6f91, #ff9671, #70a1ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: moverTexto 5s infinite linear;
    }

    @keyframes moverTexto {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }


    .productos {
      width: 80%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }

    .producto {
      background: white;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      cursor: pointer;
    }

    .producto:hover {
      transform: scale(1.05);
    }

    .producto img {
      width: 100%;
      border-radius: 10px;
    }

    .producto h3 {
      margin: 10px 0 5px;
      font-size: 18px;
    }

    .producto p {
      color: #333;
      font-weight: bold;
    }

    /* Botón de WhatsApp */
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(45deg, #25D366, #128C7E);
      color: white;
      padding: 10px 18px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.2s, box-shadow 0.2s;
      white-space: nowrap; /* 🔹 Evita que el texto se divida */
      text-align: center;  /* 🔹 Centra el texto */
    }

    .whatsapp-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 10px rgba(37,211,102,0.5);
    }

    .whatsapp-btn img {
      width: 20px;
      height: 20px;
      margin-bottom: 0px !important;
    }

    .social {
      text-align: center;
      margin-bottom: 180px;
    }

    .social a {
      margin: 0 10px;
      font-size: 24px;
      color: #333;
      text-decoration: none;
    }

    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      text-align: center;
      padding: 15px;
      color: white;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      background: linear-gradient(270deg, #ff5f6d, #ffc371, #42e695, #3bb2b8, #ff5f6d);
      background-size: 800% 800%;
      animation: gradientMove 15s ease infinite;
    }

    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    #countdown {
      font-size: 26px;
      margin-top: 5px;
    }

    /* === MODAL === */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background-color: #fff;
      border-radius: 15px;
      padding: 20px;
      margin: 20px;
      width: 90%;
      max-width: 500px;
      text-align: center;
      position: relative;
      animation: showModal 0.3s ease;
    }

    @keyframes showModal {
      from { opacity: 0; transform: translateY(-50px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .modal-content img {
      width: 60%;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    #modalPrice {
      font-weight: bold;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #333;
    }

    @media (max-width: 600px) {
      header img { width: 150px; }
      .producto h3 { font-size: 16px; }
      .producto p { font-size: 14px; }
      footer { font-size: 14px; }
      .slider {display: none;}
      .intro {display: none;}

    }