/* 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: #1f2937;
  background-color: #ffffff;
}

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

/* Utilitários */
.text-primary {
  color: #ce3a7e;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.check-icon {
  width: 1rem;
  height: 1rem;
}

.success-icon {
  width: 2rem;
  height: 2rem;
  color: #10b981;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: #ce3a7e;
  color: white;
}

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

.btn-outline {
  background-color: transparent;
  color: #ce3a7e;
  border: 1px solid #ce3a7e;
}

.btn-outline:hover {
  background-color: #ce3a7e;
  color: white;
}

.btn-white {
  background-color: white;
  color: #ce3a7e;
}

.btn-white:hover {
  background-color: #f9fafb;
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline-white:hover {
  background-color: white;
  color: #ce3a7e;
}

.btn-destructive {
  background-color: #ef4444;
  color: white;
}

.btn-destructive:hover {
  background-color: #dc2626;
}

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

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(206, 58, 126, 0.1);
  color: #ce3a7e;
  border: 1px solid rgba(206, 58, 126, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: none !important;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(12px) !important;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

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

.nav-link {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #ce3a7e;
  outline: none;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ce3a7e;
  border-radius: 2px;
}

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

/* Hero */
.hero {
  padding: 7rem 0;
  background: linear-gradient(135deg, rgba(20,20,30,0.90) 60%, rgba(206,58,126,0.45) 100%), url('public/images/conceito-de-compras-line (1).jpg') center center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  z-index: 1;
}

.hero > .container, .hero-content, .hero-text, .hero-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ce3a7e;
}

.stat-label {
  font-size: 0.875rem;
  color: #fff;
}

.hero-card {
  position: relative;
}

.gradient-card {
  background: linear-gradient(135deg, #ce3a7e 0%, #b8326e 100%);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
}

.hero-icon {
  width: 4rem;
  height: 4rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.gradient-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gradient-card p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero {
    padding: 9rem 0;
  }
}

/* Card */
.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ce3a7e;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 1rem 0;
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Services */
.services {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(206, 58, 126, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ce3a7e;
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' fill='none' stroke='%23CE3A7E' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

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

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

/* About */
.about {
  padding: 5rem 0;
  background: #181828 !important;
}

.about, .about * {
  color: #fff !important;
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
}

.about .feature-icon {
  background: #ce3a7e !important;
  color: #fff !important;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  background-color: rgba(206, 58, 126, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-icon svg {
  width: 1rem;
  height: 1rem;
  color: #ce3a7e;
}

.about-feature h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.about-feature p {
  color: #6b7280;
}

.about-card {
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
}

.about-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
}

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

.cert-item {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cert-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ce3a7e;
  margin-bottom: 0.25rem;
}

.cert-label {
  font-size: 0.875rem;
  color: #6b7280;
}

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

/* CTA */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ce3a7e 0%, #b8326e 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .cta h2 {
    font-size: 2.5rem;
  }
}

/* Contact */
.contact {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.contact-content {
  display: grid;
  gap: 3rem;
  max-width: 96rem;
  margin: 0 auto;
}

.contact-form-card .card {
  padding: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(206, 58, 126, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ce3a7e;
}

.contact-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.contact-card strong {
  color: #ce3a7e;
  font-size: 1.125rem;
}

.guarantee-card {
  background: linear-gradient(135deg, #ce3a7e 0%, #b8326e 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
}

.guarantee-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

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

.form-group label {
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ce3a7e;
  box-shadow: 0 0 0 3px rgba(206, 58, 126, 0.1);
}

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

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  display: none;
}

.error-message.show {
  display: block;
}

.success-message {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.success-message p {
  margin: 0;
}

.success-message strong {
  color: #166534;
}

.success-message p:last-child {
  color: #16a34a;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row .form-group.full-width {
    grid-column: 1 / -1;
  }
}

/* Loader */
.loader {
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background-color: white;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ce3a7e;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: #6b7280;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
}

.modal-close:hover {
  background-color: #f3f4f6;
}

.modal .form {
  padding: 1.5rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .modal-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
}

.footer-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.whatsapp-button,
.email-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.8rem 1.25rem;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
}

.whatsapp-button {
  background-color: #b9f5d0; /* Pastel green */
  color: #ffffff;
}

.whatsapp-button:hover {
  background-color: #9de5bd; /* Slightly darker pastel green */
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* Button Icons */
.whatsapp-button i,
.email-button i {
  font-size: 1.25rem;
  margin: 0 0.75rem 0 0;
  padding: 0;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* National Service */
.national-service {
  display: flex;
  align-items: center;
  color: #9ca3af;
  margin-top: 0.5rem;
  padding: 0.2rem 0;
}

.national-service .flag-icon {
  color: #ffe8f8; /* Green from Brazil flag */
  font-size: 1rem;
  margin-right: 0.75rem;
  width: 1.25rem;
  display: inline-flex;
  justify-content: center;
}

.national-service span {
  font-size: 0.95rem;
  line-height: 1.4;
}

.whatsapp-button i {
  color: #128C7E; /* WhatsApp brand green for the icon */
}

.whatsapp-button span {
  color: #2d3748; /* Dark gray for text */
  font-weight: 500;
}

/* Email Button */
.email-button {
  background-color: #ffd1d1; /* Pastel red */
  color: #ffffff;
}

.email-button:hover {
  background-color: #ffb8b8; /* Slightly darker pastel red */
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.email-button i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  color: #dc2626; /* Darker red for the icon */
}

.email-button span {
  color: #2d3748; /* Dark gray for text */
  font-weight: 500;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 73px;
  width: auto;
}

.footer-section p {
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-section:first-child {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
  
  .footer-section:not(:first-child) {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
  }
}

/* Leads Page */
.leads-page {
  min-height: 100vh;
  background-color: #f9fafb;
  padding: 2rem 0;
}

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

.leads-title-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.leads-title-section p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.stats-grid.nav {
  display: flex;
  gap: 1.5rem;
  margin-right: 1.5rem;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.stat-card-header span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.stat-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ce3a7e;
}

.leads-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.leads-list {
  display: grid;
  gap: 1.5rem;
}

.lead-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.lead-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.lead-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lead-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ce3a7e;
  margin-bottom: 0.25rem;
}

.lead-card-company {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.lead-card-company svg {
  width: 1rem;
  height: 1rem;
}

.lead-card-meta {
  text-align: right;
}

.lead-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: rgba(206, 58, 126, 0.1);
  color: #ce3a7e;
  border: 1px solid rgba(206, 58, 126, 0.2);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.lead-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.lead-card-content {
  padding: 1.5rem;
}

.lead-info-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lead-info-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.lead-info-item svg {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  margin-right: 0.5rem;
}

.lead-info-item strong {
  margin-right: 0.5rem;
}

.lead-message {
  margin-top: 1rem;
}

.lead-message h4 {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.lead-message-content {
  font-size: 0.875rem;
  color: #6b7280;
  background-color: #f9fafb;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.no-leads {
  background-color: white;
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.no-leads-icon {
  width: 3rem;
  height: 3rem;
  color: #9ca3af;
  margin: 0 auto 1rem;
}

.no-leads h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.no-leads p {
  color: #6b7280;
  margin-bottom: 1rem;
}

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

  .lead-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .leads-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .leads-actions {
    flex-direction: column;
  }

  .modal-buttons {
    flex-direction: column;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid #ce3a7e;
  outline-offset: 2px;
}

/* Error Pages */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
}

.error-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.error-icon {
  width: 5rem;
  height: 5rem;
  color: #ce3a7e;
  margin: 0 auto 2rem;
}

.error-content h1 {
  font-size: 6rem;
  font-weight: 700;
  color: #ce3a7e;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.error-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .error-actions {
    flex-direction: row;
  }
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
}

/* Lazy loading support */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .modal,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero,
  .services,
  .about,
  .contact {
    page-break-inside: avoid;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-outline {
    border-width: 2px;
  }

  .card {
    border: 1px solid #000;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #1f2937;
    --text-color: #f9fafb;
    --card-bg: #374151;
  }

  body {
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  .card {
    background-color: var(--card-bg);
    color: var(--text-color);
  }

  .header {
    background-color: rgba(31, 41, 55, 0.95);
  }
}

.about .section-title {
  font-size: 1.5rem;
  line-height: 1.1;
  color: #ce3a7e !important;
}

.cert-number, .cert-label {
  color: #1f2937 !important;
}

/* Process Section */
.process {
  padding: 6rem 0;
  background: white;
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(135deg, #ce3a7e 0%, #b8326e 100%);
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
  text-align: right;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #ce3a7e 0%, #b8326e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  z-index: 2;
  box-shadow: 0 0 0 8px white;
}

.step-content {
  flex: 1;
  max-width: 400px;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.5);
  margin: 0 3rem;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-content ul {
  list-style: none;
}

.step-content li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.step-content li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: #ce3a7e;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-icon {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: 2rem;
  height: 2rem;
  color: #ce3a7e;
  z-index: 3;
}

.process-step:nth-child(even) .step-icon {
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 2rem;
  }

  .process-step {
    flex-direction: row !important;
    padding-left: 4rem;
  }

  .process-step:nth-child(even) .step-content {
    text-align: left;
  }

  .step-number {
    left: 2rem;
    transform: translateX(-50%);
  }

  .step-content {
    margin: 0 0 0 2rem;
  }

  .step-icon {
    display: none;
  }
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--background-alt);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.5);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(206, 58, 126, 0.05);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #232b36;
  margin: 0;
}

.faq-toggle {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-toggle .bi {
  color: white;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-item.active .faq-toggle svg {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #232b36;
  line-height: 1.6;
  margin: 0;
}

.faq .section-title,
.faq .section-description {
  color: #fff;
}
