 /* ====================================================
       🌐 GLOBALES Y FUENTES
    ==================================================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    
    @font-face {
      font-family: 'Lemonada-Bold';
      src: url('../fonts/Lemonada-Bold.ttf') format('opentype');
    }
    
    @font-face {
      font-family: 'Comfortaa-bold';
      src: url('../fonts/Comfortaa-Bold.ttf') format('opentype');
    }
    
    body, html {
      font-family: 'Comfortaa-bold', sans-serif;
      color: #444444;
    }
    
    /* ====================================================
       🧭 NAVEGACIÓN
    ==================================================== */
    /* Contenedor nav visible en escritorio */
    nav {
      position: fixed;
      top: 20px;
      right: 20px;
      background-color: rgba(255, 129, 0, 0.9);
      border-radius: 10px;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    
    nav img.logo-icon {
      height: 26px;
    }
    
    .menu-links {
      display: flex;
      gap: 15px;
    }
    
    nav a {
      text-decoration: none;
      color: white;
      font-weight: bold;
      padding: 6px 12px;
      border-radius: 8px;
      transition: background 0.3s, color 0.3s;
    }
    
    nav a:hover {
      background-color: rgb(224, 116, 34);
    }
    
    /* Botón hamburguesa (solo se muestra en móvil) */
    .menu-toggle {
      display: none;
      position: fixed;
      top: 20px;
      right: 20px;
      background: #ff8100;
      color: white;
      font-size: 20px;
      border: none;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      cursor: pointer;
      z-index: 1100;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      padding-bottom: 3px;
    }
    
    /* Menú desplegable vertical para móvil */
    .dropdown-menu {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 70px;
      right: 20px;
      background-color: rgba(255, 129, 0, 0.95);
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 1050;
    }
    
    .dropdown-menu a {
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      display: block;
      font-weight: bold;
    }
    
    .dropdown-menu a:hover {
      background: rgb(224, 116, 34);
      border-radius: 8px;
    }
    
    /* ====================================================
       📦 SECCIONES GENERALES
    ==================================================== */
    section.hero {
      min-height: 100vh;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
      text-align: center;
      transition: background-color 1s ease-in-out, background-image 1s ease-in-out;
    }
    
    #inicio {
      background-color: #ffb980;
    }
    
 
    
    section h1 {
      font-size: 3em;
      color: #444444;
      max-width: 700px;
    }

    .social-icons {
      margin-top: 20px;
    }

    .social-icon {
      color: rgb(224, 116, 34);
      margin: 0 10px;
      font-size: 1.6em;
      transition: color 0.3s;
      text-decoration: none;
    }

    .social-icon:hover {
      color: #ff8100;
    }
    @media (max-width: 768px) {

      #inicio {
          background-image: url('/img/fondo-movil-2.webp');
      }

      nav img.logo-icon {
          display: none;
        }
    }
    
    /* ====================================================
       📸 SECCIÓN INICIO - CARRUSEL Y TEXTO
    ==================================================== */
    .inicio-content {
      display: flex;
      gap: 40px;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      max-width: 1200px;
      width: 100%;
      height: 80vh;
    }
    
    .inicio-text {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Estructura de bienvenida con logo y subtítulo */
    .texto-bienvenida {
      text-align: center;
    }
    
    .texto-bienvenida h1 {
      font-size: 2.5em;
      color: #444444;
      margin-bottom: 10px;
    }
    
    .texto-bienvenida .subtitulo {
      color: rgb(224, 116, 34);
      font-weight: bold;
      font-size: 1.2em;
      margin-top: 10px;
    }
    
    .logo {
      max-width: 80%;
      height: auto;
      margin: 20px auto;
      display: block;
    }
    
    /* Carrusel de imágenes */
    .galeria-carousel {
      position: relative;
      flex: 1;
      height: 100%;
      overflow: hidden;
      border-radius: 1em;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .galeria-carousel img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      border-radius: inherit;
      pointer-events: none;
    }
    
    .galeria-carousel img.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
    }

  
    
    /* ====================================================
       📦 SECCIÓN PRODUCTOS - GALERÍA CIRCULAR
    ==================================================== */
    #productos {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 60px 20px;
      background-color: #ffd799;
      text-align: center;
    }
    
    #productos h1 {
      font-size: 3em;
      color: #444444;
      margin-bottom: 40px;
    }
    
    .galeria-circular {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
      flex-wrap: nowrap;
    }
    
    a.circulo {
      text-decoration: none;
      position: relative;
      display: block;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s ease;
      flex-shrink: 0;
    }
    
    a.circulo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    a.circulo:hover {
      transform: scale(1.05);
    }
    
    .texto-overlay {
        position: absolute;
        top: 86%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        padding: 22px;
        border-radius: 10px;
        height: 118px;
    }
    
    .texto-overlay h2 {
      font-size: 1.2em;
      margin-bottom: 5px;
    }
    
    .texto-overlay p {
      font-size: 0.9em;
      margin: 0;
    }

    @media (max-width: 768px) {

           #productos h1 {
            font-size: 1.5em;
            color: #444444;
            margin-bottom: 40px;
          }
    
    
      }
       @media (max-width: 1200px) {

          

           a.circulo {
              text-decoration: none;
              position: relative;
              display: block;
              width: 200px;
              height: 200px;
              border-radius: 50%;
              overflow: hidden;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
              transition: transform 0.4s ease;
              flex-shrink: 0;
            }
    
      }
    
    /* ====================================================
       📦 SECCIÓN SUBLIMACIÓN - GALERÍA CON TEXTO ARRIBA
    ==================================================== */
    #sublimacion {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 60px 20px;
      background-color: #ffb980;
      text-align: center;
    }
    
    #sublimacion h1 {
      font-size: 3.2em;
      color: #444444;
      margin-bottom: 40px;
      line-height: 1.2;
      padding: 0 10px;
    }
    
    #sublimacion h3 {
      font-size: 1.3em;
      color: #444444;
      margin-bottom: 40px;
      line-height: 1.2;
      padding: 7px 81px;
    }
    
    .galeria-sublimacion {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      width: 100%;
      max-width: 1200px;
      padding: 0 10px;
    }
    
    .item-sublimacion {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 15px;
      transition: transform 0.3s ease;
    }
    
    .item-sublimacion:hover {
      transform: translateY(-5px);
    }
    
    .item-sublimacion h2 {
      font-size: 1.2em;
      color: rgb(224, 116, 34);
      margin-bottom: 10px;
      padding: 0.3em 0px;
    }
    
    .item-sublimacion img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

      @media (max-width: 768px) {
           #sublimacion h1 {
            font-size: 2.2em;
            color: #444444;
            margin-bottom: 40px;
            line-height: 1.2;
            padding: 0 10px;
          }
          #sublimacion h3 {
            font-size: 1.3em;
            color: #444444;
            margin-bottom: 40px;
            line-height: 1.2;
            padding: 7px 21px;
          }
      }
    
    /* ====================================================
       📌 SECCIÓN CONTACTO Y PIE DE PÁGINA
             min-height: 100vh;
      background-image: url('https://via.placeholder.com/1200x800/ff8100/ffffff?text=Contacto');
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
      text-align: center;

    ==================================================== */
  
  
    /* ====================================================
       🌀 EFECTOS DE TRANSICIÓN
    ==================================================== */
    @keyframes circleIn {
      0% {
        clip-path: circle(0% at 50% 50%);
      }
      100% {
        clip-path: circle(150% at 50% 50%);
      }
    }
    
    .animate-circle-in {
      animation: circleIn 1.5s ease-out forwards;
    }
    
    /* ====================================================
       📱 RESPONSIVE
    ==================================================== */
    @media (max-width: 768px) {
      nav {
        top: 10px;
       
        right: 50%;
        transform: translateX(50%);
        flex-direction: column;
        align-items: center;
      }
    
      .inicio-content {
        flex-direction: column;
        height: auto;
      }
    
      .inicio-text h1 {
        font-size: 1.8em;
        text-align: center;
      }
    
      section h1 {
        font-size: 2em;
      }
    
      .galeria-circular {
        flex-direction: column;
        gap: 20px;
      }
    
      a.circulo {
        width: 250px;
        height: 250px;
      }
    
      .texto-overlay h2 {
        font-size: 1.1em;
      }
    
      .texto-overlay p {
        font-size: 0.8em;
      }
    }
    
    /* ====================================================
       📱 BOTÓN WHATSAPP FLOTANTE
    ==================================================== */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
      text-decoration: none;
    }
    
    .whatsapp-float:hover {
      background-color: #1ebc5d;
    }

        /* ====================================================
       📱 IMG FLOTANTE
    ==================================================== */
    .img-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 60px;          
      left: 60px;
      /* background-color: #25D366; */
      /* color: white; */
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
      text-decoration: none;
    }
    .oveja-animada{
      height: 150px;
        animation: bounce 2s infinite;
    }
       
    .oveja-animada {
      animation: bounce 2s infinite;
    }

     @media (max-width: 600px) {
          .img-float {
            display: none;
            /* position: fixed;
            width: 60px;     
            height: 60px;
            bottom: 133px;
            left: 35px;          
            border-radius: 50%;
            text-align: center;
            font-size: 30px;          
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            text-decoration: none; */
          }
            .whatsapp-float {
              position: fixed;
              width: 60px;
              height: 60px;
              bottom: 100px;
              right: 20px;
              background-color: #25D366;
              color: white;
              border-radius: 50%;
              text-align: center;
              font-size: 30px;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
              z-index: 1000;
              display: flex;
              align-items: center;
              justify-content: center;
              transition: background 0.3s ease;
              text-decoration: none;
          }
          
    }
    
    /* ====================================================
       📱 MENÚ RESPONSIVE (DROPDOWN DESPLEGABLE)
    ==================================================== */
   
    .menu {
      display: none;
      transition: all 0.3s ease;
    }

    .menu.show {
      display: block;
    }
    @media (max-width: 600px) {
      nav {
        display: none;
      }
      .menu-links {
        display: none;
      }
    
      .menu-toggle {
        display: block;
      }
    
      .dropdown-menu {
        display: none;
      }
    
      .dropdown-menu.show {
        display: flex;
      }
    }
/* ====================================================
     FERIAS
  ==================================================== */
  #ferias {
    padding: 4rem 1rem;
    background-color: #fffaf4;
    text-align: center;
    color: #444;
  }

  .ferias-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .ferias-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #e07422;
  }

  .ferias-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .feriasSwiper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1rem;
  }

  .swiper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}


  .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .swiper-slide {
    width: 100% !important;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* permite que el contenido se adapte */
  padding: 1rem;
  box-sizing: border-box;
  }

  .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
  }

  .swiper-slide img:hover {
    transform: scale(1.05);
    cursor: pointer;
  }



  .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: #ff8100;
    opacity: 0.5;
    border-radius: 50%;
    transition: opacity 0.3s;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
  }
.swiper-pagination {
  position: absolute;

  bottom: 10px;
  left: 50%;
  /* transform: translateX(-50%); */
  z-index: 10;
  display: flex !important;
  justify-content: center;
  gap: 8px;
}
  /* Responsive */
  @media (max-width: 768px) {
    .ferias-container h2 {
      font-size: 1.6rem;
    }

    .ferias-container p {
      font-size: 0.95rem;
    }
  }

  .galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

/* Imágenes responsivas */
.galeria img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .galeria img {
    max-width: 90%;
  }

  .swiper-slide {
    padding: 0.5rem;
  }
}

/* ====================================================
     CONTACTOS
  ==================================================== */
  #contacto {
     min-height: 100vh;  
    background-image: url('/img/cat-1.webp');
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    align-content: center;
    flex-direction: column;
    }


.contacto-titulo {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #fff; /* Blanco para contraste */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra para destacar sobre fondos */
  font-weight: 700;
}

.contacto-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contacto-item {
  flex: 1 1 200px;
}

.contacto-icono {
  width: 50px;
  margin-bottom: 10px;
}

.contacto-grid a {
  position: relative;
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* .contacto-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #0077cc;
  transition: width 0.3s ease;
} */

.contacto-grid a:hover {
  color: #005999;
}

.contacto-grid a:hover::after {
  width: 100%;
}
.contacto-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #ffffff; /* Letras blancas para mejor contraste */
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 10px 16px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.4); /* Fondo translúcido */
  backdrop-filter: blur(4px);
}

.contacto-item a:hover {
  transform: scale(1.05);
  color: #ffd700; /* Amarillo/dorado para destacar */
  background-color: rgba(0, 0, 0, 0.6); /* Más visible al pasar el mouse */
}

.contacto-item img {
  transition: transform 0.3s ease;
  filter: brightness(1.2); /* Mejora visibilidad del ícono */
}

.contacto-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.5);
}

  /****************
  Footer
  
  ****/

/*   
    footer {
      background: #444444;
      color: white;
      text-align: center;
      padding: 20px;
    } */

    .footer {
  background-color: #1a1a1a;
  color: #f0f0f0;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9em;
}

.footer a {
  color: #ffd700; /* Dorado */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer .autor {
  margin-top: 8px;
  font-size: 0.85em;
  opacity: 0.8;
}


/*******************************************/
  .tiendas {
      background-color: #ffd799;
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
 

  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }

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

  .card img {
    width: 400px;
    height: 400px;
    object-fit: cover;
  }

  .card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
   .card-content img{
      width: 200px;
      height: 90px;
  }

  .card-content h3 {
    margin: 0 0 0.5rem 0;
  }

  .card-content p {
    margin: 0.25rem 0;
  }

  .card-content a {
    margin-top: 0.5rem;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
  }

  .card-content a:hover {
    text-decoration: underline;
  }


  /* RESPONSIVE DESIGN */
  @media (max-width: 768px) {
    .card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .card img {
      width: 100%;
      height: auto;
    }

    .card-content {
      align-items: center;
    }
  }

    
