/* ========== STYLE.CSS - Click & Gruda ========== */
/* Inclui: Hero, Cards, Carrossel, FAQ, Tabela Preços, Prova Social, Popup, Botões Flutuantes, Animações */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
}

/* Grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(234, 88, 12, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 88, 12, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Pulsating dots */
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-main);
  opacity: 0;
  animation: dotPulse 4s infinite;
}

.hero-dot:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hero-dot:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.5s; }
.hero-dot:nth-child(3) { top: 60%; left: 5%; animation-delay: 1s; }
.hero-dot:nth-child(4) { top: 75%; left: 80%; animation-delay: 1.5s; }
.hero-dot:nth-child(5) { top: 40%; left: 50%; animation-delay: 2s; }
.hero-dot:nth-child(6) { top: 10%; left: 45%; animation-delay: 2.5s; }
.hero-dot:nth-child(7) { top: 85%; left: 30%; animation-delay: 3s; }
.hero-dot:nth-child(8) { top: 50%; left: 90%; animation-delay: 3.5s; }
.hero-dot:nth-child(9) { top: 30%; left: 25%; animation-delay: 0.8s; }
.hero-dot:nth-child(10) { top: 70%; left: 60%; animation-delay: 1.8s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0; transform: scale(0); }
  25% { opacity: 0.8; transform: scale(1); box-shadow: 0 0 12px rgba(234, 88, 12, 0.8); }
  50% { opacity: 0.3; transform: scale(0.6); box-shadow: 0 0 6px rgba(234, 88, 12, 0.3); }
  75% { opacity: 0.8; transform: scale(1); box-shadow: 0 0 12px rgba(234, 88, 12, 0.8); }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-orb-1 {
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15), transparent);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--orange-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-main);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title .highlight-glow {
  position: relative;
  display: inline-block;
}

.hero-title .highlight-glow::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(234, 88, 12, 0.2);
  filter: blur(8px);
  border-radius: 4px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(234, 88, 12, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(234, 88, 12, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--orange-main);
  background: rgba(234, 88, 12, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 96px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-dark {
  background: linear-gradient(180deg, #0a0a0a, #111);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--orange-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CARDS DESTAQUE ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.featured-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(234, 88, 12, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-card:hover::before {
  opacity: 1;
}

.featured-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.3), transparent, rgba(234, 88, 12, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-card:hover::after {
  opacity: 1;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.15);
  border-color: rgba(234, 88, 12, 0.2);
}

.featured-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
  position: relative;
  z-index: 1;
}

.featured-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.featured-card p {
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.featured-card .price-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: rgba(234, 88, 12, 0.15);
  border-radius: 50px;
  color: var(--orange-light);
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* ===== CARROSSEL ===== */
.carrossel-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #111, #0a0a0a);
  overflow: hidden;
}

.carrossel-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.carrossel-track {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.carrossel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carrossel-item {
  flex-shrink: 0;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-200);
  white-space: nowrap;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carrossel-item:hover {
  border-color: rgba(234, 88, 12, 0.3);
  background: rgba(234, 88, 12, 0.08);
  color: var(--orange-light);
  transform: translateY(-2px);
}

.carrossel-item .emoji {
  font-size: 1.2rem;
}

/* ===== PRICING TABLE ===== */
.pricing {
  padding: 96px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(234, 88, 12, 0.3);
  background: linear-gradient(145deg, #1f1208, #1a0d05);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(234, 88, 12, 0.15);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(234, 88, 12, 0.1), transparent 70%);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--gradient-orange);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-400);
}

.pricing-desc {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--gray-300);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li .check {
  color: var(--orange-main);
  font-weight: 700;
}

.pricing-features li .x {
  color: var(--gray-600);
}

.pricing-cta {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.pricing-cta.premium {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3);
}

.pricing-cta.premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.5);
}

.pricing-cta.free {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cta.free:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===== COMO FUNCIONA ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.3);
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(234, 88, 12, 0.3);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 44px;
  right: -32px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-main), transparent);
}

.step-card:last-child .step-connector {
  display: none;
}

/* ===== PROVA SOCIAL / DEPOIMENTOS ===== */
.testimonials {
  padding: 96px 24px;
  background: linear-gradient(180deg, #111, #0a0a0a);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 88, 12, 0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.testimonial-stars {
  color: var(--orange-main);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(234, 88, 12, 0.15);
}

.faq-item.active {
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--orange-light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--gradient-orange);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== POPUP EXIT ===== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.exit-popup-overlay.show {
  display: flex;
}

.exit-popup {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.4s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.exit-popup-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.exit-popup h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.exit-popup h3 span {
  color: var(--orange-main);
}

.exit-popup p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.exit-popup .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7); }
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  background: rgba(0,0,0,0.8);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Back to top button */
.back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--gradient-orange);
  border-color: transparent;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  
  .featured-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { padding: 24px 20px; }
  .pricing-card { padding: 32px 24px; }
  .hero { padding: 100px 16px 60px; }
}
/* ===== CORREÇÃO DE CAMINHOS DAS PÁGINAS INTERNAS ===== */
/* Garante que o footer e header carreguem corretamente */
#header-placeholder,
#footer-placeholder {
  width: 100%;
}