/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #f4f4f5;
  background: linear-gradient(to bottom, #0c0a09, #18181b, #000000);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.dashboard-container {
  min-height: 100vh;
  background: linear-gradient(to bottom, #0c0a09, #18181b, #000000);
  padding: 2rem 0;
}

.dashboard-header {
  background: linear-gradient(135deg, #27272a, #3f3f46);
  border: 1px solid #52525b;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

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

.header-content h1 {
  color: #f4f4f5;
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
}

.dashboard-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: #a1a1aa;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.nav-link.logout {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}

.nav-link.logout:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
}

.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  background: linear-gradient(135deg, #27272a, #3f3f46);
  border: 1px solid #52525b;
  border-radius: 0.5rem;
  overflow: hidden;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #52525b;
  background: rgba(0, 0, 0, 0.2);
}

.card-header h2 {
  color: #f4f4f5;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-body {
  padding: 1.5rem;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #52525b;
}

.data-table th {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  font-weight: 600;
  font-size: 0.875rem;
}

.data-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.table-responsive {
  overflow-x: auto;
}

.admin-header {
  background: linear-gradient(135deg, #27272a, #3f3f46);
  border: 1px solid #52525b;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.admin-header h1 {
  color: #f4f4f5;
  margin: 0 0 0.5rem 0;
  font-size: 2.25rem;
  font-weight: 700;
}

.admin-header p {
  color: #a1a1aa;
  margin: 0;
  font-size: 1.125rem;
}

.admin-form {
  background: linear-gradient(135deg, #27272a, #3f3f46);
  border: 1px solid #52525b;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.admin-form h3 {
  color: #f4f4f5;
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-full {
  margin-bottom: 1.5rem;
}

.form-grid label,
.form-full label {
  display: block;
  margin-bottom: 0.5rem;
  color: #d4d4d8;
  font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-full textarea {
  width: 100%;
  padding: 0.75rem;
  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 0.375rem;
  color: white;
  font-size: 0.875rem;
}

.form-full textarea {
  resize: vertical;
  min-height: 120px;
}

.features-help {
  margin-top: 0.5rem;
  color: #71717a;
  font-size: 0.875rem;
  font-style: italic;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-table {
  background: linear-gradient(135deg, #27272a, #3f3f46);
  border: 1px solid #52525b;
  border-radius: 0.5rem;
  overflow: hidden;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #3f3f46;
}

.admin-table th {
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  font-weight: 600;
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.product-image-preview {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.375rem;
  border: 1px solid #3f3f46;
}

.admin-container {
  min-height: 100vh;
  background: linear-gradient(to bottom, #0c0a09, #18181b, #000000);
  padding: 2rem 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.btn-primary {
  background: #10b981;
  color: #000;
  border-color: #10b981;
}

.btn-primary:hover {
  background: #059669;
  border-color: #059669;
}

.btn-outline {
  background: transparent;
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.4);
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
}

.btn-logout {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}

.btn-logout:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.btn-danger {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}

.btn-danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

.btn-warning {
  background: #d97706;
  color: white;
  border-color: #d97706;
}

.btn-warning:hover {
  background: #b45309;
  border-color: #b45309;
}

.btn-secondary {
  background: #6b7280;
  color: white;
  border-color: #6b7280;
}

.btn-secondary:hover {
  background: #4b5563;
  border-color: #4b5563;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-green {
  background: rgba(16, 185, 129, 0.9);
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.badge-dark {
  background: rgba(0, 0, 0, 0.6);
  color: #d4d4d8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  background: linear-gradient(to bottom, #27272a, rgba(24, 24, 27, 0.6));
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  overflow: hidden;
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-header h3 {
  color: #6ee7b7;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
}

.separator {
  height: 1px;
  background: #3f3f46;
  margin: 1rem 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.logo-image {
  height: 2.5rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #a1a1aa;
}

.nav a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.nav a:hover {
  color: #fff;
}

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

.header-actions .btn-outline {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-actions .btn-outline {
    display: inline-flex;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  mask-image: radial-gradient(60% 60% at 50% 10%, black, transparent);
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 75rem;
  height: 37.5rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  filter: blur(3rem);
}

.hero-content {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text .badge {
  align-self: flex-start;
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-text .highlight {
  display: block;
  color: #34d399;
}

.hero-text p {
  color: #a1a1aa;
  font-size: 1.125rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  color: #71717a;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature .icon {
  color: #34d399;
  width: 1.25rem;
  height: 1.25rem;
}

.hero-card {
  position: relative;
}

.benefits-content p {
  color: #a1a1aa;
  margin-bottom: 1rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  list-style: none;
  font-size: 0.875rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a1a1aa;
}

.benefits-list .icon {
  color: #34d399;
}

.hero-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.hero-cta-text {
  color: #a1a1aa;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.hero-form {
  display: grid;
  gap: 0.75rem;
}

.hero-form input {
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 0.375rem;
  padding: 0.75rem;
  color: white;
  font-size: 0.875rem;
}

.hero-form input::placeholder {
  color: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 5rem;
  }

  .hero-text h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Brands Section */
.brands-section {
  padding: 3rem 0;
}

.brands-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.brands-text h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.brands-text p {
  color: #71717a;
  margin-bottom: 1.25rem;
}

.brands-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-tag {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: #d4d4d8;
}

.brands-image {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.brands-image img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .brands-content {
    grid-template-columns: 1fr 1.2fr;
  }

  .brands-text h2 {
    font-size: 2.25rem;
  }
}

/* Products Section */
.products-section {
  padding: 4rem 0 6rem;
  position: relative;
}

.products-bg {
  position: absolute;
  inset-x: 0;
  top: 0;
  height: 12rem;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.1), transparent);
  z-index: -1;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
}

.section-header p {
  color: #71717a;
  margin-top: 0.5rem;
}

.filters-card {
  background: rgba(39, 39, 42, 0.6);
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.filters-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.875rem;
  color: #71717a;
}

.filter-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid #52525b;
  background: transparent;
  color: #d4d4d8;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
  background: #10b981;
  color: #000;
  border-color: #10b981;
}

.clear-filters {
  margin-left: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: linear-gradient(to bottom, #27272a, #18181b);
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.product-badges .badge-green {
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  border: 2px solid rgba(113, 113, 122, 0.8);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-badges .badge-dark {
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  border: 2px solid rgba(113, 113, 122, 0.8);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-content {
  padding: 1.25rem;
}

.product-content h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #a1a1aa;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features .icon {
  color: #34d399;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-compatibility {
  color: #71717a;
  font-size: 0.75rem;
}

.no-results {
  text-align: center;
  color: #71717a;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .filters-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Differentials Section */
.differentials-section {
  padding: 4rem 0 6rem;
}

.differentials-grid {
  display: grid;
  gap: 1.5rem;
}

.differential-card {
  background: rgba(39, 39, 42, 0.6);
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.differential-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.differential-header .icon {
  color: #34d399;
  width: 1.5rem;
  height: 1.5rem;
}

.differential-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.differential-card p {
  color: #a1a1aa;
}

@media (min-width: 1024px) {
  .differentials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cases Section */
.cases-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, #0c0a09, #000);
}

.cases-grid {
  display: grid;
  gap: 1.5rem;
}

.case-card {
  background: linear-gradient(to bottom, #27272a, #18181b);
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.case-kpi {
  font-size: 2.5rem;
  font-weight: 700;
  color: #34d399;
  margin-bottom: 0.5rem;
}

.case-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.case-detail {
  color: #71717a;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0 6rem;
}

.contact-content {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-text h3 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-text p {
  color: #a1a1aa;
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

.faq-accordion {
  width: 100%;
}

.faq-section h4 {
  color: #f4f4f5;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.accordion-item {
  border: 1px solid #3f3f46;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.accordion-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #f4f4f5;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.accordion-trigger:hover {
  color: #34d399;
  background: rgba(52, 211, 153, 0.05);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.accordion-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.accordion-trigger:hover .accordion-icon {
  background: rgba(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 0.4);
}

.accordion-icon .icon {
  width: 1rem;
  height: 1rem;
  color: #34d399;
  transition: transform 0.3s ease;
}

.accordion-trigger.active .accordion-icon .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 300px;
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: #a1a1aa;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-info {
  text-align: center;
}

.contact-info p {
  color: #a1a1aa;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-benefits {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contact-benefit:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(52, 211, 153, 0.3);
  transform: translateY(-2px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.benefit-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #34d399;
}

.benefit-content h4 {
  color: #f4f4f5;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.contact-cta {
  margin-top: 1.5rem;
}

.contact-actions {
  margin-top: 2rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 0.75rem;
  color: #34d399;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-highlight .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #34d399;
}

@media (min-width: 640px) {
  .action-buttons {
    flex-direction: row;
    gap: 1rem;
  }
  
  .action-buttons .btn {
    flex: 1;
  }
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 0.375rem;
  padding: 0.75rem;
  color: white;
  font-size: 0.875rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #52525b;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-text h3 {
    font-size: 2.5rem;
  }
}

/* Video Section */
.video-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.02));
  border-top: 1px solid rgba(52, 211, 153, 0.1);
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}

.video-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.video-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f4f4f5;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.video-text p {
  font-size: 1.1rem;
  color: #a1a1aa;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #10b981, #34d399);
  border: none;
  border-radius: 0.75rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.video-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669, #10b981);
}

.video-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.video-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-thumbnail img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: rgba(16, 185, 129, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
  background: rgba(16, 185, 129, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  margin-left: 0.25rem;
}

@media (max-width: 1024px) {
  .video-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .video-section {
    padding: 3rem 0;
  }
  
  .video-text h2 {
    font-size: 1.75rem;
  }
  
  .video-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: sticky;
  bottom: 0.75rem;
  z-index: 50;
}

.sticky-cta-content {
  border-radius: 1rem;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: linear-gradient(to right, rgba(16, 185, 129, 0.15), transparent);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  gap: 1rem;
}

.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.sticky-cta-label {
  color: #6ee7b7;
  display: none;
}

.sticky-cta-text span:last-child {
  color: #a1a1aa;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-cta-actions .btn-outline {
  display: none;
}

@media (min-width: 640px) {
  .sticky-cta-label {
    display: inline;
  }

  .sticky-cta-actions .btn-outline {
    display: inline-flex;
  }
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: #71717a;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-image {
  height: 2rem;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-nav a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #6ee7b7;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

/* Modal de Vídeo */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal {
  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 1rem;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #3f3f46;
  background: #27272a;
}

.video-modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f4f4f5;
  margin: 0;
}

.video-modal-close {
  background: none;
  border: none;
  color: #71717a;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-close:hover {
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.1);
}

.video-modal-close .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.video-modal-content {
  padding: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  .video-modal {
    width: 95%;
    max-width: none;
  }
  
  .video-modal-header {
    padding: 1rem 1.5rem;
  }
  
  .video-modal-content {
    padding: 1rem;
  }
  
  .video-modal-header h3 {
    font-size: 1.1rem;
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}

.modal-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: #71717a;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #fff;
}

.modal-content {
  padding: 1.5rem;
}

.modal-form {
  display: grid;
  gap: 0.75rem;
}

.modal-form input,
.modal-form textarea {
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 0.375rem;
  padding: 0.75rem;
  color: white;
  font-size: 0.875rem;
  font-family: inherit;
  resize: vertical;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: white;
}

/* Toast */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 24rem;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.toast.active {
  transform: translateX(0);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  color: #a1a1aa;
  font-size: 0.875rem;
}

.toast-close {
  background: none;
  border: none;
  color: #71717a;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  color: #fff;
}

.toast.success {
  border-color: #10b981;
}

.toast.error {
  border-color: #ef4444;
}

/* Responsividade adicional */
@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header {
    flex-direction: column;
    align-items: start;
  }

  .sticky-cta-content {
    padding: 0.5rem 1rem;
  }

  .modal {
    width: 95%;
    margin: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .brands-tags {
    justify-content: flex-start;
  }
}

/* Melhorias para B2B */
.hero-text .highlight {
  background: linear-gradient(135deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Melhorias nos cards de produtos */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

/* Melhorias nos diferenciais */
.differential-card {
  position: relative;
  overflow: hidden;
}

.differential-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #10b981 transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.differential-card:hover::after {
  opacity: 1;
}

/* Melhorias no sticky CTA */
.sticky-cta-content {
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

/* Melhorias nos formulários */
.hero-form input:focus,
.contact-form input:focus,
.modal-form input:focus,
.hero-form textarea:focus,
.contact-form textarea:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Melhorias nos botões */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Melhorias na navegação */
.nav a {
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Melhorias nos filtros */
.filter-btn {
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.filter-btn:hover::before {
  width: 100%;
  height: 100%;
}

.filter-btn.active::before {
  background: rgba(16, 185, 129, 0.2);
}

/* Melhorias no accordion */
.accordion-trigger {
  position: relative;
}

.accordion-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.accordion-trigger:hover::after {
  width: 100%;
}

/* Melhorias no modal */
.modal {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Melhorias no toast */
.toast {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card,
.differential-card,
.case-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Melhorias para telas grandes */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-text h1 {
    font-size: 4rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== ESTILOS PARA PÁGINA DE REGISTRO DE USUÁRIOS ===== */

/* Estatísticas de usuários */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, #27272a, #3f3f46);
  border: 1px solid #52525b;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: #10b981;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 1.25rem;
}

.stat-icon.active {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.stat-icon.admin {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.stat-icon.manager {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

.stat-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f4f4f5;
  margin: 0;
}

.stat-content p {
  color: #a1a1aa;
  margin: 0;
  font-size: 0.875rem;
}

/* Formulário de registro */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #f4f4f5;
  font-size: 0.875rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 1px solid #52525b;
  border-radius: 0.375rem;
  background: #27272a;
  color: #f4f4f5;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder {
  color: #71717a;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
}

/* Tabela de usuários */
.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1rem;
}

.username {
  font-weight: 600;
  color: #f4f4f5;
}

/* Badges específicos para usuários */
.badge-admin {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-manager {
  background: rgba(168, 85, 247, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-user {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Linhas inativas */
.data-table tr.inactive {
  opacity: 0.6;
}

.data-table tr.inactive td {
  color: #71717a;
}

/* Estado vazio */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #71717a;
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state p {
  font-size: 1.125rem;
  margin: 0;
}

/* Responsividade para estatísticas */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-content h3 {
    font-size: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* Estilos para a página de alteração de senha */
.security-tips {
  display: grid;
  gap: 1.5rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 0.5rem;
}

.tip-item i {
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.tip-item h4 {
  margin: 0 0 0.5rem 0;
  color: #18181b;
  font-size: 1rem;
}

.tip-item p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-help {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.user-details h3 {
  margin: 0 0 0.5rem 0;
  color: #18181b;
  font-size: 1.25rem;
}

.user-details p {
  margin: 0 0 0.5rem 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.user-details p:last-child {
  margin-bottom: 0;
}

/* Estilos para o modal de detalhes do lead */
.lead-details {
    color: #d4d4d8;
    max-width: 100%;
}

/* Header do lead */
.lead-header {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #4b5563;
}

.lead-company h2 {
    color: #f9fafb;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-align: center;
}

.lead-meta {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.status-badge, .priority-badge, .source-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-novo { background: #1e40af; color: white; }
.status-contatado { background: #059669; color: white; }
.status-proposta_enviada { background: #d97706; color: white; }
.status-convertido { background: #dc2626; color: white; }
.status-perdido { background: #6b7280; color: white; }

.priority-baixa { background: #059669; color: white; }
.priority-media { background: #d97706; color: white; }
.priority-alta { background: #dc2626; color: white; }

.source-badge {
    background: #7c3aed;
    color: white;
}

/* Seções do lead */
.lead-section {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.lead-section:last-child {
    margin-bottom: 0;
}

.lead-section h3 {
    color: #10b981;
    margin: 0 0 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lead-section h3 i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Seção de contato */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item label {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item span {
    color: #f9fafb;
    font-weight: 500;
}

.contact-item a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #34d399;
    text-decoration: underline;
}

/* Seção comercial */
.commercial-item {
    margin-bottom: 1rem;
}

.commercial-item:last-child {
    margin-bottom: 0;
}

.commercial-item label {
    display: block;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.volume-value {
    color: #fbbf24;
    font-weight: 600;
    font-size: 1.125rem;
}

.message-content {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #e5e7eb;
    line-height: 1.6;
    font-style: italic;
}

/* Seção de acompanhamento */
.tracking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tracking-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tracking-item label {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tracking-item span {
    color: #f9fafb;
    font-weight: 500;
}

/* Seção de observações */
.notes-content {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #e5e7eb;
    line-height: 1.6;
    font-style: italic;
}

/* Seção de atividades */
.activities-timeline {
    position: relative;
}

.activities-timeline::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #10b981, #374151);
    border-radius: 1px;
}

.activity-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    z-index: 1;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.activity-type {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.activity-date {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
}

.activity-description {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.activity-author {
    color: #9ca3af;
    font-size: 0.75rem;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .lead-company h2 {
        font-size: 1.25rem;
    }
    
    .lead-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid,
    .tracking-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .activity-icon {
        align-self: flex-start;
    }
}

/* Estilos para o modal de edição */
.edit-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.edit-form .form-group {
    margin-bottom: 0;
}

.edit-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4d4d8;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.edit-form label i {
    color: #10b981;
    font-size: 0.875rem;
}

.edit-form input,
.edit-form select,
.edit-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: #1f2937;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: #f9fafb;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.edit-form input:focus,
.edit-form select:focus,
.edit-form textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.edit-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4b5563;
}

.form-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.form-actions .btn i {
    font-size: 0.875rem;
}
