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

:root {
  --orange-main: #f47a1f;
  --orange-dark: #d96a15;
  --orange-light: #ffd199;
  --yellow-accent: #ffcc00;
  --bg-soft: #fdfdfd;
  --bg-soft-alt: #fff8f1;
  --text-main: #1f1a17;
  --text-muted: #3c352f;
  --text-light: #6b5d52;
  --white: #ffffff;
  --gray-100: #f5f0eb;
  --gray-200: #e8dfd6;
  --gray-300: #d4c8bc;
  --shadow: 0 4px 6px -1px rgba(31, 26, 23, 0.1), 0 2px 4px -1px rgba(31, 26, 23, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(31, 26, 23, 0.1), 0 8px 10px -6px rgba(31, 26, 23, 0.08);
  --shadow-xl: 0 20px 40px -10px rgba(31, 26, 23, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-soft);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 44px);
}

h3 {
  font-size: 1.125rem;
}

/* Buttons */
.btn.btn-primary.center {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  width: 100%;
  max-width: 400px;
}

.btn-primary {
  background-color: var(--orange-main);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244, 122, 31, 0.35);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 122, 31, 0.4);
}

.btn-white {
  background-color: var(--white);
  color: var(--orange-main);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background-color: var(--bg-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-full {
  width: 100%;
  margin-top: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1f1a17;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.scrolled {
  background: #3c352f;
  box-shadow: var(--shadow);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.partner-logo {
  height: 32px;
  width: auto;
  display: none;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f5f0eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav-link-cta {
  color: var(--orange-main);
  font-weight: 600;
}

.header-badge {
  display: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile .nav-link {
  font-size: 1rem;
  padding: 8px 0;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(assets/bg-hero.webp);
  background-size: cover;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  opacity: 0.15;
}

.hero-shape-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.logos-div {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: center;
}

.hero-text .eyebrow {
  font-size: 0.875rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.9;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text .subtitle {
  font-size: 1.125rem;
  opacity: 1;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ffffff4f;
  padding: 10px;
  border-radius: 10px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  opacity: 0.87;
}

.hero-benefits li svg {
  flex-shrink: 0;
}

/* Simulator Card */
.simulator-card {
  background-color: #ffffff8c;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(17px);
}

.card-view {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card-view.hidden {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.simulator-view {
  transform: translateX(0);
}

.form-view {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.form-view.active {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.simulator-view.hidden {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.card-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.4;
}

.card-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Category Dropdown */
.category-dropdown {
  position: relative;
  margin-bottom: 24px;
}

.dropdown-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.dropdown-button:hover,
.dropdown-button:focus {
  border-color: var(--orange-main);
  outline: none;
}

.dropdown-button svg {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.dropdown-button.open svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu button {
  width: 100%;
  padding: 12px 20px;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-menu button:hover {
  background-color: var(--bg-soft);
}

.dropdown-menu button:first-child {
  border-radius: 6px 6px 0 0;
}

.dropdown-menu button:last-child {
  border-radius: 0 0 6px 6px;
}

/* Toggle Tabs */
.option-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.toggle-tabs {
  position: relative;
  display: flex;
  background-color: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 24px;
}

.toggle-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background-color: var(--orange-main);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease;
  z-index: 1;
}

.toggle-bg.right {
  transform: translateX(100%);
}

.tab {
  flex: 1;
  padding: 12px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.3s ease;
  background-color: transparent;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.tab.active {
  color: var(--white);
}

.slider-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Price Display */
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 24px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.price-cents {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Slider */
.slider-container {
  margin-bottom: 32px;
}

.slider-track {
  position: relative;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  margin-bottom: 12px;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--orange-main);
  border-radius: 3px;
  pointer-events: none;
  transition: width 0.1s ease;
}
#slider-fill {
  pointer-events: none;   /* deixa o mouse passar e atingir o range */
}

#price-slider {
  cursor: pointer;        /* cursor de "clicável" bonitinho */
}
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-main);
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(244, 122, 31, 0.4);
  margin-top: -9px;
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-main);
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(244, 122, 31, 0.4);
}

.slider-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  \: ;
  opacity: 0;
}

.credit-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.credit-value {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* Form View */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
  background-color: var(--white);
  color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange-main);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.back-link {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--orange-main);
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.why-choose-svg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-svg {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* SVG Animations */
.car-body {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawCar 2s ease forwards;
}

@keyframes drawCar {
  to {
    stroke-dashoffset: 0;
  }
}

.wheel {
  animation: spinWheel 2s linear infinite;
  transform-origin: center;
}

@keyframes spinWheel {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.orbit {
  animation: pulse 3s ease-in-out infinite;
}

.orbit-1 {
  animation-delay: 0s;
}

.orbit-2 {
  animation-delay: 0.75s;
}

.orbit-3 {
  animation-delay: 1.5s;
}

.orbit-4 {
  animation-delay: 2.25s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.connection {
  animation: dash 2s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -8;
  }
}

.why-choose-text h2 {
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 20px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-main);
}

.benefits-list li svg {
  flex-shrink: 0;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-main);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: var(--bg-soft-alt);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  gap: 12px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.timeline-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  background: -webkit-linear-gradient(#f47a1f, #fff8f1 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-content {
  padding-bottom: 32px;
}

.timeline-content h3 {
  margin-bottom: 8px;
  color: var(--text-main);
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.timeline-connector {
  width: 2px;
  height: 32px;
  background-color: var(--orange-main);
  margin-left: 27px;
  opacity: 0.3;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column-reverse;
}

.testimonial-header>* {
  flex: 1;
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--orange-main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  max-width: 48px;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-main);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--bg-soft-alt);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--bg-soft);
}

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

.accordion-item {
  background-color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--bg-soft);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange-main);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange-main) 0%, var(--orange-dark) 100%);
}

.final-cta-content {
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 40px 0;
  background-color: var(--text-main);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-cnpj,
.footer-address {
  font-size: 0.875rem;
  color: var(--gray-300);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (min-width: 768px) {
  .partner-logo {
    display: block;
  }

  .header-badge {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .simulator-card {
    margin: 0;
  }

  .why-choose-content {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    flex-direction: row;
    justify-content: space-between;
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    border-radius: 10px;
    border: 1px solid #0000001a;
    padding: 20px;
  }

  .timeline-content {
    padding-bottom: 0;
  }

  .timeline-connector {
    display: none;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-info {
    align-items: flex-start;
  }
}

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

.laranja {
  color: #d96a15;
}

@media (max-width: 768px) {
  dotlottie-wc {
    width: 310px !important;
    height: 310px !important;
  }

  .benefits-list {
    font-size: 16px;
  }

  .hero-text .eyebrow {
    font-size: 12px;
  }

  .logos-div {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  .hero-text{
    text-align: center;
  }
  .hero-benefits li{
    justify-content: center;
  }
  .testimonial-name{
    font-size: 20px;
  }
  .testimonial-header svg{
    max-height: 70px;
  }
}
.logo-hero{
  max-height: 230px;
  max-width: 50%;
  height: 100%;
}
/* Seção Troca de Chave */
.chave-offer {
  padding: 80px 0;
  background-color: var(--bg-soft-alt);
}

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

.chave-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 20px auto 32px;
  line-height: 1.7;
  max-width: 700px;
}
.form-view #btn-form{
    pointer-events: none;
}
.form-view.active #btn-form{
    pointer-events: all;
}