/* Design System - ConexBr */
/* Todas as cores em HSL */

:root {
  --background: 0 0% 100%;
  --foreground: 210 20% 15%;

  --card: 0 0% 100%;
  --card-foreground: 210 20% 15%;

  --popover: 0 0% 100%;
  --popover-foreground: 210 20% 15%;

  /* Brazilian green inspired primary */
  --primary: 152 65% 35%;
  --primary-foreground: 0 0% 100%;

  /* Warm yellow accent */
  --secondary: 48 95% 53%;
  --secondary-foreground: 210 20% 15%;

  --muted: 210 25% 96%;
  --muted-foreground: 210 15% 45%;

  /* Brazilian blue accent */
  --accent: 214 85% 45%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;

  --border: 210 20% 88%;
  --input: 210 20% 88%;
  --ring: 152 65% 35%;

  --radius: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Texto justificado em toda a página */
main p,
.lp-hero-content p,
.lp-faq-answer,
.lp-feature-card p {
  text-align: justify;
}

/* Manter títulos e textos específicos centralizados */
.lp-section-title,
.lp-section-subtitle,
.lp-hero-content h1,
.lp-apps-content h2,
.lp-apps-content p {
  text-align: center;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsla(var(--background), 0.95);
  backdrop-filter: blur(8px);
  overflow: visible;
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-right {
  display: flex;
  align-items: center;
  overflow: visible;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  overflow: visible;
}

.lp-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  border-radius: 4px;
  transition: transform 0.2s, opacity 0.2s;
  line-height: 0;
}

.lp-lang-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.lp-lang-btn svg {
  border-radius: 2px;
}

.lp-header-sep {
  width: 1px;
  height: 1.25rem;
  background: hsl(var(--border));
  margin: 0 0.25rem;
}

/* Dropdown de idiomas (igual ao site principal) */
.lp-language-dropdown {
  position: relative;
  overflow: visible;
}

.lp-language-dropdown .dropdown-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  min-width: 9rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background-color: hsl(var(--popover));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.lp-language-dropdown .dropdown-menu.show {
  display: block;
}

.lp-language-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lp-language-dropdown .dropdown-item:hover {
  background-color: hsl(var(--muted));
  color: hsl(var(--primary));
}

.lp-lang-toggle.language-dropdown-toggle {
  cursor: pointer;
  font: inherit;
}

.lp-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.lp-header-link:hover {
  background: hsl(var(--muted));
  color: hsl(var(--primary));
}

.lp-header-link .icon {
  width: 18px;
  height: 18px;
}

/* Botões de ícone padronizados (idioma, site, apps) - mesma borda e estilo */
.lp-header-icon-btn {
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.35rem;
  border: 2px solid hsl(var(--primary));
  background-color: hsla(var(--primary), 0.1);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lp-header-icon-btn:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.lp-header-icon-btn .icon {
  width: 20px;
  height: 20px;
}

.lp-header-icon-btn .language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-header-icon-btn img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lp-header-actions {
    gap: 0.35rem;
  }
  
  .lp-header-icon-btn img {
    width: 18px;
    height: 18px;
  }
}

.header-apps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-app-link {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}

.header-app-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.header-app-icon {
  height: 32px;
  width: auto;
}

@media (max-width: 768px) {
  .header-app-icon {
    height: 28px;
  }
  
  .header-apps {
    gap: 0.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.logo-image {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Footer */
footer {
  background-color: hsl(var(--muted));
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p .footer-brand {
  margin-bottom: 0;
  display: inline;
}

.footer-brand-text-primary {
  color: #000;
}

.footer-brand-text-accent {
  color: hsl(var(--accent));
}

.footer-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

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

.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--foreground));
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-contact-item {
    justify-content: flex-start;
  }
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
}

.footer-contact-item a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: hsl(var(--foreground));
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  background-color: hsl(152, 65%, 28%);
  color: hsl(var(--primary-foreground));
}

.footer-social a.accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.footer-social a.accent:hover {
  background-color: hsl(214, 85%, 38%);
  color: hsl(var(--accent-foreground));
}

.footer-social a.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
}

.footer-social a.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  opacity: 0.9;
  color: white;
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Landing Page Styles */
.lp-hero {
  background: white;
  padding: 6rem 0 4rem;
  position: relative;
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: hsl(var(--foreground));
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.lp-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.lp-hero-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lp-hero-cta {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: hsl(var(--primary));
}

/* Acordeons do Hero */
.lp-hero-accordions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}

.lp-hero-accordion-item {
  width: 100%;
  background: hsl(var(--card));
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 2px 8px rgba(0,0,0,0.5) !important;
  overflow: hidden;
  transition: box-shadow 0.2s;
  margin-bottom:1.5rem;
}

.lp-hero-accordion-item:hover {
  box-shadow: 0 18px 38px rgba(0,0,0,0.45), inset 0 2px 8px rgba(0,0,0,0.5) !important;
}

.lp-hero-accordion-btn {
  width: 100%;
  padding: 2rem;
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  box-sizing: border-box;
}

.lp-hero-accordion-btn:hover {
  transform: translateY(-2px);
}

.lp-hero-accordion-header {
  width: 100%;
  flex: 1;
  text-align: center;
}

.lp-hero-accordion-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: hsl(var(--muted-foreground));
}

.lp-hero-accordion-item.active .lp-hero-accordion-icon {
  transform: rotate(180deg);
}

.lp-hero-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.lp-hero-accordion-item.active .lp-hero-accordion-content {
  max-height: 10000px;
  padding: 0 2rem 2rem 2rem;
}

.lp-hero-accordion-intro {
  text-align: justify;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
}

.lp-hero-accordion-content .lp-empresas-text,
.lp-hero-accordion-content .lp-informacoes-text,
.lp-hero-accordion-content .lp-classificados-text {
  text-align: justify;
  width: 100%;
  margin: 0;
  padding: 0;
}

.lp-hero-accordion-content .lp-empresas-text p,
.lp-hero-accordion-content .lp-informacoes-text p,
.lp-hero-accordion-content .lp-classificados-text p {
  text-align: justify;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lp-hero-accordion-content .lp-empresas-text p:last-child,
.lp-hero-accordion-content .lp-informacoes-text p:last-child,
.lp-hero-accordion-content .lp-classificados-text p:last-child {
  margin-bottom: 0;
}

/* Sub-acordeons dentro do ConexBR */
.lp-hero-sub-accordions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lp-hero-sub-accordion-item {
  background: hsl(var(--muted));
  border-radius: 0.75rem;
  overflow: hidden;
}

.lp-hero-sub-accordion-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: background 0.2s;
}

.lp-hero-sub-accordion-btn:hover {
  background: hsla(var(--muted-foreground), 0.1);
}

.lp-hero-sub-accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: hsl(var(--muted-foreground));
}

.lp-hero-sub-accordion-item.active .lp-hero-sub-accordion-icon {
  transform: rotate(180deg);
}

.lp-hero-sub-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.lp-hero-sub-accordion-item.active .lp-hero-sub-accordion-content {
  max-height: 10000px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  background: #fff!important;
}

.lp-hero-sub-accordion-call {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.lp-hero-btn-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.lp-hero-btn-subtitle {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Botão Empresas */
.lp-hero-accordion-btn.lp-hero-btn-empresas {
  width: 100%;
  background: #FFCC29;
}

.lp-hero-accordion-btn.lp-hero-btn-empresas .lp-hero-btn-title {
  color: #00A859;
}

.lp-hero-accordion-btn.lp-hero-btn-empresas .lp-hero-btn-subtitle {
  color: #2B5798;
}

/* Botão Informações */
.lp-hero-accordion-btn.lp-hero-btn-informacoes {
  width: 100%;
  background: #2B5798;
}

.lp-hero-accordion-btn.lp-hero-btn-informacoes .lp-hero-btn-title {
  color: white;
}

.lp-hero-accordion-btn.lp-hero-btn-informacoes .lp-hero-btn-subtitle {
  color: #f4ff00;
}

/* Botão Classificados */
.lp-hero-accordion-btn.lp-hero-btn-classificados {
  width: 100%;
  background: #00A859;
}

.lp-hero-accordion-btn.lp-hero-btn-classificados .lp-hero-btn-title {
  color: #f4ff00;
}

.lp-hero-accordion-btn.lp-hero-btn-classificados .lp-hero-btn-subtitle {
  color: #fff;
}

/* Botão ConexBR */
.lp-hero-accordion-btn.lp-hero-btn-conexbr {
  width: 100%;
  background: white;
}

.lp-hero-accordion-btn.lp-hero-btn-conexbr .lp-hero-btn-conex {
  color: hsl(214, 85%, 45%);
}

.lp-hero-accordion-btn.lp-hero-btn-conexbr .lp-hero-btn-br {
  color: hsl(0, 0%, 0%);
}

.lp-hero-accordion-btn.lp-hero-btn-conexbr .lp-hero-btn-subtitle {
  color: #666666;
}

.lp-section {
  padding: 4rem 0;
}

.lp-section-alt {
  background-color: hsl(var(--muted));
}

/* Seção Cadastro como Empresa */
.lp-section-empresa {
  background: linear-gradient(135deg, hsl(152, 65%, 35%), hsl(214, 85%, 45%));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.lp-section-empresa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.lp-empresa-button-container {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.lp-empresa-button {
  padding: 1.5rem 3rem;
  background: white;
  border: 2px solid #000;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lp-empresa-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.lp-empresa-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.lp-empresa-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid hsl(var(--border));
}

.lp-empresa-price-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin: 0;
}

.lp-cta-pagamento {
  margin: 1rem 0 0.75rem;
  font-size: 1rem;
  color: hsl(var(--foreground));
}

.lp-flags-pagamento {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.lp-flags-pagamento .lp-flag-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 140px;
  min-width: 140px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 2px solid hsl(var(--border));
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: border-color 0.2s, background 0.2s;
}

.lp-flags-pagamento .lp-flag-link:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--muted));
}

.lp-flags-pagamento .lp-flag-link span {
  font-size: 0.85rem;
  font-weight: 500;
}

.lp-flags-pagamento .lp-flag-link svg {
  display: block;
  width: 32px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.lp-codigo-box {
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  display: inline-block;
}

.lp-codigo-valor {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: hsl(var(--primary));
}

.lp-codigo-instrucoes,
.lp-codigo-email {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
}

.lp-empresa-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  text-align: center;
}

.lp-empresa-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
  color: hsl(var(--muted-foreground));
}

.lp-empresa-steps {
  margin-bottom: 2rem;
}

.lp-empresa-steps ol {
  padding-left: 2rem;
  line-height: 1.8;
}

.lp-empresa-steps li {
  margin-bottom: 1.5rem;
  text-align: justify;
  font-size: 1.125rem;
}

.lp-empresa-steps li:last-child {
  margin-bottom: 0;
}

.lp-empresa-flags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.lp-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  border: 1px solid rgba(0,0,0,0.1);
}

.lp-flag:hover {
  transform: scale(1.1);
}

.lp-empresa-platform-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.lp-empresa-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #000;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  font-weight: 500;
  font-size: 0.875rem;
}

.lp-empresa-platform-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.lp-empresa-platform-link img {
  height: 30px;
  width: auto;
}

.lp-empresa-platform-link-site {
  background: white;
  border: 2px solid #000;
  color: #000;
}

.lp-empresa-platform-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.lp-empresa-final {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: justify;
  color: hsl(var(--muted-foreground));
  padding-top: 1.5rem;
  border-top: 2px solid hsl(var(--border));
  margin-top: 2rem;
}

/* FAQ dentro da seção de cadastro de empresa */
.lp-empresa-faq {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid hsl(var(--border));
}

.lp-empresa-faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
  text-align: center;
}

.lp-empresa-faq .lp-faq-container {
  max-width: 100%;
}

.lp-empresa-video-placeholder {
  margin-top: 1rem;
}

/* Seção Empresas */
.lp-section-empresas {
  background-color: white;
  padding: 4rem 0;
}

.lp-empresas-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-empresas-button-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.lp-empresas-button-container .lp-hero-btn {
  width: 100%;
}

.lp-empresas-text {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.lp-empresas-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.lp-empresas-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lp-hero-accordion-item2 {margin-bottom: .5rem!important;}
  .lp-section-empresas {
    padding: 3rem 0;
  }
  
  .lp-empresas-button-container .lp-hero-btn {
    padding: 1.25rem;
    max-width: 100%;
  }
  
  .lp-empresas-text p {
    font-size: 1rem;
  }
}

/* Seção Informações */
.lp-section-informacoes {
  background-color: white;
  padding: 4rem 0;
}

.lp-informacoes-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-informacoes-button-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.lp-informacoes-button-container .lp-hero-btn {
  width: 100%;
}

.lp-informacoes-text {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.lp-informacoes-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: hsl(var(--foreground));
}

@media (max-width: 768px) {
  .lp-section-informacoes {
    padding: 3rem 0;
  }
  
  .lp-informacoes-button-container .lp-hero-btn {
    padding: 1.25rem;
  }
  
  .lp-informacoes-text p {
    font-size: 1rem;
  }
}

/* Seção Classificados */
.lp-section-classificados {
  background-color: white;
  padding: 4rem 0;
}

.lp-classificados-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-classificados-button-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.lp-classificados-button-container .lp-hero-btn {
  width: 100%;
}

.lp-classificados-text {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

.lp-classificados-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.lp-classificados-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lp-section-classificados {
    padding: 3rem 0;
  }
  
  .lp-classificados-button-container .lp-hero-btn {
    padding: 1.25rem;
  }
  
  .lp-classificados-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .lp-section-empresa {
    padding: 3rem 0;
  }
  
  .lp-empresa-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .lp-empresa-button {
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
  }
  
  .lp-empresa-price-title {
    font-size: 2rem;
  }
  
  .lp-empresa-title {
    font-size: 1.75rem;
  }
  
  .lp-empresa-steps li {
    font-size: 1rem;
  }
  
  .lp-empresa-platform-links {
    flex-direction: column;
  }
  
  .lp-empresa-platform-link {
    width: 100%;
    max-width: 250px;
  }
  
  .lp-flag {
    font-size: 2.5rem;
  }
}

.lp-section-cadastro {
  padding: 3rem 0;
}

.lp-cadastro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-cadastro-intro,
.lp-cadastro-call {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.lp-cadastro-call {
  margin-bottom: 2.5rem;
}

/* Links para Plataformas */
.lp-platform-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.lp-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  font-weight: 500;
}

.lp-platform-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.lp-platform-link img {
  height: 40px;
  width: auto;
}

.lp-platform-link-site {
  background: white;
  border: 2px solid #000;
  color: #000;
}

.lp-platform-link-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Passos de Cadastro */
.lp-cadastro-steps {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lp-cadastro-steps ul {
  list-style-type: disc;
  padding-left: 2rem;
  line-height: 1.8;
}

.lp-cadastro-steps li {
  margin-bottom: 1rem;
  text-align: justify;
}

.lp-cadastro-steps li:last-child {
  margin-bottom: 0;
}

/* Redes Sociais */
.lp-social-call {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.lp-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lp-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  color: white;
  transition: transform 0.2s, opacity 0.2s;
}

.lp-social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.lp-social-instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.lp-social-facebook {
  background: #1877F2;
}

.lp-social-link .icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 768px) {
  .lp-section-cadastro {
    padding: 2rem 0;
  }
  
  .lp-cadastro-intro,
  .lp-cadastro-call {
    font-size: 1rem;
  }
  
  .lp-platform-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .lp-platform-link {
    width: 100%;
    max-width: 300px;
  }
  
  .lp-platform-link img {
    height: 35px;
  }
  
  .lp-cadastro-steps {
    padding: 0 1rem;
  }
  
  .lp-social-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .lp-social-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

.lp-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: hsl(var(--foreground));
}

.lp-section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lp-feature-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lp-feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.lp-feature-icon.empresas {
  background: hsla(48, 95%, 53%, 0.15);
  color: hsl(48, 95%, 48%);
}

.lp-feature-icon.informacoes {
  background: hsla(214, 85%, 45%, 0.15);
  color: hsl(214, 85%, 45%);
}

.lp-feature-icon.classificados {
  background: hsla(152, 65%, 35%, 0.15);
  color: hsl(152, 65%, 35%);
}

.lp-feature-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.lp-feature-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  font-size: 1rem;
}

.lp-video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lp-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lp-apps-section {
  background: linear-gradient(135deg, hsl(152, 65%, 35%), hsl(214, 85%, 45%));
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.lp-apps-content {
  max-width: 700px;
  margin: 0 auto;
}

.lp-apps-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.lp-apps-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.lp-app-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.lp-app-buttons a {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}

.lp-app-buttons a:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.lp-app-buttons img {
  height: 60px;
  width: auto;
}

@media (max-width: 768px) {
  .lp-hero {
    padding: 2rem 0 3rem;
  }
  
  .lp-hero-content h1 {
    font-size: 2rem;
  }
  
  .lp-hero-content p {
    font-size: 1.125rem;
  }
  
  .lp-hero-accordions {
    gap: 1rem;
  }
  
  .lp-hero-accordion-btn {
    padding: 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .lp-hero-accordion-header {
    width: 100%;
  }
  
  .lp-hero-accordion-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .lp-hero-accordion-content {
    padding: 0 1.25rem;
  }
  
  .lp-hero-accordion-item.active .lp-hero-accordion-content {
    padding: 0 .5rem .5rem .5rem;
  }
  
  .lp-hero-btn-title {
    font-size: 1.75rem;
    line-height: 1.1em;
  }
  
  .lp-hero-btn-subtitle {
    font-size: 1rem;
  }
  
  .lp-hero-accordion-intro {
    font-size: 1rem;
  }
  
  .lp-hero-sub-accordion-btn {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
  
  .lp-hero-sub-accordion-content {
    padding: .5rem 0rem!important;
    background:#fff!important;
  }
  
  .lp-hero-sub-accordion-item.active .lp-hero-sub-accordion-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  
  .lp-section-title {
    font-size: 2rem;
  }
  
  .lp-section {
    padding: 3rem 0;
  }
  
  .lp-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .lp-app-buttons {
    flex-direction: column;
  }
  
  .lp-app-buttons img {
    height: 50px;
  }
}

/* FAQ Styles */
.lp-faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lp-faq-item {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.lp-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lp-faq-question {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: background 0.2s;
}

.lp-faq-question:hover {
  background: hsla(var(--muted-foreground), 0.1);
  color: hsl(var(--foreground));
}

/* Estilo dos botões da FAQ dentro de lp-empresa-faq (igual aos sub-acordeons, mas com fundo branco e shadow) */
.lp-empresa-faq .lp-faq-item {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: none!important;
  transition: box-shadow 0.2s;
}

.lp-empresa-faq .lp-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lp-empresa-faq .lp-faq-item:last-child {
  margin-bottom: 0;
}

.lp-empresa-faq .lp-faq-question {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: rgb(242, 245, 247);
  border-radius: 0.75rem;
  transition: background 0.2s;
  color: hsl(var(--foreground));
  box-shadow: none!important;
}

.lp-empresa-faq .lp-faq-question:hover {
  background: hsla(var(--muted-foreground), 0.1);
  color: hsl(var(--foreground));
}

.lp-empresa-faq .lp-faq-answer {
  padding: 0 .5rem;
}

.lp-empresa-faq .lp-faq-item.active .lp-faq-answer {
  padding: 0 .5rem .5rem .5rem;
}

.lp-faq-question span {
  flex: 1;
}

.lp-faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: hsl(var(--muted-foreground));
}

.lp-faq-item.active .lp-faq-icon {
  transform: rotate(180deg);
  color: hsl(var(--primary));
}

.lp-faq-answer {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

.lp-faq-item.active .lp-faq-answer {
  max-height: 2000px;
  padding: 1rem 0 0 0;
}

.lp-faq-answer p {
  margin-bottom: 1rem;
}

.lp-faq-answer p:last-child {
  margin-bottom: 0;
}

.lp-faq-answer ul,
.lp-faq-answer ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.lp-faq-answer ul {
  list-style-type: disc;
}

.lp-faq-answer ol {
  list-style-type: decimal;
}

.lp-faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.lp-section-alt .lp-faq-item {
  padding: 1rem;
}
@media (max-width: 768px) {
  .lp-faq-item {
    padding: 0;
  }
  .lp-section-alt .lp-faq-item {
    padding: 1rem;
  }
  
  .lp-faq-question {
    font-size: 1.25rem;
    gap: 0.75rem;
  }
  
  .lp-faq-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .lp-faq-answer {
    font-size: 0.9375rem;
  }
}