/* Theme Variables */
:root {
  --color-primary: #800080; /* roxo institucional */
  --color-secondary: #a020f0; /* roxo vibrante */
  --color-accent: #ff8c00; /* laranja escuro destaque */
  --color-dark: #333333; /* cinza escuro */
  --color-light: #f8f0ff; /* roxo muito claro */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-success: #008000;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 8rem 0 6rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern.svg') repeat;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .btn {
  margin: 0.5rem;
}

/* Services Section */
.services {
  background-color: var(--color-light);
}

.service-card {
  text-align: center;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(128, 0, 128, 0.15); /* Cor primária */
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  background-color: white;
}

.testimonial-card {
  background-color: var(--color-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern.svg') repeat;
  opacity: 0.05;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* About Page */
.about-hero {
  background-color: var(--color-light);
  padding: 6rem 0 4rem;
  margin-top: 80px;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.about-main h3 {
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-sidebar {
  background-color: var(--color-light);
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
}

.about-sidebar h4 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
}

.company-info {
  list-style: none;
}

.company-info li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-text);
}

.company-info li:last-child {
  border-bottom: none;
}

.company-info strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

/* Contact Page */
.contact-section {
  margin-top: 80px;
  padding: 5rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--color-dark);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.contact-details p {
  color: var(--color-text-light);
  margin: 0;
}

/* Thank You Page */
.thankyou-section {
  margin-top: 80px;
  padding: 8rem 0;
  text-align: center;
  background-color: var(--color-light);
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-success), #38c172);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
}

.thankyou-content h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.thankyou-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-section {
  margin-top: 80px;
  padding: 5rem 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--color-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--color-secondary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

/* Services Page */
.services-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 6rem 0 4rem;
  margin-top: 80px;
  text-align: center;
}

.services-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.services-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
}

.service-detail {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--color-accent);
}

.service-detail h3 {
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-detail ul {
  list-style: none;
  margin-top: 1rem;
}

.service-detail li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-light);
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
}
