:root {
  --primary: #560bad;
  --primary-light: #7209b7;
  --primary-dark: #3a0ca3;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  /* color: var(--gray-800); */
  color: var(--black);
  background-color: var(--white);
  font-weight: 300;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  img {
    display: block;
    max-width: 90px;
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: var(--black);
  font-weight: 500;
  font-family: 'Inter';
  font-size: 1rem;
}

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

/* Hero Section with Parallax */
.parallax-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('https://images.unsplash.com/photo-1632910088125-e85bec44bb0e?q=80&w=2000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); */
  background-image: url('./hero-tinified.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: translateZ(0);
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 3rem;
  /* border-radius: var(--border-radius); */

  /* max-width: 100%; */
  width: 100%;
  /* height: 100vh; */
  /* margin: 0 auto; */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* box-shadow: var(--shadow-lg); */
  position: relative;
  backdrop-filter: blur(5px);

  @media (max-width: 768px) {
    max-width: 100%;
    padding: 2rem;
  }
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
  /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); */
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
  font-weight: 200;
  /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); */
}

/* Sections */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: var(--gray-100);
}

/* Problema + Solução */
#problema-solucao .content-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.service-card .icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Preços */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  transition: var(--transition);
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  background-color: var(--primary-light);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.1rem;
}

.price span {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-card .btn-primary {
  display: block;
  margin: 0 2rem 2rem;
}

.pricing-note {
  text-align: center;
  color: var(--gray-600);
  font-style: italic;
}

/* Depoimentos */
#depoimentos {
  display: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 1rem;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

/* Processo */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 3rem;
  left: 1.5rem;
  width: 2px;
  height: calc(100% - 1rem);
  background-color: var(--primary-light);
}

.step-number {
  background-color: var(--primary);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 0.5rem;
}

/* CTA Final */
#cta-final {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

#cta-final h2 {
  color: var(--white);
}

#cta-final .btn-primary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

#cta-final .btn-primary:hover {
  background-color: transparent;
  color: var(--white);
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

.faq-toggle {
  color: var(--primary);
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--gray-100);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

/* Contato - Nova versão com opções alternativas */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 100%;
  max-width: 350px;
  transition: var(--transition);
}

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

.contact-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.contact-card p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.contact-card .btn-secondary {
  display: inline-block;
}

.cta-contact {
  text-align: center;
  background-color: var(--gray-100);
  padding: 3rem;
  border-radius: var(--border-radius);
  max-width: 800px;
  margin: 0 auto;
}

.cta-contact h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.cta-contact .btn-primary {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* Footer */
footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  img {
    max-width: 90px;
  }
}

.footer-logo p {
  color: var(--gray-400);
  margin-top: 1rem;
  font-size: 14px;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
}

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

.footer-contact p {
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--gray-400);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 1rem;
  }

  .step:not(:last-child)::after {
    left: 1.5rem;
    top: 3rem;
    height: calc(100% - 3rem);
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile menu button - would need JS to toggle */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
  }
}
