/* ALTERAÇÕES NECESSÁRIAS NO CSS EXISTENTE */

:root {
  /* ALTERE ESTAS VARIÁVEIS: */
  --primary-green: #1e40af; /* Era #2dd4bf - agora azul primário */
  --primary-dark: #1e3a8a; /* Era #0f766e - agora azul escuro */
  --primary-light: #dbeafe; /* Era #a7f3d0 - agora azul claro */
  --secondary-green: #3b82f6; /* Era #10b981 - agora azul secundário */

  /* MANTENHA INALTERADAS: */
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* ALTERE APENAS O PRIMEIRO GRADIENTE: */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );

  /* MANTENHA INALTERADOS: */
  --gradient-secondary: linear-gradient(
    135deg,
    var(--accent-blue) 0%,
    var(--accent-purple) 100%
  );
  --gradient-subtle: linear-gradient(
    135deg,
    var(--neutral-50) 0%,
    var(--neutral-100) 100%
  );
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--neutral-50);
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@keyframes pulse-subtle {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animation Classes */
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}
.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease-out forwards;
}
.animate-fadeInRight {
  animation: fadeInRight 0.6s ease-out forwards;
}
.animate-scaleIn {
  animation: scaleIn 0.5s ease-out forwards;
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
.animate-pulse-subtle {
  animation: pulse-subtle 2s ease-in-out infinite;
}

/* Intersection Observer Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}
.animate-on-scroll:nth-child(2) {
  transition-delay: 0.2s;
}
.animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}
.animate-on-scroll:nth-child(4) {
  transition-delay: 0.4s;
}

/* Loading */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-overlay::after {
  content: "Carregando...";
  color: white;
  font-size: 18px;
  font-weight: 500;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 2px 4px rgba(45, 212, 191, 0.3);
}

/* Header Alert */
.header-alert {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideInFromTop 0.8s ease-out;
}

.header-alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInFromTop 0.8s ease-out 0.2s both;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  border-bottom: 1px solid var(--primary-green);
}

.navbar-brand img {
  height: 40px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.badge-success {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  animation: pulse-subtle 2s ease-in-out infinite;
}

.btn-primary-custom {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary-custom:hover::before {
  left: 100%;
}
.btn-primary-custom:active {
  transform: translateY(0);
}

/* Hero Section - CORRIGIDO PARA FICAR GRUDADO NO HEADER */
.hero-section {
  background: var(--gradient-subtle);
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  margin-top: 0; /* Removido o margin-top */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(30, 64, 175, 0.1) 0%,
      /* Era rgba(45, 212, 191, 0.1) */ transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-image {
  animation: fadeInRight 0.8s ease-out 0.7s both;
}

.hero-image img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  width: 100%;
  height: auto;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Process Section */
.process-section {
  padding: 50px 0;
  background: white;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.step-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(
    --primary-green
  ); /* Vai usar a nova cor azul automaticamente */
}
.step-card:hover::before {
  opacity: 0.03;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.step-card h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Benefits Section */
.benefits-section {
  padding: 50px 0;
  background: white;
  position: relative;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(30, 64, 175, 0.05) 0%,
    /* Era rgba(139, 92, 246, 0.05) */ transparent 50%
  );
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.5);
  padding-left: 16px;
  border-radius: 12px;
  margin: 0 -16px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-content h5 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefit-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
}

.countdown {
  background: var(--gradient-secondary);
  color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  margin: 32px 0;
  box-shadow: var(--shadow-lg);
  animation: pulse-subtle 3s ease-in-out infinite;
}

/* FAQ Section */
.faq-section {
  padding: 50px 0;
  background: white;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-question {
  background: var(--neutral-50);
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  background: var(
    --primary-light
  ); /* Vai usar a nova cor azul clara automaticamente */
  color: var(
    --primary-dark
  ); /* Vai usar a nova cor azul escura automaticamente */
  transform: translateX(4px);
}

.faq-question.active {
  background: var(--primary-green); /* Agora será azul */
  color: white;
}

.faq-question.active:hover {
  background: var(--primary-dark); /* Agora será azul escuro */
}

.faq-question i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  background: white;
}

.faq-answer.show {
  padding: 24px;
  max-height: 300px;
}

/* Form Section */
.form-section {
  padding: 50px 0;
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.08) 0%,
      /* Aumentei ligeiramente de 0.05 para 0.08 */ transparent 50%
    );
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 2;
  animation: scaleIn 0.6s ease-out;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--neutral-50);
}

.form-control:focus {
  border-color: var(--primary-green); /* Agora será azul */
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1); /* Era rgba(45, 212, 191, 0.1) */
  background: white;
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.btn-submit {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

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

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-submit:hover:not(:disabled)::before {
  left: 100%;
}
.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
}

.footer a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0 20px;
  }
  .step-card {
    margin-bottom: 24px;
  }
  .benefit-item:hover {
    transform: none;
    margin: 0;
    padding: 20px 0;
  }
  .form-card {
    padding: 32px 24px;
  }
  .process-section,
  .benefits-section,
  .faq-section,
  .form-section {
    padding: 40px 0;
  }
}

/* Seção "Por que você foi escolhido" - CSS Adicional */

/* Feature Cards */
.feature-card {
  background: white;
  padding: 40px 24px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-green);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-xl);
}

.feature-card h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Highlight Text Effects */
.highlight-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
}

.text-glow {
  text-shadow: 0 0 20px rgba(45, 212, 191, 0.3),
    0 0 40px rgba(45, 212, 191, 0.2), 0 0 60px rgba(45, 212, 191, 0.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.3),
      0 0 40px rgba(45, 212, 191, 0.2), 0 0 60px rgba(45, 212, 191, 0.1);
  }
  50% {
    text-shadow: 0 0 25px rgba(45, 212, 191, 0.4),
      0 0 50px rgba(45, 212, 191, 0.3), 0 0 75px rgba(45, 212, 191, 0.2);
  }
}

/* Animation Stagger Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

/* Display Classes Compatibility */
.display-5 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Responsividade */
@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 32px;
  }

  .feature-card:hover {
    transform: none;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .text-glow {
    text-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
  }

  .btn-primary-custom {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
  }
  /* Hero Section Mobile Improvements */
  .hero-section {
    padding: 20px 0 30px;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-badge {
    display: none;
    /* margin-bottom: 20px;
    padding: 8px 20px;
    font-size: 13px; */
  }

  .hero-image {
    margin-top: 20px;
  }

  .hero-image img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  /* Melhor espaçamento entre elementos */
  .hero-cta {
    margin-bottom: 20px;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Container adjustments */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Row adjustments for mobile */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Social Proof Section */
.social-proof-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.social-proof-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(45, 212, 191, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 50%
    );
}

/* Social Proof Section */
.refer-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.refer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(45, 212, 191, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 50%
    );
}

/* Stats Card */
.stats-card {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stats-card:hover::before {
  opacity: 0.02;
}

.stats-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  animation: pulse-subtle 3s ease-in-out infinite;
}

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

.stats-number {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stats-total {
  font-size: 2rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.stats-card h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.stats-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.stats-bar {
  height: 8px;
  background: var(--neutral-200);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.stats-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  width: 0%;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.stats-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

/* Proof Grid */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proof-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.proof-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proof-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.proof-item:hover::before {
  opacity: 0.05;
}

.proof-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.proof-badge i {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.proof-item:hover .proof-badge i {
  transform: scale(1.1);
}

.proof-badge span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

/* Factory Card */
.factory-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

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

.factory-header {
  padding: 32px 32px 24px;
  background: var(--gradient-subtle);
  border-bottom: 1px solid var(--border-color);
}

.factory-header h3 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.factory-subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

.factory-images {
  padding: 24px;
}

.factory-image-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.factory-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.factory-image-main:hover .factory-img {
  transform: scale(1.05);
}

.factory-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 24px;
  color: white;
}

.factory-stats {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.factory-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.factory-thumb {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.factory-thumb:hover {
  transform: scale(1.05);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

/* Video Container */
.video-container {
  position: relative;
  z-index: 2;
}

.video-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

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

.video-placeholder {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
  z-index: 3;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-2xl);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 24px;
  color: white;
}

.video-info h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.video-info p {
  margin-bottom: 12px;
  opacity: 0.9;
  font-size: 0.9rem;
}

.video-duration {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}

.video-benefits {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.video-benefit-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.video-benefit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.video-benefit-item:hover {
  transform: translateX(8px);
  color: var(--primary-green);
}

.video-benefit-item i {
  color: var(--primary-green);
  margin-right: 16px;
  font-size: 18px;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.video-benefit-item:hover i {
  transform: scale(1.2);
}

.video-benefit-item span {
  font-weight: 500;
  color: var(--text-primary);
}

/* Trust Footer */
.trust-footer {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.trust-message h4 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.trust-message p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter {
  animation: countUp 0.8s ease-out;
}

/* Video Modal (se necessário) */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.video-modal.show {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 16px;
  overflow: hidden;
}

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

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .social-proof-section {
    padding: 40px 0;
  }

  .stats-card {
    padding: 32px 24px;
    margin-bottom: 32px;
  }

  .stats-number {
    font-size: 3rem;
  }

  .stats-total {
    font-size: 1.5rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .factory-header {
    padding: 24px;
  }

  .factory-images {
    padding: 16px;
  }

  .factory-img {
    height: 200px;
  }

  .factory-stats {
    flex-direction: column;
    gap: 16px;
  }

  .factory-thumbnails {
    gap: 8px;
  }

  .factory-thumb {
    height: 50px;
  }

  .video-placeholder {
    height: 220px;
  }

  .video-play-button {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .video-benefits {
    padding: 20px;
  }

  .trust-footer {
    padding: 24px;
    text-align: center;
  }

  .trust-message {
    margin-bottom: 24px;
  }

  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -40px;
    font-size: 24px;
    width: 35px;
    height: 35px;
  }
}

/* Factory thumbnails container */
.factory-thumbnails {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Factory thumb SVG styling */
.factory-thumb {
  width: 100%;
  max-width: 280px;
  height: auto;
  min-height: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background: white;
  padding: 10px;
}

.factory-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .factory-thumbnails {
    padding: 10px;
    margin-top: 15px;
  }

  .factory-thumb {
    max-width: 100%;
    min-height: 150px;
  }
}

@media (min-width: 1200px) {
  .factory-thumb {
    max-width: 320px;
    min-height: 200px;
  }
}

/* CSS ADICIONAL - Adicione no final do seu CSS existente */

/* Modal Overlay */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.success-modal {
  background: white;
  border-radius: 24px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  margin: 20px;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.8) translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.success-modal-overlay.show .success-modal {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.success-modal-header {
  background: var(--gradient-primary);
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
  animation: successPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.success-modal-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success-modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
}

/* Modal Body */
.success-modal-body {
  padding: 40px 30px 30px;
  text-align: center;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neutral-300);
  transition: all 0.3s ease;
}

.step-dot.completed {
  background: var(--primary-green);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
}

.step-dot.active {
  background: var(--gradient-primary);
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.3);
  animation: pulse-active 1.5s ease-in-out infinite;
}

@keyframes pulse-active {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.3);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(45, 212, 191, 0.1);
  }
}

.step-text {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Modal Actions */
.success-modal-actions {
  padding: 0 30px 40px;
}

.btn-schedule {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.btn-schedule:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
  text-decoration: none;
}

.btn-schedule:hover::before {
  left: 100%;
}

.btn-schedule:active {
  transform: translateY(0);
}

.btn-later {
  background: transparent;
  border: 2px solid var(--neutral-300);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  margin-top: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-later:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: rgba(45, 212, 191, 0.05);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Confetti Animation */
.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(odd) {
  background: var(--accent-blue);
  animation-delay: -0.5s;
}

.confetti:nth-child(3n) {
  background: var(--accent-purple);
  animation-delay: -1s;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .success-modal {
    width: 95%;
    margin: 10px;
  }

  .success-modal-header {
    padding: 30px 20px 20px;
  }

  .success-modal-body {
    padding: 30px 20px 20px;
  }

  .success-modal-actions {
    padding: 0 20px 30px;
  }

  .success-modal-title {
    font-size: 1.5rem;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@keyframes softPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  5% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  10% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.cta-navbar {
  animation: softPulse 5s ease-in-out infinite;
}

.text-success {
  color: var(--primary-green) !important;
}

/* Custom CSS for the page */

/* CSS EXCLUSIVO PARA O MODAL PERSONALIZADO */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-modal-overlay.custom-show {
  opacity: 1;
  visibility: visible;
}

.custom-modal {
  background: var(--gradient-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-2xl);
  transform: translateY(30px) scale(0.9);
  transition: all 0.3s ease;
}

.custom-modal-overlay.custom-show .custom-modal {
  transform: translateY(0) scale(1);
}

.custom-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--neutral-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-modal-close:hover {
  background: var(--neutral-200);
  color: var(--text-primary);
  transform: rotate(90deg);
}

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

.custom-modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.custom-modal-icon i {
  color: white;
  font-size: 2.5rem;
}

.custom-modal-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.custom-modal-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 400;
}

.custom-modal-body {
  margin-bottom: 2rem;
}

.custom-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.custom-btn:hover::before {
  left: 100%;
}

.custom-btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.custom-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.custom-btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.custom-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.custom-form-group {
  margin-bottom: 1.5rem;
}

.custom-form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.custom-form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--neutral-100);
  box-sizing: border-box;
}

.custom-form-group input:focus {
  outline: none;
  border-color: var(--primary-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.custom-form-group input::placeholder {
  color: var(--neutral-400);
}

.custom-hidden {
  display: none !important;
}

.custom-show {
  display: flex !important;
}

/* Success Modal */
.custom-success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-success-modal-overlay.custom-show {
  opacity: 1;
  visibility: visible;
}

.custom-success-modal {
  background: var(--gradient-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-2xl);
  transform: translateY(30px) scale(0.9);
  transition: all 0.3s ease;
  text-align: center;
}

.custom-success-modal-overlay.custom-show .custom-success-modal {
  transform: translateY(0) scale(1);
}

.custom-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.custom-success-icon i {
  color: white;
  font-size: 2.5rem;
}

/* Confetti Animation */
@keyframes custom-confetti-fall {
  to {
    transform: translateY(400px) rotate(360deg);
    opacity: 0;
  }
}

.custom-confetti {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
}

/* Responsividade */
@media (max-width: 768px) {
  .custom-modal,
  .custom-success-modal {
    padding: 1.5rem;
    margin: 1rem;
  }

  .custom-modal-actions {
    flex-direction: column;
  }

  .custom-btn {
    min-width: 100%;
  }
}



.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.video-modal video {
    width: 100%;
    height: auto;
    min-width: 600px;
    min-height: 400px;
}