/* ===========================
   BASE GLOBAL - LIONWATT
   =========================== */

/* Fonte principal */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variáveis de cor */
:root {
  --lw-primary: #0c3f8c;
  --lw-primary-dark: #072654;
  --lw-primary-soft: #154f9d;
  --lw-accent: #fcad0b;
  --lw-accent-soft: #070707;
  --lw-bg-body: #fcad0b;; /*faixa que fica entre o menu e a tela*/
  --lw-bg-light: #f5f7fb;
  --lw-bg-card: #ffffff;
  --lw-border-soft: rgba(12, 63, 140, 0.18);
  --lw-text-main: #0d1833;
  --lw-text-soft: #64748b;
  --lw-text-light: #e2e8f0;
  --lw-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.16);
}

/* Reset simples */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lw-text-main);
  background-color: var(--lw-bg-body);
}

/* Links */
a {
  color: var(--lw-primary);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
  color: var(--lw-accent);
  text-decoration: none;
}

/* Imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--lw-text-main);
  margin-top: 0;
}

/* Parágrafos */
p {
  margin: 0 0 0.75rem;
  color: var(--lw-text-soft);
}

/* Listas */
ul, ol {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
}

/* Botões padrões (bootstrap override leve) */
.btn {
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 20px;
  border-width: 0;
}

/* Botão principal LionWatt */
.btn-primary {
  background: linear-gradient(135deg, var(--lw-primary-soft), var(--lw-primary));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(12, 63, 140, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--lw-primary), var(--lw-primary-dark));
  box-shadow: 0 10px 24px rgba(12, 63, 140, 0.5);
}

/* Botão secundário */
.btn-secondary {
  background-color: #e5e7eb;
  border-color: transparent;
  color: #111827;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #d1d5db;
}

/* Inputs */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
  border-radius: 10px;
  border: 1px solid #d4d7e0;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
  width: 100%;
  background-color: #ffffff;
  color: var(--lw-text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--lw-primary);
  box-shadow: 0 0 0 1px rgba(12, 63, 140, 0.4);
}

/* Placeholders */
::placeholder {
  color: #9ca3af;
}

/* Utilidades básicas */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-4 { margin-top: 1rem !important; }

/* Container */
.container {
  position: relative;
  z-index: 1;
}
