/* --- Satoshi Canvas - Global Variables --- */
:root {
  --primary-dark: #0f172a;
  --accent-orange: #f7931a;
  --ai-purple: #8b5cf6;
  --bg-canvas: #f8fafc;
  --accent-teal: #4db6ac;
  --card-bg: #ffffff;
  --text-main: #1e293b;
  --text-muted: #475569;
  --border-color: #e2e8f0;
  --btn-outline-custom: #1e293b;
  --kix-pink: #ff007f;
  /* New Golden Shadow Variable */
  --glow-gold: rgba(247, 147, 26, 0.35);
}

body.dark-mode {
  --bg-canvas: #020617;
  --card-bg: #0f172a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: #1e293b;
  --btn-outline-custom: #38bdf8;
}

/* --- Base Styles --- */
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-canvas);
  color: var(--text-main);
  transition: background 0.4s ease, color 0.4s ease;
}

.text-muted { color: var(--text-muted) !important; }

/* --- Navigation & Header --- */
.navbar { 
  background: rgba(15, 23, 42, 0.95); 
  backdrop-filter: blur(10px); 
  border-bottom: 2px solid var(--accent-orange); 
}
.navbar-brand { color: white !important; }
.auth-section { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  padding-left: 15px; 
  border-left: 1px solid rgba(255,255,255,0.1); 
}
.btn-auth { padding: 8px 20px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-login { background: var(--accent-orange); color: white !important; }
.btn-logout { border: 1px solid #ef4444; color: #ef4444 !important; }
/*
.hero-section { 
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); 
  padding: 120px 0 80px; 
  color: white; 
  text-align: center; 
  border-bottom: 4px solid var(--accent-orange); 
}
//////////*/

/* --- Atualize este bloco no seu style.css --- */

.hero-section {
  /* A mágica acontece aqui: 
     1. A primeira camada é um gradiente escuro com transparência (rgba).
     2. A segunda camada é a sua imagem (url).
  */
  background: 
    linear-gradient(
      135deg, 
      rgba(15, 23, 42, 0.85) 0%,   /* 85% opaco (escuro) */
      rgba(30, 41, 59, 0.90) 100%  /* 90% opaco (mais escuro ainda) */
    ),
    url('hero_bg.jpg'); /* O nome do arquivo que você salvou na pasta css/img */
  
  /* Configurações para a imagem cobrir tudo perfeitamente */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Mantém o espaçamento original */
  padding: 140px 0 100px; /* Aumentei um pouco para dar mais ar, como na foto */
  color: white;
  text-align: center;
  border-bottom: 4px solid var(--accent-orange);
  position: relative;
}

/* Opcional: Adiciona um brilho dourado sutil no texto do título para combinar com a imagem */
.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #f7931a; /* Cor laranja Bitcoin base */
  text-transform: uppercase;
  letter-spacing: 2px;
  
  /* Gradiente dourado no texto (Webkit) */
  background: linear-gradient(to bottom, #ffd700, #f7931a, #b86e00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Sombra para destacar do fundo */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}


/**/

.hero-title { 
  font-size: 4.5rem; 
  font-weight: 900; 
  background: linear-gradient(to right, #f7931a, #ffffff); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

/* --- The "Floating" Card System --- */
/* Applied to Generator, Payment Hub, and Tool Cards */
.generator-box, .feature-card, .payment-box {
  background: var(--card-bg); 
  border: 1px solid var(--border-color); 
  border-radius: 24px; 
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for all Cards */
.generator-box:hover, .feature-card:hover, .payment-box:hover {
  transform: translateY(-12px);
  border-color: var(--accent-orange);
  /* Golden Golden Shadow */
  box-shadow: 0 15px 45px var(--glow-gold);
}

.feature-card { 
  padding: 40px; 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  text-align: center; 
}
.feature-icon { font-size: 3.5rem; margin-bottom: 20px; }

/* --- Buttons & Inputs --- */
.btn-feature {
    width: 100%; font-weight: 700; border-radius: 12px; padding: 12px;
    border: 1px solid rgba(255,255,255,0.1); color: white !important;
}

.btn-outline-dark {
  border-color: var(--btn-outline-custom) !important;
  color: var(--btn-outline-custom) !important;
  font-weight: 700;
}
.btn-outline-dark:hover {
  background-color: var(--btn-outline-custom);
  color: #000 !important;
}

.floating-toggle-btn {
  position: fixed; bottom: 30px; right: 30px; width: 70px; height: 70px;
  background-color: var(--accent-orange); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(247, 147, 26, 0.4); z-index: 2000; transition: 0.3s; border: none;
}

/* --- Footer --- */
footer { background: var(--primary-dark); color: white; padding: 60px 0; margin-top: 80px; }

/* --- KIX Merchant (Custom Pink Glow) --- */
.feature-card.kix-merchant {
  border: 1px solid var(--kix-pink) !important;
  background: linear-gradient(180deg, rgba(255, 0, 127, 0.05) 0%, var(--card-bg) 100%);
}
.feature-card.kix-merchant:hover {
  border-color: var(--kix-pink) !important;
  box-shadow: 0 15px 45px rgba(255, 0, 127, 0.3);
}
.kix-pink-text { color: var(--kix-pink) !important; }
.btn-kix {
  background: var(--kix-pink);
  color: white !important;
  border: none;
  transition: 0.3s ease;
  font-size: 0.8rem;
  font-weight: bold;
}
.btn-kix:hover { background: #d4006a; box-shadow: 0 0 15px rgba(255, 0, 127, 0.4); }
.badge-kix { background: var(--kix-pink); color: white; }
