/*
Theme Name: L&V Licitação e Assessoria
Theme URI: https://lvlicitacoes.com.br
Author: L&V Licitação e Assessoria
Author URI: https://lvlicitacoes.com.br
Description: Tema premium para L&V Licitação e Assessoria — landing page de alta conversão para empresas que desejam vender para o governo (B2G). Paleta navy + dourado, responsivo, mobile-first.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lv-licitacao
Tags: business, one-page, landing-page, custom-colors, custom-menu, responsive-layout
*/

/* ===========================================================
   DESIGN TOKENS
   =========================================================== */
:root {
  --navy-900: #0a1834;
  --navy-800: #0f2349;
  --navy-700: #16315f;
  --navy-600: #1e4078;
  --gold-500: #c9a14a;
  --gold-400: #d9b765;
  --gold-300: #e7cd8a;
  --gold-foreground: #1a1305;
  --white: #ffffff;
  --bg: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;

  --gradient-navy: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  --gradient-hero: linear-gradient(135deg, #07112a 0%, #0f2349 60%, #16315f 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-500), var(--gold-300));

  --shadow-card-soft: 0 4px 16px -6px rgba(15, 35, 73, 0.08);
  --shadow-elegant: 0 20px 50px -20px rgba(15, 35, 73, 0.35);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1200px;
  --radius: 14px;
}

/* ===========================================================
   RESET
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; line-height: 1.15; margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.section-title { font-size: clamp(28px, 4vw, 40px); margin-top: 12px; }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  box-shadow: 0 8px 24px -10px rgba(201, 161, 74, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(201, 161, 74, 0.7); }
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }

/* ===========================================================
   NAVBAR
   =========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 24, 52, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand-logo {
  height: 36px; width: 36px; border-radius: 8px;
  background: var(--gradient-gold);
  display: grid; place-items: center;
  color: var(--gold-foreground); font-weight: 800; font-size: 14px;
}
.brand-name { font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
.nav-links { display: none; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 14px; transition: var(--transition-smooth); }
.nav-links a:hover { color: var(--gold-400); }
.nav-toggle { color: #fff; display: inline-flex; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
.mobile-menu { display: none; background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 24px; flex-direction: column; gap: 10px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.9); padding: 8px 0; font-size: 14px; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding: 160px 0 120px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.hero-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  font-size: 12px; font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold-400), #ffd98a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { margin-top: 22px; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.75); max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.hero-stats { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 720px; margin: 56px auto 0; }
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 18px;
  text-align: left;
}
.stat-icon { color: var(--gold-400); margin-bottom: 8px; font-size: 18px; }
.stat-label { font-weight: 600; font-size: 14px; }
.stat-desc { color: rgba(255,255,255,0.6); font-size: 12px; }

/* ===========================================================
   SECTIONS
   =========================================================== */
section { padding: 96px 0; }
.section-light { background: var(--bg); }
.section-muted { background: rgba(241, 245, 249, 0.4); }
.section-navy { background: var(--gradient-navy); color: #fff; position: relative; overflow: hidden; }
.section-navy::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.3;
}
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; position: relative; }
.section-head p { color: var(--muted-foreground); margin-top: 16px; }
.section-navy .section-head p { color: rgba(255,255,255,0.7); }

/* CARDS GRID */
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card-soft);
  transition: var(--transition-smooth);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); border-color: rgba(30, 64, 120, 0.3); }
.card .icon-wrap {
  height: 48px; width: 48px; border-radius: 12px;
  background: var(--gradient-navy);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: var(--transition-smooth);
}
.card:hover .icon-wrap { transform: scale(1.1); }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted-foreground); font-size: 14px; }
.card .step-no {
  position: absolute; top: 22px; right: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800;
  color: rgba(201, 161, 74, 0.3);
}

/* BENEFITS (navy) */
.benefit {
  padding: 24px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}
.benefit:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.benefit .icon-wrap {
  height: 44px; width: 44px; border-radius: 10px;
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.benefit h3 { font-size: 16px; margin-bottom: 6px; }
.benefit p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* HOW IT WORKS */
.steps { position: relative; display: grid; gap: 32px; grid-template-columns: 1fr; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; position: relative; }
.step-bubble {
  position: relative; margin: 0 auto;
  height: 80px; width: 80px; border-radius: 50%;
  background: var(--gradient-navy);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-elegant);
}
.step-bubble .badge {
  position: absolute; top: -4px; right: -4px;
  height: 28px; width: 28px; border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
}
.step h3 { font-size: 20px; margin-top: 22px; color: var(--foreground); }
.step p { font-size: 14px; color: var(--muted-foreground); margin-top: 10px; max-width: 280px; margin-left: auto; margin-right: auto; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { padding: 28px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-card-soft); transition: var(--transition-smooth); }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.stars { display: flex; gap: 4px; color: var(--gold-500); margin-bottom: 14px; font-size: 14px; }
.testimonial-text { font-size: 14px; line-height: 1.7; }
.testimonial-meta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial-meta .name { font-weight: 600; font-size: 14px; }
.testimonial-meta .company { color: var(--muted-foreground); font-size: 12px; margin-top: 2px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--card); box-shadow: var(--shadow-card-soft);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--gold-500); font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 24px 22px; color: var(--muted-foreground); font-size: 14px; line-height: 1.7; }

/* LEAD FORM */
.lead-section { background: var(--gradient-hero); color: #fff; position: relative; overflow: hidden; }
.lead-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.3;
}
.lead-wrap { position: relative; max-width: 1100px; margin: 0 auto; display: grid; gap: 48px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .lead-wrap { grid-template-columns: 1fr 1fr; } }
.lead-copy h2 { font-size: clamp(28px, 4vw, 40px); }
.lead-copy p { color: rgba(255,255,255,0.75); margin-top: 18px; font-size: 17px; }
.lead-bullets { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.lead-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.lead-bullets li::before { content: "✓"; color: var(--gold-400); font-weight: 700; }
.lead-card { background: #fff; color: var(--foreground); padding: 36px; border-radius: 20px; box-shadow: var(--shadow-elegant); }
.lead-card h3 { font-size: 22px; }
.lead-card p.small { color: var(--muted-foreground); font-size: 13px; margin-top: 6px; }
.form-grid { display: grid; gap: 14px; margin-top: 22px; }
.form-grid label { font-size: 13px; font-weight: 600; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; color: var(--foreground);
  font-size: 14px; font-family: inherit;
  transition: var(--transition-smooth);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(30, 64, 120, 0.1);
}
.form-grid textarea { min-height: 90px; resize: vertical; }
.form-grid .btn { width: 100%; margin-top: 8px; }

/* FOOTER */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.65); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-about p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 360px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  height: 36px; width: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  transition: var(--transition-smooth);
}
.socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--gold-foreground); }
.footer-bottom {
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 10px;
  justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .links { display: flex; gap: 20px; }
