@font-face {
    font-family: 'Kepler296';
    src: url('Kepler296.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
    /* Reset visual leve */
    :root{
      --gold: #c5972f;
      --gold-dark: #a88124;
      --bg: #f6f6f6;
      --card-bg: #ffffff;
      --muted: #666;
    }
    body{
      font-family: "Inter", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background: var(--bg);
      color: #222;
      margin: 0;
      padding-top: 120px; /* espaço para navbar fixa */
    }

    /* NAVBAR (mantida, mas leve ajuste estético) */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 120px;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 50px;
      z-index: 1000;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    }

.navbar .nav-link,
.navbar .navbar-brand,
.navbar i {
  font-size: 20px;
  color: black;
font-family: 'Kepler296', Arial, sans-serif;
}


.navbar-brand {
  margin-right: 120px;
}


.navbar-brand {margin-right: 120px;}

 

i.fa,
i.fas,
i.fab,
i.fa-solid,
i.fa-brands {
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;
}

i.fab {
  font-family: "Font Awesome 6 Brands";
}

    /* Page header */
    .container-header{
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px;
    }
    .page-title{
      font-size: 2rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 6px;
    }
    .page-sub{
      color: var(--muted);
      margin-bottom: 22px;
    }

    /* Feature cards (3) - professional style */
    .features {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 18px;
      max-width: 1100px;
      margin: 18px auto 36px;
      padding: 0 14px;
    }
    .feature-card {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 20px;
      display:flex;
      gap: 12px;
      align-items: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.03);
    }
    .feature-icon{
      width:56px;height:56px;border-radius:12px;
      display:flex;align-items:center;justify-content:center;
      background: linear-gradient(180deg, rgba(197,151,47,0.12), rgba(197,151,47,0.04));
      color: var(--gold);
      font-size: 22px;
      flex-shrink:0;
    }
    .feature-content h6{ margin:0; font-weight:700; color:#111; }
    .feature-content p{ margin:2px 0 0; color:var(--muted); font-size:0.95rem; }

    /* Feedback grid (estilo e-commerce) */
    .feedback-grid{
      max-width: 1200px;
      margin: 24px auto 10px;
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 18px;
      padding: 0 14px;
    }
    .feedback-card{
      background: var(--card-bg);
      border-radius: 12px;
      padding: 18px;
      position: relative;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      border-left: 4px solid rgba(197,151,47,0.12);
      transition: transform .22s ease, box-shadow .22s ease;
      cursor: pointer;
    }
    .feedback-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    }
    .feedback-meta{ display:flex; gap:10px; align-items:center; margin-bottom:8px; }
    .avatar{
      width:42px;height:42px;border-radius:8px;
      background: linear-gradient(180deg,#f0e6cc,#fff7e6);
      display:flex;align-items:center;justify-content:center;color:var(--gold);
      font-weight:700; font-size:18px;
    }
    .meta-info strong{ display:block; font-size:1rem; color:#111; }
    .meta-info span{ color:var(--muted); font-size:0.92rem; }

    .feedback-body{ color:#333; line-height:1.45; margin-top:8px; font-size:0.96rem; }

    .feedback-badge{
      position:absolute; top:12px; right:12px;
      background: var(--gold); color: #fff; padding:6px 10px; border-radius:999px;
      font-size:0.78rem; font-weight:700;
    }

    /* Pagination area */
    .pagination-wrap{ display:flex; justify-content:center; gap:8px; margin:28px 0 46px; flex-wrap:wrap; }
    .pagination-wrap a, .pagination-wrap span{
      padding:8px 12px; border-radius:8px; text-decoration:none; color:#333; border:1px solid rgba(0,0,0,0.06);
    }
    .pagination-wrap .current{ background: var(--gold); color:#fff; font-weight:700; border-color: var(--gold-dark); }

    /* Voltar botão */
    .back-btn{ display:block; width:240px; margin:20px auto 60px; text-align:center; padding:12px 18px; background:var(--gold); color:#111; border-radius:999px; text-decoration:none; font-weight:700; box-shadow:0 10px 24px rgba(165,129,36,0.12); }
    .back-btn:hover{ background:var(--gold-dark); color:#fff; transform:translateY(-3px); }

    /* Modal customization */
    .modal-header.bg-warning{ background: var(--gold); color:#111; font-weight:700; }

    @media (max-width:900px){
      .features{ grid-template-columns: 1fr; gap:12px; max-width:600px; }
      body{ padding-top:100px; }
    }

    .logo {
  text-align: center;
  margin: 10px 0 30px 0;
}

.logo img {
  width: 140px;
}


footer {
  background-color: #fff;
  padding: 40px 0;
  border-top: 2px solid #000;
}
/* logo */
.logo-footer {
  width:150px;
  height: 150px;
}


.redes-sociais {
  color: #000000;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 22px;
  color: #000;
  text-decoration: none;
}

.social-icons a:hover {
  color: #FFD700;
}

.hashtag {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}


.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
}

/* Links rodape*/
footer ul li {
  margin-bottom: 6px;
}

footer ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

footer ul li a:hover {
  text-decoration: underline;
}

/* Atendimento */
footer p {
  font-size: 14px;
  margin: 4px 0;
}

#categoriasCarousel a {
    text-decoration: none !important;
    color: inherit;
}

#categoriasCarousel a:hover {
    text-decoration: none !important;
}

  .card .cart-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #c69604;
      color: #ffffffff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: transform 0.3s, box-shadow 0.3s;
      z-index: 10;
    }

/* barra de pesquisa  */
.search-container {
    position: relative;
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 40px;       
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0px 4px 15px rgba(255, 239, 8, 0.25);
    animation: fadeIn .2s ease;
    z-index: 999;
}

.search-dropdown input {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* CONTAINER DAS CAIXINHAS */
.benefits-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 1200px;
}

/* CAIXINHAS */
.benefit-box {
    width: 260px;
    height: 120px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 0 0 2px #ddd inset;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

/* HOVER */
.benefit-box:hover {
    box-shadow: 0 0 0 2px #F4C430 inset;
    transform: translateY(-4px);
}

/* ÍCONES */
.benefit-box i {
    font-size: 45px;
    color: #F4C430; /* dourado */
}

/* TEXTO */
.benefit-text {
    font-size: 14px;
    color: #333;
    line-height: 18px;
    font-weight: 500;
}



/* ----- ÁREA GERAL DO CARROSSEL ----- */
#guitarCarousel .carousel-inner {
    padding: 10px 0;
}

/* ----- CATEGORIAS ----- */
#guitarCarousel .col-3 {
    padding: 5px;  /* Fotos mais juntas */
}

.category-img {
    width: 100%;
    height: 200px;   /* AQUI VOCÊ AUMENTA */
    object-fit: contain;
    transition: transform .25s ease, filter .25s ease;
}


/* Efeito hover suave */
.category-img:hover {
    transform: scale(1.06);
    filter: brightness(1.1);
}

/* Nome da categoria */
.category-name {
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e5c469; /* dourado suave */
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Remover sublinhado */
#guitarCarousel a {
    text-decoration: none;
}

/* ----- SETAS DO CARROSSEL ----- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(80%) sepia(55%) saturate(500%) hue-rotate(10deg);
    width: 35px;
    height: 35px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 4%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(229, 196, 105, 0.15);
    transition: .2s;
}

/* ----- RESPONSIVO ----- */
@media (max-width: 768px) {
    #guitarCarousel .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    #guitarCarousel .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


//* ===== OFFCANVAS PREMIUM DOURADO ===== */
/* ============================================================
   OFFCANVAS PREMIUM GOLD EDITION
   ============================================================ */

#offcanvasFavoritos {
    background: rgba(20, 20, 20, 0.85); /* fundo premium */
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: -12px 0 25px rgba(255, 215, 0, 0.20);
}

/* Cabeçalho */
#offcanvasFavoritos .offcanvas-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    background: rgba(25, 25, 25, 0.55);
}

#offcanvasFavoritos .offcanvas-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Mensagem "nenhum item" */
#offcanvasFavoritos p {
    color: #cccccc;
    text-align: center;
    padding-top: 10px;
}


/* ============================================================
   ITEM DOS FAVORITOS
   ============================================================ */

.favorito-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    background: rgba(40, 40, 40, 0.65);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.3s ease;
    animation: slideFadeIn 0.6s ease forwards;
}

/* Hover com pulso dourado */
.favorito-item:hover {
    background: rgba(55, 55, 55, 0.75);
    border-color: rgba(255, 215, 0, 0.55);
    animation: goldPulse 1.8s infinite ease-in-out;
}


/* ============================================================
   ANIMAÇÃO DO BRILHO (gold shine)
   ============================================================ */

.favorito-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 250%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 215, 0, 0.18),
        transparent
    );
    background-size: 200% 100%;
    animation: goldShine 3s infinite linear;
    pointer-events: none;
}


/* ============================================================
   IMAGENS
   ============================================================ */

#offcanvasFavoritos img {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 215, 0, 0.40);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
    transition: 0.4s ease;
}

/* Animação de brilho ao passar */
#offcanvasFavoritos img:hover {
    animation: imgGoldGlow 1.8s infinite ease-in-out;
}


/* ============================================================
   TEXTOS
   ============================================================ */

.favorito-nome,
.favorito-item strong {
    color: #f1f1f1;
    font-weight: 600;
    font-size: 1rem;
}

.favorito-preco,
.favorito-item span {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}


/* ============================================================
   ÍCONES
   ============================================================ */

#offcanvasFavoritos a i {
    font-size: 0.6rem;
    transition: 0.3s ease;
}


/* Abrir produto (setinha) */
#offcanvasFavoritos a.text-dark i {
    color: #FFD700 !important;
}

#offcanvasFavoritos a.text-dark:hover i {
    transform: scale(1.15);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
    animation: goldRotate 0.3s ease-in-out forwards;
}

/* Remover (X) */
#offcanvasFavoritos a.text-danger i {
    color: #ff5b5b !important;
}

#offcanvasFavoritos a.text-danger:hover i {
    animation: vibraX 0.25s linear;
    transform: scale(1.2);
    text-shadow: 0 0 7px rgba(255, 0, 0, 0.6);
}


/* ============================================================
   KEYFRAMES (ANIMAÇÕES)
   ============================================================ */

/* Brilho passando */
@keyframes goldShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Pulso dourado */
@keyframes goldPulse {
    0% { box-shadow: 0 0 0px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 14px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 0 0px rgba(255, 215, 0, 0.3); }
}

/* Entrada suave */
@keyframes slideFadeIn {
    0% { opacity: 0; transform: translateX(25px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Ícone dourado girando */
@keyframes goldRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(10deg); }
}

/* Vibrar X (excluir) */
@keyframes vibraX {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

/* Brilho na imagem */
@keyframes imgGoldGlow {
    0% { box-shadow: 0 0 4px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 14px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 4px rgba(255, 215, 0, 0.2); }
}


.video-section {
  top:-400px;
  left: 0;
  width: 100%;
  height: 100%; 
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
.videoprincipal {
position: relative;
width: 100%;
overflow: hidden;
margin-top: -150px; /* mantém o deslocamento que você queria */
}


.videoprincipal video {
width: 100%;
height: 960px; /* ajusta automaticamente a altura */
max-height: 900px; /* limite em telas grandes */
object-fit: cover; /* garante que o vídeo preencha sem distorcer */
display: block;
}