/* Garagem Projetos Landing Page Styles */
/* Converted from Next.js/Tailwind to vanilla CSS */

/* CSS Variables - Brand Colors */
:root {
  /* Brand Colors */
  --brand-navy: #050a30;
  --brand-blue: #0076e6;
  --brand-white: #ffffff;

  /* Extended Color Palette */
  --background: #ffffff;
  --foreground: #050a30;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --green-400: #4ade80;
  --orange-500: #f97316;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-navy);
}

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

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

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

p {
  line-height: 1.75;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background-color: var(--blue-700);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

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

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

.btn-outline:hover {
  background-color: var(--gray-50);
}

/* Cards */
.card {
  background-color: var(--brand-white);
  border-radius: var(--radius-3xl);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-4px);
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out;
}

.animate-scale-in {
  animation: scale-in 0.4s ease-out;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.animation-delay-600 {
  animation-delay: 600ms;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 10, 48, 0.8) 0%, rgba(5, 10, 48, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 118, 230, 0.2);
  backdrop-filter: blur(10px);
  color: var(--brand-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(0, 118, 230, 0.3);
  margin-bottom: var(--spacing-lg);
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
  color: var(--brand-blue);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #e5e7eb;
  line-height: 1.75;
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  justify-content: center;
  padding-top: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-lg);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--brand-white);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: var(--brand-white);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

/* Video Section */
.video-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, rgba(239, 246, 255, 0.3) 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.video-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  background-color: #000;
}

.video-container video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.1));
}

.video-toggle {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.video-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-weight: 500;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
}

.video-toggle-btn.active {
  background-color: var(--brand-blue);
  color: var(--brand-white);
  transform: scale(1.05);
}

.video-toggle-btn:not(.active) {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--gray-700);
}

.video-toggle-btn:hover {
  transform: scale(1.05);
}

.video-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--blue-600));
  color: var(--brand-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base);
}

.video-badge:hover {
  transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--brand-navy), var(--gray-900));
  color: var(--brand-white);
}

.pricing-header {
  text-align: center; /* Fixed: 'text-center;' is not valid CSS, changed to 'text-align: center;' */
  margin-bottom: 4rem;
}

.pricing-title {
  color: var(--brand-white);
  margin-bottom: var(--spacing-md);
}

.pricing-title .highlight {
  color: var(--brand-blue);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.pricing-card {
  background-color: var(--brand-white);
  color: var(--gray-900);
  padding: var(--spacing-lg);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-200);
}

.pricing-card:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border: 4px solid var(--brand-blue);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--blue-600));
  color: var(--brand-white);
  padding: 0.5rem 1rem;
  border-bottom-left-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

.pricing-card-header {
  text-align: center; /* Fixed: 'text-center;' is not valid CSS, changed to 'text-align: center;' */
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-sm);
}

.pricing-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
  transition: all var(--transition-base);
}

.pricing-card:not(.popular) .pricing-icon {
  background-color: var(--gray-100);
}

.pricing-card.popular .pricing-icon {
  background-color: var(--brand-blue);
}

.pricing-card:hover:not(.popular) .pricing-icon {
  background-color: var(--brand-blue);
}

.pricing-features {
  margin-bottom: var(--spacing-md);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fade-in-up 0.6s ease-out forwards;
}

/* Form Section */
.form-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.form-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--brand-white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.form-header {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
}

.form-title {
  font-size: 1.5rem;
  color: var(--brand-navy);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm);
  background-color: var(--blue-50);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-sm);
  flex-wrap: wrap;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue);
  font-size: 0.875rem;
}

.progress-bar {
  width: 100%;
  height: 0.75rem;
  background-color: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: var(--spacing-md);
}

.progress-fill {
  height: 100%;
  background-color: var(--brand-blue);
  transition: width var(--transition-base);
}

.form-body {
  padding: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  color: var(--brand-navy);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 118, 230, 0.1);
}

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

.segment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.segment-btn {
  padding: var(--spacing-sm);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background-color: var(--brand-white);
  transition: all var(--transition-base);
  text-align: left;
  cursor: pointer;
}

.segment-btn:hover {
  border-color: var(--brand-blue);
  background-color: var(--gray-50);
}

.segment-btn.active {
  border-color: var(--brand-blue);
  background-color: var(--blue-50);
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--spacing-md);
}

.success-message {
  text-align: center;
  padding: var(--spacing-xl);
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dcfce7;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--brand-white);
  border-radius: var(--radius-3xl);
  padding: var(--spacing-sm);
  box-shadow: var(--shadow-2xl);
  transition: all var(--transition-slow);
  cursor: pointer;
}

.testimonial-card:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
  transform: translateY(-16px) scale(1.03);
}

.testimonial-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.testimonial-image {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.testimonial-card:hover .testimonial-image {
  transform: scale(1.1);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 99, 235, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

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

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

.faq-item {
  background-color: var(--brand-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--spacing-md) var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
  padding: var(--spacing-sm) 0;
  cursor: pointer;
  border: none;
  background: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  color: var(--gray-600);
  line-height: 1.75;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--spacing-md);
  padding-top: var(--spacing-sm);
}

.faq-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: fade-in-up 0.6s ease-out;
}

.floating-cta-hidden {
  display: none;
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  animation: fade-in 0.3s ease-out;
}

.popup-content {
  background: linear-gradient(135deg, var(--brand-blue), var(--blue-700));
  color: var(--brand-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-3xl);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  animation: scale-in 0.3s ease-out;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
  border: none;
  color: var(--brand-white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

.popup-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }

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

  .form-trust {
    flex-wrap: nowrap;
  }

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

@media (min-width: 768px) {
  .container {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
  }

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

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

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.leading-relaxed {
  line-height: 1.75;
}

.leading-tight {
  line-height: 1.25;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.w-full {
  width: 100%;
}

.max-w-3xl {
  max-width: 768px;
}

.max-w-4xl {
  max-width: 896px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.p-4 {
  padding: 1rem;
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.transition-all {
  transition: all var(--transition-base);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animations */
.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

.step-content.active {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0076e6;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Animations Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Form Animations */
.step-content {
    animation: fadeIn 0.4s ease-out forwards;
}

.step-content.hidden {
    display: none;
}

/* FAQ Styles */
.faq-content {
    transition: height 0.3s ease;
}

/* Scroll Reveal Classes (JS will trigger these) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.left {
    transform: translateX(-30px);
}

.scroll-reveal.right {
    transform: translateX(30px);
}

.scroll-reveal.visible.left,
.scroll-reveal.visible.right {
    transform: translate(0);
}

/* Partner Logos Grayscale Hover */
.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
/* ... (estilos existentes) */

/* Galeria de Projetos */
.gallery-item {
    transition: all 0.4s ease-out;
}

.gallery-filter-btn {
    transition: all 0.3s ease;
}

/* Parceiros */
.logo-card img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Ajustes */
footer img {
    /* Garante que o logo fique branco no fundo escuro */
    filter: brightness(0) invert(1);
}
/* --- ESTILO FORMULÁRIO PREMIUM (SMART CUSTOM) --- */

.form-wrap-modern {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.15);
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
}

.form-head-modern {
    padding: 40px 40px 20px 40px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.form-head-modern h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #050a30; /* Azul da marca */
    font-size: 2rem;
    margin-bottom: 10px;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-pill {
    background: #fff0e6; /* Fundo laranja claro */
    color: #FF6B00; /* Laranja da marca */
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

/* Barra de Progresso */
.progress-container {
    padding: 0 40px;
    margin-bottom: 30px;
}

.progress-bar-bg {
    background: #eef2f6;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    background: #FF6B00;
    height: 100%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 8px;
    color: #64748b;
    font-weight: 500;
}

/* Corpo do Formulário */
.form-body-modern {
    padding: 0 40px 40px 40px;
}

/* Inputs Modernos */
.input-group-modern {
    margin-bottom: 25px;
    text-align: left;
}

.input-group-modern label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.input-modern, .textarea-modern {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
    color: #334155;
    background: #f8fafc;
}

.input-modern:focus, .textarea-modern:focus {
    border-color: #FF6B00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.textarea-modern {
    resize: none;
    min-height: 120px;
}

/* Grid de Segmentos (Interativo) */
.segment-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

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

.seg-card {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.seg-card:hover {
    transform: translateY(-4px);
    border-color: #FF6B00;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.seg-card.selected {
    background: #fff6f0;
    border-color: #FF6B00;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
}

.seg-icon-box {
    font-size: 2rem;
    background: #f1f5f9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.seg-card.selected .seg-icon-box {
    background: #fff;
}

.seg-card span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
}

.seg-card.selected span {
    color: #FF6B00;
}

/* Botões */
.step-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.btn-next-modern {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-next-modern:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.btn-prev-modern {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    font-weight: 600;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.2s;
}

.btn-prev-modern:hover {
    border-color: #cbd5e1;
    color: #334155;
}

/* Utilitários e Animações */
.step-content {
    display: none; /* Oculto por padrão */
    animation: fadeIn 0.5s ease forwards;
}

.step-content.active {
    display: block; /* Visível quando ativo */
}

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

.alert-box {
    padding: 20px;
    border-radius: 12px;
    margin: 20px 40px;
    text-align: center;
}
.alert-box.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-box.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
/* --- ESTILO FORMULÁRIO PREMIUM AZUL (ATUALIZADO) --- */

.form-wrap-modern {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.15);
    padding: 0;
    max-width: 550px; /* Levemente menor para ficar mais elegante */
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    overflow: visible; /* Necessário para o dropdown do telefone */
    position: relative;
}

.form-head-modern {
    padding: 35px 30px 20px 30px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
}

.form-head-modern h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #050a30;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-pill {
    background: #eff6ff; /* Azul bem claro */
    color: #0076e6; /* Azul da marca */
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(0, 118, 230, 0.15);
}

/* Barra de Progresso */
.progress-container {
    padding: 0 30px;
    margin-bottom: 30px;
}

.progress-bar-bg {
    background: #e2e8f0;
    height: 6px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    background: #0076e6; /* Mudança para AZUL */
    height: 100%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 118, 230, 0.3);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-top: 8px;
    color: #64748b;
    font-weight: 500;
}

/* Corpo do Form */
.form-body-modern {
    padding: 0 30px 40px 30px;
}

/* Inputs */
.input-group-modern {
    margin-bottom: 25px;
    text-align: left;
}

.input-group-modern label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.input-modern, .textarea-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    color: #334155;
    background: #f8fafc;
}

.input-modern:focus, .textarea-modern:focus {
    border-color: #0076e6; /* Azul no foco */
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 118, 230, 0.1);
}

/* Ajustes Específicos para o Plugin de Telefone (Intl-Tel-Input) */
.iti { width: 100%; }
.iti__flag {background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");}
}
.iti__country-list { z-index: 999; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Grid de Segmentos */
.segment-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
@media (min-width: 500px) {
    .segment-grid-modern { grid-template-columns: repeat(3, 1fr); }
}

.seg-card {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.seg-card:hover {
    transform: translateY(-3px);
    border-color: #0076e6;
}

.seg-card.selected {
    background: #eff6ff; /* Fundo azul claro */
    border-color: #0076e6;
    box-shadow: 0 4px 15px rgba(0, 118, 230, 0.2);
}

.seg-icon-box {
    font-size: 1.8rem;
    background: #f1f5f9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.seg-card.selected .seg-icon-box { background: #fff; }

.seg-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
}
.seg-card.selected span { color: #0076e6; }

/* Botões Centralizados e Harmônicos */
.step-footer {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.center-buttons {
    justify-content: center; /* Centraliza os botões */
}

.btn-next-modern {
    background: #0076e6; /* Azul */
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px; /* Borda redonda para modernidade */
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 118, 230, 0.3);
}

.btn-next-modern:hover {
    background: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 118, 230, 0.4);
}

.btn-prev-modern {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    cursor: pointer;
    padding: 13px 25px;
    border-radius: 50px;
    transition: all 0.2s;
}

.btn-prev-modern:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    background: #f8fafc;
}

/* --- TELA DE SUCESSO --- */
.success-screen {
    animation: fadeIn 0.5s ease;
}
.success-icon-circle {
    width: 80px;
    height: 80px;
    background: #22c55e; /* Verde Sucesso */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}
.whatsapp-box {
    margin-top: 25px;
    background: #f0fdf4;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #dcfce7;
}
.btn-whatsapp-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366; /* Cor WhatsApp */
    color: white;
    font-weight: 700;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: #20bd5a;
}

/* Animações */
.step-content { display: none; animation: fadeIn 0.4s ease forwards; }
.step-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* --- ADICIONAR NO FINAL DO ARQUIVO style.css --- */

/* Animação do Mouse de Rolagem */
.mouse-scroll {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    display: block;
    margin: 0 auto;
}

.mouse-scroll::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #4ade80; /* Verde neon */
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; height: 4px; }
    100% { top: 22px; opacity: 0; height: 4px; }
}

/* Efeito de brilho verde nos ícones */
.icon-glow {
    filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.4));
}
/* --- ANIMAÇÕES PREMIUM HERO --- */

/* Animação do Mouse */
.mouse-scroll {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse-scroll::before {
    content: '';
    width: 4px;
    height: 6px;
    background: #0076e6; /* Azul da marca no scroll */
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; height: 6px; }
    100% { top: 20px; opacity: 0; height: 4px; }
}

@keyframes bounce-slow {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* Animação de Texto Gradiente (Brilho no texto azul) */
@keyframes gradient-x {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 4s ease infinite;
}

/* Zoom lento na imagem de fundo para dar vida */
@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-slow-zoom {
    animation: slow-zoom 20s linear infinite alternate;
}
/* --- ESTILO DO SHOWCASE --- */
.model-content {
    /* Garante que a transição de opacidade e posição funcione bem */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Efeito de brilho suave na aba ativa */
.model-tab.active {
    box-shadow: 0 10px 25px -5px rgba(0, 118, 230, 0.4);
}
/* --- CORREÇÃO DO SHOWCASE (TEXTO E VÍDEO) --- */

/* Container que empilha os modelos um em cima do outro */
.models-stack-container {
    display: grid;
    grid-template-areas: "stack";
    min-height: 600px; /* Altura mínima para garantir conforto visual */
    align-items: center;
}

/* Cada modelo ocupa o mesmo espaço (pilha) */
.model-content {
    grid-area: stack; /* Todos ficam na mesma célula do grid */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
    z-index: 0;
    pointer-events: none; /* Impede clique no item invisível */
}

/* O modelo ativo aparece suavemente */
.model-content.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    pointer-events: auto;
}

/* Garante que o vídeo não "pule" */
.video-wrapper {
    background: #000; /* Fundo preto evita clarões na troca */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}
/* --- CORREÇÕES DE LAYOUT MOBILE --- */
/* --- BOTÃO FLUTUANTE WHATSAPP (Visual Premium) --- */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    /* Gradiente moderno em vez de cor sólida */
    background: linear-gradient(45deg, #5FFC7B, #25D366);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Sombra mais suave e profunda para efeito "3D" */
    box-shadow: 0px 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Transição elástica */
    cursor: pointer;
    text-decoration: none;
    border: none; /* Borda removida para visual mais limpo */
}

/* Efeito ao passar o mouse (Desktop) */
.floating-whatsapp-btn:hover {
    /* Sobe um pouco e aumenta */
    transform: translateY(-5px) scale(1.1);
    /* Muda ligeiramente o gradiente */
    background: linear-gradient(45deg, #6dff89, #2ee672);
    box-shadow: 0px 15px 35px rgba(37, 211, 102, 0.6);
}

/* Ícone SVG */
.floating-whatsapp-btn svg {
    width: 38px;
    height: 38px;
    fill: white;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1)); /* Sombra sutil no ícone */
}

/* Animação de Pulso Suave */
@keyframes pulse-green-soft {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp-btn {
    animation: pulse-green-soft 2.5s infinite;
}

/* --- Ajustes para Mobile --- */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        /* Aumentado significativamente para não ficar atrás da barra do navegador */
        bottom: 85px; 
        right: 20px;
        width: 58px;
        height: 58px;
    }
    
    /* No mobile, removemos o efeito de "subir" do hover para evitar toques acidentais */
    .floating-whatsapp-btn:hover {
        transform: scale(1.05);
    }

    .floating-whatsapp-btn svg {
        width: 32px;
        height: 32px;
    }
}
/* --- PREÇO BLOQUEADO (NOVO ESTILO PADRONIZADO) --- */
.locked-price-wrapper {
    position: relative;
    padding: 30px 0;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

/* O Borrão de Fundo (Genérico) */
.price-blur {
    filter: blur(15px); /* Borrão forte */
    opacity: 0.5;
    user-select: none;
    pointer-events: none;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 800;
    color: #94a3b8; /* Cor cinza genérica */
    transform: scale(1.1); /* Aumenta para preencher bem */
    transition: 0.3s;
}

/* Estado Ativo (Card selecionado) */
.pricing-card.active .price-blur {
    color: #475569;
    opacity: 0.3;
}

/* Botão de Desbloqueio (Padronizado) */
.unlock-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0076e6; /* Azul da marca */
    color: white;
    padding: 12px 24px;
    border-radius: 8px; /* Quadrado arredondado, mais moderno */
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 118, 230, 0.3);
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.pricing-card:hover .unlock-btn,
.locked-price-wrapper:hover .unlock-btn {
    background: #005bb5;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 118, 230, 0.5);
}

/* Ícone do Cadeado */
.unlock-btn i {
    width: 16px;
    height: 16px;
}

/* Texto de Destaque (Apenas card do meio) */
.special-condition-text {
    font-size: 10px; /* Reduzi levemente para 10px */
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduzi o espaçamento das letras para compactar */
    font-weight: 800;
    color: #10b981; /* Verde Sucesso */
    margin-top: 12px; /* Aproximei mais do botão */
    
    background: rgba(16, 185, 129, 0.1);
    
    /* O QUE MUDOU PARA DIMINUIR A CAIXA: */
    padding: 2px 8px; /* Menos espaço interno */
    border-radius: 6px; /* Borda mais justa */
    display: inline-block; /* Garante que o fundo abrace só o texto */
    line-height: 1.2; /* Evita altura excessiva */
}