/* =========================
   Issak Logan store - CSS
   Tema: azul escuro + detalhes amarelo
   ========================= */

:root{
  --bg: #081a3a;          /* azul escuro (fundo) */
  --bg-2: #0b2452;        /* variação */
  --card: #0e2a62;        /* cards */
  --text: #eaf0ff;        /* texto principal */
  --muted: rgba(234,240,255,.75);
  --accent: #ffd400;      /* amarelo */
  --accent-2: #ffea4d;    /* amarelo claro */
  --border: rgba(255,212,0,.25);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --maxw: 1100px;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body{
  height: 100%;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(255,212,0,.10), transparent 55%),
              radial-gradient(900px 700px at 80% 0%, rgba(255,212,0,.08), transparent 45%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* Container padrão */
.container{
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
}

/* Links */
a{
  color: var(--text);
  text-decoration: none;
}
a:hover{
  color: var(--accent-2);
}

/* =========================
   Cabeçalho apenas com imagem
   ========================= */
.site-header{
  width: 100%;
  height: 420px; /* altura do banner */

  background-image: url("Imagens/bgg.jpeg"); /* caminho da imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-bottom: 1px solid var(--border);
}


/* =========================
   YouTube embed grande
   ========================= */
.youtube-wrapper{
  margin-top: 18px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Mantém proporção 16:9 */
.youtube-frame{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.youtube-actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Botões
   ========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-primary{
  background: var(--accent);
  color: #1b1b1b;
  border-color: rgba(0,0,0,.15);
}

.btn-outline{
  background: rgba(11,36,82,.35);
  border-color: rgba(255,212,0,.45);
  color: var(--text);
}

.btn-small{
  padding: 10px 14px;
  font-size: .95rem;
}

/* =========================
   Produtos (grid 6 cards)
   ========================= */
.products-grid{
  margin-top: 22px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.product-card{
  background: linear-gradient(180deg, rgba(255,212,0,.08), rgba(255,212,0,0)), var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.product-image{
  width: 100%;
  height: 190px;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: grid;
  place-items: center;
}

.product-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.product-title{
  font-size: 1.15rem;
  color: var(--text);
}

.product-desc{
  color: var(--muted);
}

.product-price{
  margin-top: auto;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
}

/* =========================
   Rodapé
   ========================= */
.site-footer{
  padding: 34px 0 18px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.18);
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-title{
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-list{
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-list strong{
  color: var(--text);
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(234,240,255,.7);
  font-size: .95rem;
}

/* =========================
   WhatsApp Floating Button
   canto inferior direito
   ========================= */
.whatsapp-float{
  position: fixed;
  left: 18px;     /* canto direito */
  bottom: 18px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  background: #ffd400;
  color: #141414;
  font-weight: 900;

  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  border: 1px solid rgba(0,0,0,.18);
}

.whatsapp-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.whatsapp-icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0,0,0,.10);
}

.whatsapp-text{
  font-size: 1rem;
}

/* =========================
   Responsivo
   ========================= */
@media (max-width: 980px){
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .products-grid{
    grid-template-columns: 1fr;
  }
  .top-nav a{
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   Quem somos
   ========================= */
.about-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 18px;
}

.about-card{
  background: linear-gradient(180deg, rgba(255,212,0,.08), rgba(255,212,0,0)), var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.about-title{
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.about-text{
  color: var(--muted);
  margin-top: 10px;
}

.about-list{
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.about-highlight{
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,212,0,.35);
  background: rgba(11,36,82,.35);
  color: var(--text);
}

@media (max-width: 980px){
  .about-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   Formulário de encomenda
   ========================= */
.order-form{
  margin-top: 20px;
  max-width: 520px;
  display: grid;
  gap: 14px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label{
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea{
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color: rgba(255,255,255,.45);
}

.form-group input:focus,
.form-group textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255,212,0,.15);
}
.video-preview{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

.video-preview img{
  width: 100%;
  display: block;
}

.play-button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffd400;
  color: #000;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
/* =========================
   Ajuste das descrições dos produtos
   ========================= */

.product-info{
  background: #0b2452; /* azul */
  padding: 14px;
  border-top: 2px solid rgba(255,212,0,.4);
}

.product-title{
  color: #ffd400; /* amarelo */
  font-weight: 800;
}

.product-desc{
  color: #ffd400; /* amarelo */
  opacity: 0.9;
}

/* =========================
   Efeito ao passar o mouse
   ========================= */
.product-card{
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover{
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 22px 50px rgba(0,0,0,.55);

}

/* efeito no botão ao passar o mouse no card */
.product-card:hover .btn{
  filter: brightness(1.1);
}
/* =========================
   Preço promocional
   ========================= */

.product-price{
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

.price-old{
  color: #ff3b3b; /* vermelho */
  text-decoration: line-through;
  font-size: 1rem;
  opacity: 0.9;
}

.price-new{
  color: #2eff6a; /* verde */
  font-size: 1.4rem;
  font-weight: 900;
}
/* =========================
   Navbar (logo + menu)
   ========================= */
.navbar{
  position: sticky;
  top: 0;
  z-index: 9998;
  background: rgba(8, 26, 58, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.navbar-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.navbar-name{
  font-weight: 900;
  letter-spacing: .4px;
  color: var(--accent); /* amarelo */
  text-transform: uppercase;
}

.navbar-menu{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.navbar-menu a{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,212,0,.35);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-weight: 700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.navbar-menu a:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.45);
  border-color: rgba(255,212,0,.6);
}

@media (max-width: 640px){
  .navbar-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-menu a{
    width: 100%;
    justify-content: center;
    display: flex;
  }
}

