/* Badges */
.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(1, 74, 157, .2);
}

/* Botoes */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition_speed) ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 74, 157, .4);
}

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

.btn-secondary:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 41, 59, .3);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-phone {
  background: #fff;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-phone:hover {
  background: var(--bg-light);
  border-color: var(--text-muted);
}

/* Hamburger Span open modifications */
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  color: var(--primary);
}

.trust-text {
  font-size: .9rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

.hero-img-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
  overflow: hidden;
  padding: 20px;
}

.hero-stat {
  position: absolute;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-1 {
  top: 20px;
  right: -20px;
}

.hero-stat-2 {
  bottom: 40px;
  left: -20px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stat-icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.stat-icon-blue {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.stat-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

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

/* Comparison Box */
.comparison-box {
  display: flex;
  gap: 16px;
  align-items: center;
}

.comparison-side {
  flex: 1;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.comparison-before {
  background: linear-gradient(135deg, #fee2e2, #fef3c7);
  border: 2px solid #fca5a5;
}

.comparison-after {
  background: linear-gradient(135deg, #dcfce7, #ffedd5);
  border: 2px solid #86efac;
}

.comparison-label {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.comparison-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.comparison-before .comparison-price {
  color: #dc2626;
}

.comparison-after .comparison-price {
  color: #16a34a;
}

.comparison-price span {
  font-size: 1rem;
  font-weight: 500;
}

.comparison-arrow {
  color: var(--primary);
  font-size: 1.5rem;
}

.issue, .benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  padding: 4px 0;
}

.issue {
  color: #dc2626;
}

.benefit {
  color: #16a34a;
}

/* Cards */
.problem-card, .service-card, .benefit-card, .testimonial-card, .step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition_speed) ease;
}

.problem-card:hover, .service-card:hover, .benefit-card:hover, .testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(1, 74, 157, .1);
  transform: translateY(-4px);
}

.problem-icon, .service-icon, .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.problem-icon {
  background: #fef2f2;
  color: #dc2626;
}

.service-icon, .benefit-icon {
  background: linear-gradient(135deg, var(--primary-light), #ffedd5);
  color: var(--primary);
  margin-left: auto;
  margin-right: auto;
}

.service-icon {
  margin-bottom: 14px;
}

.problem-card h3, .benefit-title, .service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card h4 {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.problem-card p, .benefit-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Solution section elements */
.solution-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.solution-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.solution-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.solution-feature p {
  font-size: .9rem;
  color: var(--text-muted);
}

.price-card {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(1, 74, 157, .3);
  max-width: 340px;
}

.price-label {
  font-size: .9rem;
  font-weight: 600;
  opacity: .9;
  margin-bottom: 12px;
}

.price-installment {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 1;
  margin-bottom: 24px;
}

.price-comparison {
  background: rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 16px;
}

.compare-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .9rem;
}

.compare-item.save {
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin-top: 8px;
  padding-top: 12px;
}

.save-amount {
  font-weight: 700;
}

/* Steps */
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

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

.step-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials clientlogos */
.client-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .02em;
  opacity: .7;
  transition: opacity var(--transition_speed);
}

.client-logo:hover {
  opacity: 1;
  color: var(--primary);
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
}

.author-city {
  font-size: .8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition_speed) ease, box-shadow var(--transition_speed) ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(1, 74, 157, .05);
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition_speed);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  color: var(--text-muted);
  transition: transform .3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out, padding .3s ease-out;
  padding: 0 24px;
  background: var(--bg-light);
}

.faq-item.open .faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* WhatsApp Float floater button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform .3s, box-shadow .3s;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
  animation-play-state: paused;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}
