@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 700; /* era Regular, no 700 */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LeagueSpartan';
  src: url('../fonts/LeagueSpartan-Bold.woff2') format('woff2'),
       url('../fonts/LeagueSpartan-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poetsen';
  src: url('../fonts/PoetsenOne-Regular.woff2') format('woff2'),
       url('../fonts/PoetsenOne-Regular.ttf') format('truetype');
  font-weight: 700; /* si es Regular */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anton';
  src: url('../fonts/Anton.ttf') format('ttf'),
       url('../fonts/Anton.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

html,
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

        .thumb-img {
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }

        .thumb-img:hover {
            border-color: #28a745;
        }

        .thumb-container {
            max-height: 500px;
            overflow-y: auto;
        }

  .whatsapp-text {
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 6px;
    animation: bounce 1.5s infinite;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
  }


.offcanvas-title{
  font-family: "Anton", sans-serif;
  color: #fa8500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  letter-spacing: 5px;
  font-size: 42px;
}

.narrow-space {
  display: inline-block;
  width: 0.1em; /* ajusta a tu gusto */
}
/* Sombra al hacer scroll y estados de links */
#mainNav.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.nav-link {
  color: #212529;
}
.nav-link:hover,
.nav-link:focus {
  color: #ff7f27;
}
.nav-link.active {
  color: #ff7f27;
}
/* Opcional: dropdown más "pegadito" al navbar */
.dropdown-menu {
  margin-top: 0.5rem;
}

  .container-fluid {
    margin-top: 90px;

}

    .card-producto {
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .card-producto:hover {
      transform: scale(1.03);
    }

    .card-img-top {
      object-fit: cover;
      height: 200px;
    }

    .titulo-seccion {
      font-size: 2.5rem;
      color: #1e3d59;
    }

    .sidebar {
      border-right: 1px solid #e0e0e0;
      background-color: #f9f9f9;
      min-height: 100vh;
    }

    .modal-img {
      width: 100%;
      border-radius: 1rem;
    }

    @media (max-width: 767px) {
      .sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
      }
    }

    .footer-naranja {
  background: linear-gradient(135deg, #ff7402, #ff9a36) !important;
  color: #fff;
}

