:root {
  --primary-color: #6A11CB; /* Roxo IA */
  --primary-dark: #450A8C;
  --primary-light: #9B59B6; /* Lilás suave */
  --secondary-color: #2980B9; /* Azul tecnológico */
  
  --accent-color: #e1f000;  
  --accent-glow: rgba(46, 204, 113, 0.3);

  --text-color: #F0F3F5;
  --text-dark: #2C3E50;
  --text-muted: #ABB8C3;

  --bg-dark-primary: #1A1A2E;
  --bg-dark-secondary: #162447;
  --bg-light-primary: #FFFFFF;
  --bg-light-accent: #F8F9FA;

  --neutral-gray-light: #EAECEE;
  --neutral-gray-medium: #D0D3D4;
  --neutral-gray-dark: #AAB7B8;

  --danger-color: #E74C3C;
  --warning-color: #F1C40F;
  --success-color: var(--accent-color);

  --font-family: 'Poppins', sans-serif;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --box-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --box-shadow-glow: 0 0 20px var(--accent-glow);
  --transition-smooth: all 0.3s ease-in-out;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  /* NOTA: As propriedades font-family, line-height, color, 
    background-color e smoothing já são tratadas 
    no `app/layout.tsx` e no `globals.css` 
    (mas não há problema em mantê-las aqui para garantir). 
  */
  font-family: var(--font-family);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-dark-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--text-color); }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p { margin-bottom: 1rem; color: var(--text-muted); }
a { text-decoration: none; color: var(--accent-color); transition: var(--transition-smooth); }
a:hover { color: var(--primary-light); }

.site-header {
  background-color: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-content { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--text-color); display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo i { color: var(--primary-color); font-size: 2rem; }
.logo span { font-weight: 300; color: var(--text-muted); }

.joinsy-badge {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff; padding: 0.2rem 0.55rem; border-radius: 999px;
  margin-left: 0.25rem; vertical-align: middle;
}

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); transition: var(--transition-smooth); white-space: nowrap; }
.site-nav a:hover { color: var(--text-color); }
.site-nav .nav-joinsy {
  font-size: 0.85rem; font-weight: 700; color: var(--primary-light);
  border: 1px solid rgba(155,89,182,0.4); padding: 0.35rem 0.85rem;
  border-radius: 999px; transition: var(--transition-smooth);
}
.site-nav .nav-joinsy:hover { background: rgba(155,89,182,0.15); color: var(--text-color); border-color: var(--primary-light); }
.site-nav .nav-joinsy i { font-size: 0.7rem; margin-left: 0.3rem; }

.hero-section {
  padding: 6rem 0 4rem; position: relative;
  background: linear-gradient(160deg, var(--bg-dark-primary) 30%, var(--primary-dark) 100%);
  overflow: hidden; text-align: center;
}
.hero-section::before, .hero-section::after {
  content: ''; position: absolute; border-radius: 50%;
  animation: pulse-glow 5s infinite alternate;
}
.hero-section::before { top: -50px; left: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(106, 17, 203, 0.2), transparent 70%); }
.hero-section::after { bottom: -50px; right: -50px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(41, 128, 185, 0.15), transparent 70%); animation-duration: 6s; animation-direction: alternate-reverse; }

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}
/* Hero grid — two columns on desktop */
.hero-grid {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
}
.hero-left { text-align: left; }
.hero-left h1 { margin-bottom: 1rem; letter-spacing: -1px; }
.hero-left h1 .highlight { color: var(--accent-color); }
.hero-left .subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Joinsy trust badge above headline */
.joinsy-trust-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--primary-light);
  background: rgba(106,17,203,0.15); border: 1px solid rgba(106,17,203,0.35);
  padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.joinsy-trust-badge a { color: var(--accent-color); font-weight: 700; }
.joinsy-trust-badge a:hover { text-decoration: underline; }

/* Hero visual panel */
.hero-visual {
  background: rgba(22, 36, 71, 0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(106,17,203,0.35); border-radius: var(--border-radius-lg);
  padding: 1.5rem; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.visual-header {
  font-size: 0.85rem; font-weight: 700; color: var(--primary-light);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem;
}
.visual-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; margin-bottom: 1.25rem;
}
.visual-stat {
  background: rgba(106,17,203,0.15); border-radius: var(--border-radius-md);
  padding: 0.75rem 0.5rem; text-align: center; border: 1px solid rgba(106,17,203,0.2);
}
.visual-stat-number {
  display: block; font-size: 1.2rem; font-weight: 800; color: var(--accent-color);
}
.visual-stat-label { font-size: 0.7rem; color: var(--text-muted); }

.visual-chart { margin-bottom: 1rem; }
.chart-label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 0.6rem; }
.chart-bars { display: flex; flex-direction: column; gap: 0.5rem; }
.chart-bar-wrap { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--text-muted); }
.chart-bar-wrap span:first-child { width: 62px; text-align: right; flex-shrink: 0; }
.chart-bar-wrap span:last-child { width: 30px; flex-shrink: 0; color: var(--text-color); font-weight: 600; }
.chart-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.chart-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); }

.visual-footer { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.visual-footer i { color: var(--accent-color); animation: spin 3s linear infinite; }

.lead-form-wrapper {
  background-color: rgba(22, 36, 71, 0.7); backdrop-filter: blur(5px);
  padding: 2.5rem 2rem; border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 550px; margin: 2rem auto 0;
  border: 1px solid rgba(155, 89, 182, 0.3);
}
.lead-form-wrapper h2 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-color); text-align: center; }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-input-group { position: relative; }
.form-input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--primary-light); font-size: 1.1rem; }
.form-input {
  width: 100%; padding: 0.9rem 1rem; padding-left: 2.8rem;
  background-color: rgba(255,255,255, 0.05); border: 1px solid rgba(155, 89, 182, 0.2);
  border-radius: var(--border-radius-md); font-size: 1rem; color: var(--text-color);
  transition: var(--transition-smooth);
}
.form-input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.3); background-color: rgba(255,255,255, 0.1); }
.form-input::placeholder { color: var(--neutral-gray-dark); }

.recaptcha-container-wrapper { /* Wrapper para centralizar e ajustar margem */
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.recaptcha-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: -1rem; margin-bottom: 1.5rem; }

.btn {
  display: inline-block; background-color: var(--accent-color); color: var(--bg-dark-primary);
  font-weight: 700; font-size: 1.1rem; padding: 0.9rem 2rem;
  border: none; border-radius: var(--border-radius-md); cursor: pointer;
  transition: var(--transition-smooth); text-align: center; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn:hover { background-color: var(--primary-light); color: var(--text-color); transform: translateY(-3px); box-shadow: var(--box-shadow-glow); }
.btn-block { display: block; width: 100%; }
.btn i { margin-right: 0.75rem; }
/* Estilo para o botão quando desabilitado (loading) */
.btn:disabled {
    background-color: var(--neutral-gray-dark);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn:disabled i { /* Para o spinner no botão */
    margin-right: 0.75rem;
}


.features-section { padding: 5rem 0; background-color: var(--bg-dark-secondary); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { max-width: 650px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.feature-card {
  background-color: rgba(26, 26, 46, 0.6); padding: 2rem;
  border-radius: var(--border-radius-lg); text-align: center;
  transition: var(--transition-smooth); border: 1px solid rgba(106, 17, 203, 0.2);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); border-color: var(--primary-color); }
.feature-icon {
  font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1.2rem; display: inline-block;
  background: linear-gradient(145deg, var(--primary-light), var(--secondary-color));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.feature-card h3 { margin-bottom: 0.8rem; font-size: 1.3rem; }

.cta-section {
  padding: 5rem 0; text-align: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}
.cta-section h2 { margin-bottom: 1rem; color: var(--text-color); }
.cta-section p { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn { background-color: var(--text-color); color: var(--primary-dark); font-size: 1.1rem; padding: 0.9rem 2rem; }
.cta-section .btn:hover { background-color: var(--bg-dark-secondary); color: var(--text-color); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.btn-outline {
  background: transparent !important; border: 2px solid rgba(255,255,255,0.6);
  color: var(--text-color) !important;
}
.btn-outline:hover { border-color: var(--text-color); background: rgba(255,255,255,0.1) !important; transform: translateY(-3px); }

.site-footer {
  background-color: var(--bg-dark-primary); color: var(--text-muted);
  padding: 4rem 0 2rem; text-align: center;
  border-top: 1px solid rgba(155, 89, 182, 0.1);
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-logo .logo { justify-content: center; }
.footer-logo .subtitle { font-size: 0.9rem; color: var(--neutral-gray-dark); }
.footer-socials { display: flex; gap: 1.5rem; }
.social-icon { font-size: 1.5rem; color: var(--neutral-gray-medium); }
.social-icon:hover { color: var(--primary-light); }
.footer-links { list-style: none; padding: 0; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--neutral-gray-medium); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text-color); }
.footer-joinsy-block {
  border: 1px solid rgba(106,17,203,0.3); border-radius: var(--border-radius-lg);
  padding: 1rem 2rem; text-align: center; background: rgba(106,17,203,0.08);
  margin-top: 0.5rem;
}
.footer-joinsy-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 1rem; font-weight: 700; color: var(--primary-light) !important;
  transition: var(--transition-smooth);
}
.footer-joinsy-link i:first-child { font-size: 1.2rem; color: var(--primary-color); }
.footer-joinsy-link strong { color: var(--text-color); }
.footer-ext-icon { font-size: 0.7rem; color: var(--text-muted); }
.footer-joinsy-link:hover { color: var(--text-color) !important; }
.footer-joinsy-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; margin-bottom: 0; }

.copyright { font-size: 0.85rem; margin-top: 1rem; }

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.2); width: 36px; height: 36px;
  border-radius: 50%; border-left-color: var(--accent-color);
  animation: spin 1s linear infinite; margin: 1rem auto; display: none;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.result-message {
  display: none; text-align: center; margin: 1rem 0;
  padding: 1rem; border-radius: var(--border-radius-md); font-weight: 600;
}
.success-message { color: var(--accent-color); background-color: rgba(46, 204, 113, 0.1); border: 1px solid var(--accent-color); }
.error-message { color: var(--danger-color); background-color: rgba(231, 76, 60, 0.1); border: 1px solid var(--danger-color); }

.modal-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(10, 10, 20, 0.8); backdrop-filter: blur(8px);
  z-index: 2000; justify-content: center; align-items: center; padding: 1rem;
}
.modal {
  background-color: var(--bg-dark-secondary); border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium); width: 100%; max-width: 500px;
  padding: 2rem; position: relative; border: 1px solid rgba(106, 17, 203, 0.3);
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}
.modal-title { font-size: 1.5rem; font-weight: 700; color: var(--primary-light); }
.modal-close {
  background: none; border: none; font-size: 2rem;
  color: var(--text-muted); cursor: pointer; transition: var(--transition-smooth);
}
.modal-close:hover { color: var(--text-color); }
.modal-body { margin-bottom: 1.5rem; }
.modal-body p { color: var(--text-muted); font-size: 1rem; }
.modal-body strong { color: var(--primary-light); }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { text-align: center; }
  .hero-left .subtitle { margin-left: auto; margin-right: auto; }
  .joinsy-trust-badge { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { gap: 1rem; }
  .site-nav a:not(.nav-joinsy) { display: none; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .hero-section { padding: 4rem 0 3rem; }
  .hero-left h1 { font-size: 2.2rem; }
  .lead-form-wrapper { padding: 2rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 1rem; }
  .footer-content { gap: 1rem; }
  .footer-socials { gap: 1rem; }
  .footer-links { gap: 0.5rem 1rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 576px) {
  .container { padding: 0 0.75rem; }
  .logo { font-size: 1.5rem; }
  .logo i { font-size: 1.75rem; }
  .joinsy-badge { display: none; }
  .hero-left h1 { font-size: 2rem; }
  .hero-left .subtitle { font-size: 1rem; }
  .lead-form-wrapper { margin-left: 0.5rem; margin-right: 0.5rem; }
  .btn { font-size: 1rem; padding: 0.8rem 1.5rem; }
  .cta-section .btn { font-size: 1.1rem; padding: 0.9rem 2rem;}
  .modal { padding: 1.5rem; }
  .modal-title { font-size: 1.3rem; }
  .recaptcha-container-wrapper { /* Para reCAPTCHA v2 checkbox em mobile */
      transform: scale(0.85); /* Ajusta o tamanho do widget */
      transform-origin: center;
      margin-bottom: 0.5rem; /* Reduz margem se escalado */
  }
  .recaptcha-note { margin-top: -0.5rem;}
}

/* ========================================= */
/* Páginas Legais                            */
/* ========================================= */

.legal-page {
  background-color: var(--bg-dark-primary);
  min-height: 60vh;
  padding: 4rem 0 6rem;
}
.legal-container {
  max-width: 800px;
  position: relative;
}
.legal-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(155, 89, 182, 0.15);
  border: 1px solid rgba(155, 89, 182, 0.3);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition-smooth);
  text-decoration: none !important;
}
.legal-close-btn:hover {
  background: rgba(155, 89, 182, 0.35);
  color: var(--text-color);
  transform: scale(1.1);
}
.legal-container h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}
.legal-container section {
  margin-bottom: 2rem;
}
.legal-container h2 {
  font-size: 1.3rem;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}
.legal-container h3 {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.legal-container p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}
.legal-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-container ul li {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0.25rem;
}
.legal-container a {
  color: var(--primary-light);
  text-decoration: underline;
}
.legal-container a:hover {
  color: var(--accent-color);
}

/* ========================================= */
/* Landing Pages de Nicho (SEO)             */
/* ========================================= */

.lp-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(160deg, var(--bg-dark-primary) 30%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(106,17,203,0.18), transparent 70%);
  border-radius: 50%;
}
.lp-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 820px;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--accent-color);
  background: rgba(225,240,0,0.1);
  border: 1px solid rgba(225,240,0,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.lp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.lp-hero .lp-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}
.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--accent-color);
  color: var(--bg-dark-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  text-decoration: none !important;
}
.lp-cta-btn:hover {
  background-color: var(--primary-light);
  color: var(--text-color) !important;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-glow);
}

.lp-content {
  background-color: var(--bg-dark-primary);
  padding: 4rem 0;
}
.lp-content-inner {
  max-width: 820px;
}
.lp-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--primary-light);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.lp-content h2:first-child { margin-top: 0; }
.lp-content p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; }
.lp-content ul, .lp-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.lp-content ul li, .lp-content ol li {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0.35rem;
}
.lp-content strong { color: var(--text-color); }
.lp-content .lp-highlight-box {
  background: rgba(106,17,203,0.12);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.lp-content .lp-highlight-box p { margin-bottom: 0; font-size: 0.95rem; }

.lp-faq {
  background-color: var(--bg-dark-secondary);
  padding: 4rem 0;
}
.lp-faq-inner { max-width: 820px; }
.lp-faq h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--text-color);
  margin-bottom: 2rem;
}
.lp-faq details {
  border: 1px solid rgba(106,17,203,0.25);
  border-radius: var(--border-radius-md);
  margin-bottom: 0.85rem;
  background: rgba(26,26,46,0.6);
  transition: var(--transition-smooth);
}
.lp-faq details[open] {
  border-color: rgba(106,17,203,0.5);
}
.lp-faq summary {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq .faq-body {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.lp-faq .faq-body p { margin-bottom: 0; color: var(--text-muted); }

.lp-cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.lp-cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-color);
  margin-bottom: 0.75rem;
}
.lp-cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* ========================================= */
/* CSS para o Novo Componente EntityCard     */
/* =Imagens ======================================= */

.entity-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* O padding já deve estar no .card-body do seu style.css */
  /* Se não estiver, adicione: padding: 1rem 1.25rem; */
}

.entity-card {
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  background-color: var(--bg-light, #fff);
  transition: all 0.3s ease;
  overflow: hidden;
}

.entity-card.principal {
  border-left: 4px solid var(--primary, #6A11CB);
  background-color: var(--bg-accent, #f9f9f9);
}

.entity-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
}

.entity-card-header:hover {
  background-color: var(--bg-hover, #f5f5f5);
}

.entity-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark, #333);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.entity-card-title .icon-toggle {
  font-size: 0.9rem;
  color: var(--primary, #6A11CB);
  transition: transform 0.2s ease;
}

.entity-card-body {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border-color, #e0e0e0);
  background-color: var(--bg-light, #fff);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem 1rem;
}

.info-item {
  font-size: 0.9rem;
  color: var(--text-medium, #555);
}
.info-item strong {
  color: var(--text-dark, #333);
  margin-right: 0.5rem;
  font-weight: 600;
}