/* VouEstar Brand Colors */
:root {
  --verde-principal: #2e7d32;
  --verde-escuro: #1b5e20;
  --verde-claro: #4caf50;
  --verde-suave: #a5d6a7;
  --cinza-escuro: #333333;
  --branco: #ffffff;
  --background: #ffffff;
  --foreground: #2e7d32;
  --muted: #f1f8e9;
  --muted-foreground: #333333;
  --border: #e8f5e8;
}

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

body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

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

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

.text-primary {
  color: var(--verde-claro);
}

.text-balance {
  text-wrap: balance;
}

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

.btn-primary {
  background-color: var(--verde-claro);
  color: var(--branco);
}

.btn-primary:hover {
  background-color: var(--verde-principal);
}

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

.btn-outline:hover {
  background-color: var(--verde-principal);
  color: var(--branco);
}

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

.btn-full {
  width: 100%;
}

/* Urgency Banner Fixed */
.urgency-banner-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.urgency-banner-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Add padding to body to account for fixed banner */
body {
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .urgency-banner-fixed {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  body {
    padding-top: 3.5rem;
  }
}

/* Ensure header has proper spacing from urgency banner */
.header {
  position: sticky;
  top: 3rem; /* Position below the urgency banner */
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .header {
    top: 3.5rem; /* Adjust for larger banner on desktop */
  }
}

/* Header styles are now defined above with proper spacing */

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

.logo-image {
  height: 4rem;
  width: auto;
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

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

/* Hero Section */
.hero {
  padding: 3rem 1rem 5rem;
  text-align: center;
}

.hero-content {
  max-width: 64rem;
}

.badge {
  display: inline-block;
  background-color: var(--muted);
  color: var(--verde-principal);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

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

/* Media queries for hero-buttons removed - now single button */

@media (min-width: 768px) {
  .hero {
    padding: 5rem 1rem;
  }

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

/* Product Section */
.product-section {
  padding: 4rem 1rem;
  background-color: rgba(241, 248, 233, 0.3);
}

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

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.product-feature {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.product-feature.reverse .feature-image {
  order: -1;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.feature-list {
  list-style: none;
}

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

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--verde-claro);
  flex-shrink: 0;
}

.qr-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--verde-claro);
  flex-shrink: 0;
}

.screenshot {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

/* Phone Mockup */
.mobile-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  background-color: #1f2937;
  border-radius: 2.5rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  width: 20rem;
}

.phone-screen {
  background-color: white;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 1.5rem;
  background-color: #1f2937;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  z-index: 10;
}

.mobile-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

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

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

/* Features Section */
.features-section {
  padding: 4rem 1rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--verde-claro);
}

.feature-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

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

/* Pricing Section */
.pricing-section {
  padding: 4rem 1rem;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.toggle-container {
  display: flex;
  background-color: var(--muted);
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.toggle-option {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-option.active {
  background-color: var(--branco);
  color: var(--foreground);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-option:not(.active) {
  color: var(--muted-foreground);
}

.discount-badge {
  background-color: var(--muted);
  color: var(--verde-principal);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.pricing-card {
  background-color: var(--branco);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 0;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--verde-claro);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.1);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--verde-claro);
  color: var(--branco);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-container {
  margin: 1rem 0;
}

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

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

.annual-total {
  margin-top: 0.5rem;
}

.annual-price {
  font-size: 1rem;
  color: var(--verde-principal);
  font-weight: 600;
}

.plan-description {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.pricing-features {
  padding: 1.5rem;
}

.pricing-features .feature-item {
  margin-bottom: 1rem;
}

.pricing-features .btn {
  margin-top: 1.5rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
  padding: 4rem 1rem;
  background-color: rgba(76, 175, 80, 0.05);
}

.cta-content {
  text-align: center;
  max-width: 64rem;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  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: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

/* Footer */
.footer {
  padding: 3rem 1rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.footer-logo-image {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

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

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

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

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

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

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

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

/* Hero Video */
.hero-video {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--verde-claro);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-container {
    height: 200px;
    max-width: 100%;
  }
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.social-proof-item {
  text-align: center;
}

.proof-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde-claro);
  display: block;
}

.proof-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

/* Social Proof Section */
.social-proof-section {
  padding: 4rem 1rem;
  background-color: rgba(241, 248, 233, 0.3);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: var(--branco);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--verde-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.testimonial-rating {
  text-align: right;
}

.stars {
  color: #fbbf24;
  font-size: 1.125rem;
}

/* Stats Section */
.stats-section {
  margin-top: 3rem;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--branco);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

/* Urgency Section */
.urgency-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--branco);
  text-align: center;
}

.urgency-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.urgency-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--branco);
}

.urgency-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.urgency-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.urgency-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.urgency-feature .check-icon {
  color: var(--branco);
  width: 1rem;
  height: 1rem;
}

/* Enhanced CTA Section */
.cta-social-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.guarantee-icon {
  width: 1rem;
  height: 1rem;
  color: var(--verde-claro);
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .hero-social-proof {
    gap: 1rem;
  }

  .proof-number {
    font-size: 1.5rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .urgency-features {
    flex-direction: column;
    gap: 1rem;
  }

  .urgency-title {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-social-proof {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Automation Sections Styles */

/* Pain Section */
.pain-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffebee 0%, #fff3e0 100%);
}

.pain-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pain-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #d32f2f;
  margin-bottom: 2rem;
}

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

.problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.problem-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d32f2f;
}

.pain-time {
  margin: 3rem 0;
}

.time-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: #ff5722;
  color: white;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
}

.solution-section {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
  border-radius: 16px;
}

.solution-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--verde-principal);
  margin-bottom: 1.5rem;
}

.solution-grid {
  display: grid;
  gap: 1rem;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}

.solution-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.solution-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde-principal);
}

.pain-cta {
  margin-top: 3rem;
}

.cta-arrow {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--verde-principal);
  margin-bottom: 2rem;
}

/* Before/After Section */
.before-after-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f3e5f5 0%, #e1f5fe 100%);
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

.comparison-side {
  padding: 2rem;
  border-radius: 16px;
  min-height: 400px;
}

.before-side {
  background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
  border: 2px solid #ef5350;
}

.after-side {
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
  border: 2px solid var(--verde-claro);
}

.comparison-header {
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.comparison-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0;
}

.before-side .comparison-title {
  color: #d32f2f;
}

.after-side .comparison-title {
  color: var(--verde-principal);
}

.comparison-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

.comparison-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.comparison-text {
  font-size: 1rem;
  font-weight: 600;
}

.comparison-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-container {
  text-align: center;
  padding: 1rem;
  background: var(--verde-principal);
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}

.arrow-text {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.arrow-symbol {
  font-size: 2rem;
  font-weight: 800;
}

.before-after-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Automation Process Section */
.automation-process-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-steps {
  display: grid;
  gap: 3rem;
  margin: 3rem 0;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  background: var(--verde-principal);
  color: white;
  border-radius: 50px;
  white-space: nowrap;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--verde-principal);
  margin-bottom: 1rem;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.step-item {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  padding-left: 1rem;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Pricing ROI and Testimonial */
.pricing-roi {
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 12px;
  border: 2px solid #ff9800;
}

.roi-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e65100;
  margin-bottom: 0.5rem;
}

.roi-item:last-child {
  margin-bottom: 0;
}

.pricing-testimonial {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--verde-principal);
  text-align: center;
}

/* Mobile Responsive for Automation Sections */
@media (max-width: 767px) {
  .pain-title {
    font-size: 2rem;
  }
  
  .comparison-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-arrow {
    order: 2;
  }
  
  .before-side {
    order: 1;
  }
  
  .after-side {
    order: 3;
  }
  
  .arrow-container {
    transform: rotate(90deg);
  }
  
  .process-step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-number {
    justify-self: center;
  }
}

/* Pare de Sofrer Section */
.pare-de-sofrer-section {
  padding: 4rem 1rem;
  background: var(--muted);
}

.pare-de-sofrer-content {
  max-width: 64rem;
  margin: 0 auto;
}

.pare-de-sofrer-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pare-de-sofrer-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--verde-principal);
  margin-bottom: 1rem;
}

.pare-de-sofrer-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.pare-de-sofrer-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.comparison-side {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.manual-side {
  border-left: 4px solid #dc3545;
}

.automation-side {
  border-left: 4px solid var(--verde-claro);
}

.comparison-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--verde-principal);
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.5;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.pare-de-sofrer-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .pare-de-sofrer-title {
    font-size: 2rem;
  }
  
  .pare-de-sofrer-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-side {
    padding: 1.5rem;
  }
}

/* Exit Intent Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

.exit-popup-content {
  background: white;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

.exit-popup-header {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem 1rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exit-popup-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.exit-close {
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
}

.exit-popup-body {
  padding: 2rem;
}

.exit-popup-body p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.exit-popup-offer {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1.5rem 0;
  text-align: center;
}

.offer-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offer-text {
  font-weight: 700;
  color: #856404;
  font-size: 0.9rem;
}

.offer-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #dc3545;
}

.exit-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.exit-close-btn {
  background: #6c757d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.exit-close-btn:hover {
  background: #5a6268;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (max-width: 768px) {
  .exit-popup-content {
    width: 95%;
    margin: 1rem;
  }
  
  .exit-popup-header h3 {
    font-size: 1.1rem;
  }
  
  .exit-popup-body {
    padding: 1.5rem;
  }
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.video-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  padding: 5px 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.video-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

#demo-video {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

/* Video Button Enhancement */
a[href="video-demostracao.mp4"] {
  position: relative;
  overflow: hidden;
}

a[href="video-demostracao.mp4"]::before {
  content: "🎥 ";
  margin-right: 0.5rem;
}

a[href="video-demostracao.mp4"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

/* Mobile Video Modal */
@media (max-width: 767px) {
  .video-modal-content {
    max-width: 95%;
    max-height: 85%;
  }
  
  .video-close {
    top: -35px;
    font-size: 1.5rem;
  }
  
  #demo-video {
    max-height: 70vh;
  }
}
