/* CSS específico para a página de contato */
:root {
  --primary-color: #6366f1;
  --primary-color-dark: #4f46e5;
  --primary-color-light: #818cf8;
  --secondary-color: #8b5cf6;
  --text-primary: #f3f4f6;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --bg-body: #111827;
  --bg-card: #1f2937;
  --bg-input: #374151;
  --bg-tertiary: #2d3748;
  --border-color: #374151;
  --border-radius: 6px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --transition-normal: 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-body);
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-normal);
}

a:hover {
  color: var(--primary-color-light);
}

ul, ol {
  list-style: none;
}

/* Layout e Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  position: relative;
}

/* Header e Navegação */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background-color: rgba(17, 24, 39, 0.95) !important;
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
  background-color: var(--bg-card);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.7);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Dashboard Preview */
.dashboard-preview {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.dashboard-header {
  background-color: var(--bg-tertiary);
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-dots {
  display: flex;
  gap: 5px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.dashboard-dots span:first-child {
  background-color: #ef4444;
}

.dashboard-dots span:nth-child(2) {
  background-color: #f59e0b;
}

.dashboard-dots span:nth-child(3) {
  background-color: #10b981;
}

.dashboard-title {
  color: var(--text-primary);
  font-weight: 500;
}

.dashboard-content {
  display: flex;
  height: 300px;
}

.dashboard-sidebar {
  width: 30%;
  background-color: var(--bg-tertiary);
  border-right: 1px solid var(--border-color);
  padding: 15px 0;
}

.sidebar-item {
  padding: 10px 15px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.sidebar-item.active {
  background-color: var(--bg-input);
  color: var(--primary-color);
}

.dashboard-main {
  flex: 1;
  padding: 20px;
  background-color: var(--bg-card);
}

.dashboard-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.dashboard-card {
  flex: 1;
  background-color: var(--bg-tertiary);
  padding: 15px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--border-color);
}

.dashboard-card i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 5px;
  display: block;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white !important;
  border-color: transparent;
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary) !important;
  border-color: var(--border-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-outline:hover {
  color: white !important;
  border-color: transparent;
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Seções */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards de Produtos */
.produtos-section {
  position: relative;
  background-color: var(--bg-body);
  overflow: hidden;
}

.produtos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 70%);
  z-index: 1;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.produto-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color-light);
}

.produto-card.featured {
  border: 2px solid var(--primary-color);
  background-color: rgba(99, 102, 241, 0.05);
}

.produto-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.produto-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.produto-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.2;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.produto-card:hover .produto-icon::before {
  opacity: 0.4;
}

.produto-icon i {
  font-size: 28px;
  color: var(--primary-color);
  z-index: 2;
}

.produto-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.produto-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.produto-features {
  margin-bottom: 25px;
}

.produto-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.produto-features li i {
  color: var(--primary-color);
}

.produto-actions {
  margin-top: auto;
}

/* Vantagens Section */
.vantagens-section {
  position: relative;
  background-color: var(--bg-body);
  overflow: hidden;
}

.vantagens-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.1), transparent 70%);
  z-index: 1;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.vantagem-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.vantagem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.vantagem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.vantagem-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.vantagem-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.vantagem-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.vantagem-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Formulário de Contato */
.contact-form-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.contact-form {
  background-color: rgba(31, 41, 55, 0.7);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  margin-bottom: 20px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Estilos para os botões do formulário */
.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.form-buttons .btn {
  flex: 1;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-success::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-success:hover::before {
  left: 100%;
}

/* FAQ Section */
.pricing-section {
  position: relative;
  background-color: var(--bg-body);
  overflow: hidden;
}

.faq-container {
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: rgba(31, 41, 55, 0.7);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  color: var(--text-secondary);
}

.faq-icon i {
  transition: transform var(--transition-normal);
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  position: relative;
  background-color: var(--bg-card);
  padding: 100px 0;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  z-index: 1;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    justify-content: center;
  }
  
  .dashboard-preview {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .produtos-grid,
  .vantagens-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .form-buttons {
    flex-direction: column;
  }
  
  .form-buttons .btn {
    width: 100%;
  }
} 