/* ==========================================================================
   Centro Empresarial Lotus — CSS System
   Idioma: Português do Brasil (pt-BR)
   ========================================================================== */

:root {
  /* Paleta de Cores Principal */
  --cor-fundo: #0A0A0A;
  --cor-fundo-alt: #111111;
  --cor-fundo-card: #141414;
  --cor-lotus-ouro: #C9A84C;
  --cor-lotus-ouro-cl: #E2C97E;
  --cor-lotus-ouro-rgb: 201, 168, 76;
  --cor-verde-lotus: #1B4332;
  --cor-texto: #F0EDE6;
  --cor-texto-sub: #9A9590;
  --cor-borda: rgba(201, 168, 76, 0.2);
  --cor-borda-hover: rgba(201, 168, 76, 0.6);

  /* Cores das Divisões */
  --cor-adv-bg: #111827;
  --cor-adv-accent: #C9A84C;
  
  --cor-fin-bg: #1A1500;
  --cor-fin-accent: #C9A84C;
  
  --cor-smart-bg: #080E1E;
  --cor-smart-accent: #4A90D9;
  
  --cor-mass-bg: #041212;
  --cor-mass-accent: #2AB5B5;

  /* Tipografia */
  --fonte-titulo: 'Playfair Display', Georgia, serif;
  --fonte-corpo: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transições & Sombras */
  --transicao-suave: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sombra-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --sombra-ouro: 0 10px 30px rgba(201, 168, 76, 0.15);
  --container-max: 1240px;
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
}

body {
  font-family: var(--fonte-corpo);
  line-height: 1.6;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transicao-suave);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Tipografia Utilitária */
.eyebrow {
  font-family: var(--fonte-corpo);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--cor-lotus-ouro);
  margin-bottom: 0.75rem;
  display: block;
}

.titulo-secao {
  font-family: var(--fonte-titulo);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.subtitulo-secao {
  font-size: 1.125rem;
  color: var(--cor-texto-sub);
  font-weight: 300;
  max-width: 650px;
}

/* Botões Customizados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transicao-suave);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--cor-lotus-ouro);
  color: #0A0A0A;
  border-color: var(--cor-lotus-ouro);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  background-color: var(--cor-lotus-ouro-cl);
  border-color: var(--cor-lotus-ouro-cl);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--cor-lotus-ouro);
  border-color: var(--cor-lotus-ouro);
}

.btn-outline:hover {
  background-color: var(--cor-lotus-ouro);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20BA5C;
  border-color: #20BA5C;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* SEÇÃO 0 — BARRA SUPERIOR */
.top-bar {
  background-color: var(--cor-lotus-ouro);
  color: #0A0A0A;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* HEADER & NAVBAR Sticky */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transicao-suave);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  border-bottom-color: var(--cor-borda);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--fonte-titulo);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.brand-logo svg {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cor-texto);
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cor-lotus-ouro);
  transition: var(--transicao-suave);
}

.nav-link:hover {
  color: var(--cor-lotus-ouro);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cor-texto);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

/* SEÇÃO 1 — HERO */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(27, 67, 50, 0.25) 0%, rgba(10, 10, 10, 0.95) 70%),
              url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="%23C9A84C" fill-opacity="0.03"><circle cx="50" cy="50" r="40"/></g></svg>');
  padding: 5rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.4));
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--cor-lotus-ouro-cl);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--fonte-titulo);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cor-lotus-ouro), transparent);
  margin: 1.5rem 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cor-texto-sub);
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cor-texto-sub);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--cor-lotus-ouro);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* SEÇÃO 2 — SOBRE O HUB */
.about-section {
  padding: 6rem 0;
  background-color: var(--cor-fundo);
  border-bottom: 1px solid var(--cor-borda);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--cor-texto-sub);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--cor-fundo-alt);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--cor-borda);
  transition: var(--transicao-suave);
}

.stat-card:hover {
  border-color: var(--cor-lotus-ouro);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--fonte-titulo);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cor-lotus-ouro);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--cor-texto-sub);
}

.about-visual-card {
  background: linear-gradient(145deg, #141414, #0D0D0D);
  border: 1px solid var(--cor-borda);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: var(--sombra-card);
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cor-lotus-ouro), transparent);
}

.location-box {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-lotus-ouro);
  flex-shrink: 0;
}

.location-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.location-info h4 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.location-info p {
  color: var(--cor-texto-sub);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* SEÇÃO 3 — AS DIVISÕES */
.divisions-section {
  padding: 6rem 0;
  background-color: var(--cor-fundo-alt);
}

.divisions-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.division-card {
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transicao-suave);
  border-top-width: 3px;
  border-top-style: solid;
  box-shadow: var(--sombra-card);
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Card 1 — Advocacia */
.card-advocacia {
  background-color: var(--cor-adv-bg);
  border-top-color: var(--cor-adv-accent);
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
}

/* Card 2 — Financeiras */
.card-financeiras {
  background-color: var(--cor-fin-bg);
  border-top-color: var(--cor-fin-accent);
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

/* Card 3 — SmartCred */
.card-smartcred {
  background-color: var(--cor-smart-bg);
  border-top-color: var(--cor-smart-accent);
  border-right: 1px solid rgba(74, 144, 217, 0.2);
  border-bottom: 1px solid rgba(74, 144, 217, 0.2);
  border-left: 1px solid rgba(74, 144, 217, 0.2);
}

/* Card 4 — Lotus Massagens */
.card-massagens {
  background-color: var(--cor-mass-bg);
  border-top-color: var(--cor-mass-accent);
  border-right: 1px solid rgba(42, 181, 181, 0.2);
  border-bottom: 1px solid rgba(42, 181, 181, 0.2);
  border-left: 1px solid rgba(42, 181, 181, 0.2);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.card-advocacia .card-tag { color: var(--cor-lotus-ouro); }
.card-financeiras .card-tag { color: var(--cor-lotus-ouro-cl); }
.card-smartcred .card-tag { color: var(--cor-smart-accent); }
.card-massagens .card-tag { color: var(--cor-mass-accent); }

.card-title {
  font-family: var(--fonte-titulo);
  font-size: 1.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.card-description {
  color: var(--cor-texto-sub);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

.card-features {
  margin-bottom: 2rem;
}

.card-features li {
  font-size: 0.875rem;
  color: var(--cor-texto);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-features li span.symbol {
  color: var(--cor-lotus-ouro);
  font-size: 1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

}

.badge-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cor-texto-sub);
  font-weight: 500;
}

/* SEÇÃO 4 — DIFERENCIAIS */
.differentials-section {
  padding: 6rem 0;
  background-color: var(--cor-fundo);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.diff-card {
  background: var(--cor-fundo-alt);
  border: 1px solid var(--cor-borda);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transicao-suave);
}

.diff-card:hover {
  border-color: var(--cor-lotus-ouro);
  transform: translateY(-5px);
}

.diff-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--cor-borda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--cor-lotus-ouro);
}

.diff-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.diff-card h3 {
  font-family: var(--fonte-titulo);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.diff-card p {
  font-size: 0.9375rem;
  color: var(--cor-texto-sub);
  line-height: 1.6;
}

/* SEÇÃO 5 — LOCALIZAÇÃO */
.location-section {
  padding: 6rem 0;
  background-color: var(--cor-fundo-alt);
  border-top: 1px solid var(--cor-borda);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-details-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-item-icon {
  width: 24px;
  height: 24px;
  color: var(--cor-lotus-ouro);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.location-item-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.location-item-text h5 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.location-item-text p {
  color: var(--cor-texto-sub);
  font-size: 0.9375rem;
}

.map-wrapper {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cor-borda);
  box-shadow: var(--sombra-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(90%) contrast(120%);
}

/* SEÇÃO 6 — CONTATO / CTA FINAL */
.cta-section {
  padding: 6rem 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.15) 0%, rgba(10, 10, 10, 1) 80%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* RODAPÉ (FOOTER) */
.site-footer {
  background-color: #050505;
  border-top: 1px solid var(--cor-borda);
  padding: 4rem 0 2rem 0;
  color: var(--cor-texto-sub);
  font-size: 0.875rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--fonte-titulo);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--cor-lotus-ouro);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transicao-suave);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* BANNER LGPD */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--cor-borda);
  padding: 1.25rem 0;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.lgpd-banner.active {
  transform: translateY(0);
}

.lgpd-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lgpd-text {
  font-size: 0.875rem;
  color: var(--cor-texto-sub);
  max-width: 800px;
}

.lgpd-text a {
  color: var(--cor-lotus-ouro);
  text-decoration: underline;
}

/* ANIMAÇÃO SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .about-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Ocultar em telas muito pequenas para dar foco ao Hero */
  }

  .divisions-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--cor-borda);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
