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

:root {
  /* Colors - HSL format */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222, 47%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(217, 91%, 6%);
  --primary: hsl(217, 42%, 19%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(215, 28%, 33%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 35%);
  --accent: hsl(204, 94%, 54%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --ring: hsl(204, 94%, 54%);
  --brand-dark: hsl(217, 42%, 19%);
  --brand-medium: hsl(215, 28%, 33%);
  --brand-light: hsl(204, 94%, 54%);
  --gradient-primary: linear-gradient(135deg, hsl(217, 42%, 19%), hsl(215, 28%, 33%));
  --gradient-accent: linear-gradient(135deg, hsl(204, 94%, 54%), hsl(204, 94%, 64%));
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px hsla(204, 94%, 54%, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: var(--secondary);
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px 0 hsla(217, 42%, 19%, 0.05);
}

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

@media (min-width: 1024px) {
  .header-content {
    height: 5rem;
  }
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-dark);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: -0.25rem;
}

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

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

.nav-link {
  color: hsla(222, 47%, 15%, 0.8);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

.hamburger::before {
  top: -0.5rem;
}

.hamburger::after {
  bottom: -0.5rem;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease-out;
}

.nav-mobile.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (min-width: 1024px) {
  .hero-section {
    padding: 10rem 0 6rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--background), hsla(204, 94%, 54%, 0.05), hsla(217, 42%, 19%, 0.05));
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-bg::before {
  top: 5rem;
  right: 0;
  background: hsla(204, 94%, 54%, 0.2);
}

.hero-bg::after {
  bottom: 0;
  left: 0;
  background: hsla(217, 42%, 19%, 0.2);
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

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

.hero-content {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(204, 94%, 54%, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.trust-badge .icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
}

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

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, var(--accent), var(--brand-medium), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, hsla(204, 94%, 54%, 0.1), transparent);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px hsla(217, 42%, 19%, 0.1);
}

.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px hsla(217, 42%, 19%, 0.1);
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-foreground);
}

.benefit-text {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.benefit-value {
  color: var(--accent);
  font-weight: 600;
}

/* Hero Form */
.hero-form {
  animation: scaleIn 0.5s ease-out 0.2s backwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-card {
  position: relative;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  border: 2px solid hsla(204, 94%, 54%, 0.2);
  transition: all 0.5s;
}

.form-card:hover {
  border-color: hsla(204, 94%, 54%, 0.4);
}

.form-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 15px -3px hsla(217, 42%, 19%, 0.1);
}

.form-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-foreground);
}

.form-title {
  font-size: 1.875rem;
  color: var(--brand-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}

.form-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-card input {
  padding: 0.75rem;
  border: 2px solid var(--input);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-card input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px hsla(204, 94%, 54%, 0.1);
}

.form-note {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Sections */
.diferenciais-section,
.precos-section,
.depoimentos-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .diferenciais-section,
  .precos-section,
  .depoimentos-section {
    padding: 6rem 0;
  }
}

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

.section-badge {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  background: hsla(204, 94%, 54%, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

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

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

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

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.feature-card {
  position: relative;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  transition: all 0.5s;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(204, 94%, 54%, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  border-color: hsla(204, 94%, 54%, 0.5);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px hsla(217, 42%, 19%, 0.1);
  transition: all 0.5s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-foreground);
}

.feature-title {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.feature-card:hover .feature-title {
  color: var(--accent);
}

.feature-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-stats {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(204, 94%, 54%, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: all 0.3s;
  border-top: 1px solid hsla(204, 94%, 54%, 0.2);
}

.feature-card:hover .feature-stats {
  background: var(--accent);
  color: var(--accent-foreground);
}

.stats-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.feature-card:hover .stats-dot {
  background: var(--accent-foreground);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

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

.pricing-card {
  position: relative;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all 0.5s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  border-color: hsla(204, 94%, 54%, 0.5);
}

.pricing-popular {
  border-color: var(--accent);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .pricing-popular {
    transform: scale(1.1);
  }
}

.pricing-popular::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(204, 94%, 54%, 0.1), hsla(217, 42%, 19%, 0.1));
  animation: pulse 3s ease-in-out infinite;
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px hsla(217, 42%, 19%, 0.1);
}

.popular-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: pulse 2s ease-in-out infinite;
}

.pricing-card > * {
  position: relative;
  z-index: 10;
}

.pricing-name {
  font-size: 1.5rem;
  color: var(--brand-dark);
  text-align: center;
  padding: 2rem 1.5rem 0;
  margin-bottom: 0.5rem;
}

.pricing-popular .pricing-name {
  padding-top: 2.5rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
}

.pricing-price {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-dark);
}

@media (min-width: 1024px) {
  .price {
    font-size: 3.5rem;
  }
}

.period {
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.125rem;
}

.pricing-card .btn {
  margin: 0 1.5rem 2rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

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

.testimonial-card {
  position: relative;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  transition: all 0.5s;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(204, 94%, 54%, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  border-color: hsla(204, 94%, 54%, 0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card > * {
  position: relative;
  z-index: 10;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(214, 32%, 91%, 0.5);
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px hsla(217, 42%, 19%, 0.1);
}

.author-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--brand-dark);
}

.author-role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
}

.author-company {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background: var(--brand-dark);
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 3rem 0;
}

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

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

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

.footer-description {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: hsla(0, 0%, 100%, 0.8);
  transition: color 0.3s;
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact p {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

.footer-contact a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-newsletter-text {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  background: hsla(0, 0%, 100%, 0.1);
  color: var(--primary-foreground);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: hsla(0, 0%, 100%, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  background: hsla(0, 0%, 100%, 0.15);
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: hsla(0, 0%, 100%, 0.6);
  transition: color 0.3s;
}

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

.footer-cta {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 2rem 0;
  text-align: center;
}

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

@media (min-width: 1024px) {
  .footer-cta h3 {
    font-size: 1.875rem;
  }
}

.footer-cta p {
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 1rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  animation: scaleIn 0.3s ease-out;
}

@media (min-width: 1024px) {
  .whatsapp-button {
    width: 4rem;
    height: 4rem;
  }
}

.whatsapp-button:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.4);
}

.whatsapp-button svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

@media (min-width: 1024px) {
  .whatsapp-button svg {
    width: 2rem;
    height: 2rem;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  background: var(--brand-dark);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 5rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast-success {
  border-left: 4px solid var(--accent);
}

.toast-success svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.toast-message {
  flex: 1;
  color: var(--foreground);
  font-size: 0.875rem;
}

/* Page-specific styles */
.page-hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--brand-dark), var(--brand-medium), var(--brand-dark));
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 10rem 0 6rem;
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='white' stroke-opacity='0.05' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.page-hero-badge {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
  background: hsla(204, 94%, 54%, 0.2);
  border-radius: 9999px;
  border: 1px solid hsla(204, 94%, 54%, 0.3);
  margin-bottom: 1rem;
  animation: fadeIn 0.8s ease-out;
}

.page-hero-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out;
}

@media (min-width: 1024px) {
  .page-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .page-hero-title {
    font-size: 4.5rem;
  }
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  max-width: 48rem;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

@media (min-width: 1024px) {
  .page-hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Utility Classes */
.icon {
  flex-shrink: 0;
}

/* Navigation Styles for Static HTML */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .nav-container {
    height: 5rem;
  }
}

.nav-logo a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-dark);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

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

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

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .nav-menu.active {
    position: static;
    flex-direction: row;
    box-shadow: none;
    border: none;
    padding: 0;
  }
}

/* Page Hero Styles */
.hero-page {
  padding: 8rem 0 4rem;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='white' stroke-opacity='0.05' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
}

.hero-page .container {
  position: relative;
  z-index: 10;
}

/* Modules Page */
.modules-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .modules-section {
    padding: 6rem 0;
  }
}

.modules-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

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

.module-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  border-color: var(--accent);
}

.module-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.module-title {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.module-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.module-features li {
  padding: 0.5rem 0;
  color: var(--foreground);
  font-size: 0.875rem;
}

/* Pricing Page Styles */
.pricing-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .pricing-section {
    padding: 6rem 0;
  }
}

.pricing-header {
  text-align: center;
  padding: 2rem 1.5rem 0;
}

.pricing-plan {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  transform: scale(1.02);
}

.price-currency,
.price-period {
  font-size: 1.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.feature-icon {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* Comparison Table */
.comparison-section {
  margin: 4rem 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
  background: var(--gradient-primary);
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-weight: 700;
}

.comparison-table tbody tr:hover {
  background: hsla(204, 94%, 54%, 0.05);
}

/* FAQ Section */
.faq-section {
  margin: 4rem 0;
}

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

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

.faq-item {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.125rem;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

@media (min-width: 1024px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.contact-form-wrapper {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
}

.section-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px hsla(204, 94%, 54%, 0.1);
}

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

.contact-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 400;
}

.quick-faq {
  margin: 4rem 0;
}

/* About Page */
.about-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .about-section {
    padding: 6rem 0;
  }
}

.about-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.about-text p {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

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

.stat-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* MVV Section */
.mvv-section {
  padding: 4rem 0;
  background: hsla(204, 94%, 54%, 0.05);
}

@media (min-width: 1024px) {
  .mvv-section {
    padding: 6rem 0;
  }
}

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

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

.mvv-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.mvv-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mvv-title {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.mvv-text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.mvv-list {
  list-style: none;
  color: var(--muted-foreground);
}

.mvv-list li {
  padding: 0.5rem 0;
  line-height: 1.6;
}

.mvv-list strong {
  color: var(--brand-dark);
}

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

@media (min-width: 1024px) {
  .differentials-section {
    padding: 6rem 0;
  }
}

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

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

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

.differential-item {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.differential-item:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.differential-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.differential-title {
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.differential-text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
  padding: 4rem 0;
  background: hsla(204, 94%, 54%, 0.05);
}

@media (min-width: 1024px) {
  .timeline-section {
    padding: 6rem 0;
  }
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 4rem;
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 2rem;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2rem;
  }
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .timeline-year {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-content {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.timeline-content:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: hsla(204, 94%, 54%, 0.05);
  border-radius: 1.5rem;
  margin: 4rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

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

.cta-section p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* Footer Styles */
.footer-column {
  margin-bottom: 2rem;
}

.footer-subtitle {
  font-size: 1.125rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.footer-text {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
}
/* Correções para a seção de preços */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  align-items: stretch; /* Garante que todos os cards tenham a mesma altura */
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Reduz um pouco o gap para melhor espaçamento */
  }
}

.pricing-card {
  position: relative;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  height: auto; /* Permite que o card cresça conforme o conteúdo */
  min-height: 600px; /* Altura mínima consistente */
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  border-color: hsla(204, 94%, 54%, 0.5);
}

/* Card Popular - Correções principais */
.pricing-popular {
  border-color: var(--accent);
  box-shadow: 0 20px 25px -5px hsla(217, 42%, 19%, 0.15);
  transform: scale(1.05);
  z-index: 2; /* Garante que fique acima dos outros cards */
  position: relative;
}

@media (min-width: 1024px) {
  .pricing-popular {
    transform: scale(1.08); /* Aumenta um pouco mais o destaque */
    margin: 0 -0.5rem; /* Compensa o scale para não quebrar o layout */
  }
}

/* Badge "Mais Popular" - Correções de posicionamento */
.popular-badge {
  position: absolute;
  top: -12px; /* Posiciona metade para fora do card */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  padding: 0.75rem 1.5rem; /* Aumenta o padding para melhor visual */
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px hsla(217, 42%, 19%, 0.2);
  white-space: nowrap; /* Evita quebra de linha */
  min-width: 140px; /* Largura mínima para consistência */
  justify-content: center;
}

.popular-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Efeito de brilho para o card popular */
.pricing-popular::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(204, 94%, 54%, 0.1), hsla(217, 42%, 19%, 0.05));
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

.pricing-card > * {
  position: relative;
  z-index: 10;
}

/* Header do card de preços */
.pricing-header {
  padding: 2rem 1.5rem 0;
  text-align: center;
  flex-shrink: 0; /* Não encolhe */
}

.pricing-popular .pricing-header {
  padding-top: 2.5rem; /* Espaço extra para o badge */
}

.pricing-name {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Preço */
.pricing-price {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-dark);
  display: block;
  line-height: 1;
}

@media (min-width: 1024px) {
  .price {
    font-size: 3.5rem;
  }
}

.period {
  color: var(--muted-foreground);
  font-size: 1rem;
}

/* Lista de features */
.pricing-features {
  list-style: none;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  flex-grow: 1; /* Ocupa o espaço disponível */
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.4;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.125rem;
}

/* Botão - Correções importantes */
.pricing-actions {
  padding: 0 1.5rem 2rem;
  flex-shrink: 0; /* Não encolhe */
  margin-top: auto; /* Empurra para baixo */
}

.pricing-card .btn {
  width: 100%;
  margin: 0; /* Remove margens anteriores */
}

/* Botão do card popular */
.pricing-popular .btn-primary {
  background: var(--gradient-accent);
  border: none;
  color: var(--accent-foreground);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

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

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

.pricing-popular .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px hsla(204, 94%, 54%, 0.4);
}

/* Ajustes responsivos */
@media (max-width: 1023px) {
  .pricing-popular {
    transform: none;
    margin: 0;
    order: -1; /* Coloca o card popular primeiro no mobile */
  }
  
  .pricing-grid {
    gap: 2rem;
  }
}

/* Garantir que o preço personalizado fique alinhado */
.pricing-price .price:only-child {
  font-size: 2rem;
  margin-top: 1rem;
}
/* Solução emergencial - remove qualquer overflow */
.pricing-card {
  overflow: visible !important;
}

.popular-badge {
  position: absolute;
  top: -20px !important; /* Mais para fora */
  left: 50%;
  transform: translateX(-50%);
  z-index: 100 !important; /* Z-index muito alto */
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px hsla(217, 42%, 19%, 0.3);
  white-space: nowrap;
  min-width: 140px;
  justify-content: center;
  border: 2px solid white;
  /* Garante que não seja cortado por nada */
  pointer-events: none;
}

.pricing-popular {
  margin-top: 20px; /* Compensa o badge */
}

/* Seção Problema */
.problema-section {
  padding: 4rem 0;
  background: hsla(204, 94%, 54%, 0.03);
}

.problema-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.problema-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.problema-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px -5px hsla(217, 42%, 19%, 0.1);
}

.problema-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: hsla(0, 0%, 94%, 1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problema-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--muted-foreground);
}

.problema-card h3 {
  color: var(--brand-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.problema-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Seção Solução */
.solucao-section {
  padding: 4rem 0;
}

.solucao-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .solucao-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

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

.solucao-number {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-accent);
  color: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.solucao-text h3 {
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.solucao-text p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.solucao-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solucao-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
}

.solucao-card.destaque {
  border-color: var(--accent);
  background: hsla(204, 94%, 54%, 0.05);
}

.solucao-card h4 {
  color: var(--brand-dark);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.solucao-card ul {
  list-style: none;
}

.solucao-card li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
}

/* Seção Público */
.publico-section {
  padding: 4rem 0;
  background: hsla(217, 42%, 19%, 0.02);
}

.publico-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.publico-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.publico-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px -5px hsla(217, 42%, 19%, 0.1);
}

.publico-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--gradient-accent);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publico-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.publico-card h3 {
  color: var(--brand-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.publico-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Seção Técnicos */
.tecnicos-section {
  padding: 4rem 0;
}

.tecnicos-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.tecnico-item {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.tecnico-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tecnico-item h3 {
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.tecnico-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.875rem;
}
/* Estilos para páginas legais */
.legal-section {
  padding: 4rem 0;
}

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

.legal-info {
  background: hsla(204, 94%, 54%, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
}

.legal-info p {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.legal-text h2 {
  color: var(--brand-dark);
  margin: 2.5rem 0 1rem 0;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.legal-text h3 {
  color: var(--brand-medium);
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.25rem;
}

.legal-text p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-text ul {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-text strong {
  color: var(--brand-dark);
}

.legal-note {
  background: hsla(217, 42%, 19%, 0.05);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.legal-note p {
  margin-bottom: 0;
  font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
  .legal-text h2 {
    font-size: 1.25rem;
  }
  
  .legal-text h3 {
    font-size: 1.125rem;
  }
}
/* Seção de Comparação */
.comparison-section {
  padding: 4rem 0;
  background: hsla(204, 94%, 54%, 0.02);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px hsla(217, 42%, 19%, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: hsla(204, 94%, 54%, 0.02);
}

.comparison-table thead {
  background: var(--gradient-primary);
}

.comparison-table thead th {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0;
}

.comparison-table thead th:first-child {
  background: transparent;
  color: var(--brand-dark);
}

.plan-header {
  padding: 2rem 1rem;
  position: relative;
}

.plan-header.popular {
  background: hsla(204, 94%, 54%, 0.1);
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: inherit;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: inherit;
  opacity: 0.8;
}

.plan-users {
  font-size: 0.875rem;
  opacity: 0.9;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.category-header {
  background: hsla(217, 42%, 19%, 0.05) !important;
}

.category-header td {
  font-weight: 700 !important;
  font-size: 1.125rem;
  color: var(--brand-dark) !important;
  text-align: left !important;
  padding: 1rem 2rem !important;
  border-bottom: 2px solid var(--border);
}

.comparison-table tbody tr:hover {
  background: hsla(204, 94%, 54%, 0.03);
}

.check {
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.25rem;
}

.action-row td {
  padding: 2rem 1rem !important;
  border-bottom: none;
}

.action-row .btn {
  margin: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
  }
  
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 1rem;
  }
  
  .plan-header {
    padding: 1.5rem 0.5rem;
  }
  
  .plan-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 2rem 0;
  }
  
  .comparison-table-wrapper {
    margin: 1rem -1rem;
    border-radius: 0;
  }
  
  .comparison-table {
    min-width: 700px;
  }
  
  .category-header td {
    padding: 0.75rem 1rem !important;
    font-size: 1rem;
  }
}

/* Melhorias para mobile */
@media (max-width: 480px) {
  .plan-header h3 {
    font-size: 1.25rem;
  }
  
  .plan-price {
    font-size: 1.25rem;
  }
  
  .popular-badge {
    font-size: 0.625rem;
    padding: 0.375rem 1rem;
  }
}