/*
Theme Name: Lalon - Aceleradora de Vendas
Theme URI: https://lalon.com.br
Author: Lalon
Author URI: https://lalon.com.br
Description: Tema WordPress da Lalon — Aceleradora de Vendas para empresas de tecnologia. Foco em vendas consultivas com IA. Destaque para o CEO Triel (Vendas), demais áreas em segundo plano.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: lalon
*/

/* ========== IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== VARIABLES ========== */
:root {
  --background: hsl(220 20% 7%);
  --foreground: hsl(40 20% 92%);
  --card: hsl(220 18% 10%);
  --card-foreground: hsl(40 20% 92%);
  --primary: hsl(40 85% 55%);
  --primary-foreground: hsl(220 20% 7%);
  --secondary: hsl(220 15% 15%);
  --muted: hsl(220 15% 13%);
  --muted-foreground: hsl(40 10% 70%);
  --accent: hsl(40 75% 45%);
  --border: hsl(220 15% 18%);
  --gold: hsl(40 85% 55%);
  --gold-light: hsl(40 90% 70%);
  --gold-dark: hsl(40 80% 40%);
  --navy: hsl(220 25% 12%);
  --navy-light: hsl(220 20% 18%);
  --radius: 0.75rem;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ========== UTIL ========== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .section-container { padding: 0 2rem; } }

.gold-gradient-text {
  background-image: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: hsla(220, 18%, 10%, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(40, 85%, 55%, 0.15);
  border-radius: var(--radius);
}

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ========== NAVBAR ========== */
.site-navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: hsla(220, 20%, 7%, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-navbar .section-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.site-navbar .logo {
  display: flex; flex-direction: column; line-height: 1;
}
.site-navbar .logo .brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.site-navbar .logo .brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 2px;
}
.nav-links { display: none; list-style: none; align-items: center; gap: 2rem; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--foreground); transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-foreground) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px hsla(40, 85%, 55%, 0.3);
  color: var(--primary-foreground) !important;
}
.mobile-toggle { display: flex; color: var(--foreground); padding: 0.5rem; }
@media (min-width: 900px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1.5rem; background: var(--card);
  border-top: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }
.mobile-menu a { padding: 0.5rem 0; font-weight: 500; }

/* ========== HERO ========== */
.hero-section {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  text-align: center;
}
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, hsla(40, 85%, 55%, 0.10), transparent 50%),
    radial-gradient(circle at 80% 60%, hsla(40, 85%, 55%, 0.06), transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  border: 1px solid hsla(40, 85%, 55%, 0.3);
  background: hsla(40, 85%, 55%, 0.08);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted-foreground);
  max-width: 680px; margin: 0 auto 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-foreground);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px hsla(40, 85%, 55%, 0.35);
}
.btn-secondary {
  border: 1px solid hsla(40, 85%, 55%, 0.4);
  color: var(--gold);
  background: transparent;
}
.btn-secondary:hover { background: hsla(40, 85%, 55%, 0.08); }
.cta-microcopy {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* ========== CEO GRID ========== */
.ceo-grid-section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-head p { color: var(--muted-foreground); font-size: 1.05rem; }

.ceo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .ceo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .ceo-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
@media (min-width: 1200px) { .ceo-grid { grid-template-columns: repeat(6, 1fr); } }

.ceo-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform .3s;
}
.ceo-card .ceo-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.45);
  transition: filter .3s;
}
.ceo-card .ceo-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, hsla(220,20%,7%,0.95), transparent);
}
.ceo-card .ceo-info .area { font-size: 0.65rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; }
.ceo-card .ceo-info .name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; }
.ceo-card.is-locked { cursor: not-allowed; }
.ceo-card.is-locked::after {
  content: ""; position: absolute; inset: 0;
  background: hsla(220,20%,7%,0.45);
}

/* TRIEL DESTACADO */
.ceo-card.is-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px hsla(40, 85%, 55%, 0.25), inset 0 0 0 1px hsla(40, 85%, 55%, 0.4);
}
.ceo-card.is-featured .ceo-img {
  filter: none;
}
.ceo-card.is-featured:hover { transform: translateY(-4px); }
.ceo-card.is-featured .ceo-badge-top {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-foreground);
  font-size: 0.65rem; font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ceo-card.is-featured .ceo-info .name { color: var(--gold); }

/* ========== PRODUCTS ========== */
.products-section { padding: 5rem 0; background: var(--navy); }
.products-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform .3s, border-color .3s;
}
.product-card:hover { transform: translateY(-4px); border-color: hsla(40, 85%, 55%, 0.4); }
.product-card.is-highlight {
  border: 2px solid var(--gold);
  transform: scale(1.02);
  box-shadow: 0 20px 50px hsla(40, 85%, 55%, 0.15);
}
.product-card .ribbon {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.product-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.product-card p { color: var(--muted-foreground); margin-bottom: 1.5rem; font-size: 0.95rem; }
.product-card ul { list-style: none; margin-bottom: 1.5rem; }
.product-card ul li {
  padding-left: 1.5rem; position: relative;
  font-size: 0.9rem; margin-bottom: 0.5rem;
  color: var(--foreground);
}
.product-card ul li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

/* ========== QUEM SOMOS / CONTENT ========== */
.content-section { padding: 5rem 0; }
.content-section .prose { max-width: 760px; margin: 0 auto; }
.content-section .prose p { margin-bottom: 1.25rem; color: var(--muted-foreground); font-size: 1.05rem; }
.content-section .prose h2 { margin: 2.5rem 0 1rem; font-size: 1.75rem; }
.content-section .prose h3 { margin: 2rem 0 0.75rem; font-size: 1.25rem; color: var(--gold); }

.la-lon-grid {
  display: grid; gap: 1.5rem; margin: 2rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .la-lon-grid { grid-template-columns: 1fr 1fr; } }
.la-lon-grid .glass-card { padding: 2rem; }
.la-lon-grid .glass-card h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.5rem; }

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 6rem 0; text-align: center;
  background:
    radial-gradient(circle at 50% 0%, hsla(40, 85%, 55%, 0.12), transparent 60%),
    var(--background);
}
.final-cta h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.final-cta p { color: var(--muted-foreground); max-width: 600px; margin: 0 auto 2rem; }

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo { font-family: 'DM Sans', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.footer-sub { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 1rem; }
.footer-copy { font-size: 0.85rem; color: var(--muted-foreground); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp .8s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up { animation: none; }
}
