/* Rating Landing Page Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #2d3748;
  line-height: 1.5;
  font-size: 15px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #17E1A8;
}

.header-cta {
  background: #17E1A8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: #14c594;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #2d3748;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f9d58 0%, #17E1A8 100%);
  padding: 150px 0 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  color: #ffe066;
  font-weight: 700;
}

.mobile-break {
  display: none;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #ffe066;
}

.hero-subtitle {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-subtitle span {
  color: #ffe066;
  font-weight: 600;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f9d58;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-visual {
  text-align: center;
  position: relative;
}

.hero-visual .rating-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 320px;
  margin: 0 auto;
}

.rating-card .icon {
  font-size: 40px;
  color: #0f9d58;
  margin-bottom: 12px;
}

.rating-card .rating-label {
  font-size: 14px;
  color: #718096;
  margin-bottom: 5px;
}

.rating-card .rating-value {
  font-size: 42px;
  font-weight: 700;
  color: #0f9d58;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rating-card .rating-value i {
  font-size: 24px;
  color: #17E1A8;
}

.rating-card .rating-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  color: #0f9d58;
  font-weight: 600;
}

/* Status Card (Limpa Nome) */
/* Hero Image Styles */
.hero-image {
  width: 66%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* Problems Section */
.problems {
  padding: 60px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-card {
  background: #fef2f2;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid #fecaca;
}

.problem-card .icon {
  width: 40px;
  height: 40px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  color: #dc2626;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #991b1b;
}

/* For Whom Section */
.for-whom {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.for-whom-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid #d1fae5;
  transition: all 0.3s ease;
}

.for-whom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.12);
  border-color: #17E1A8;
}

.for-whom-card .icon {
  width: 40px;
  height: 40px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  color: #059669;
}

.for-whom-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #065f46;
}

.for-whom-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.problem-card p {
  font-size: 13px;
  color: #7f1d1d;
  opacity: 0.8;
  line-height: 1.5;
}

/* Carousel - Desktop (hidden) */
.carousel-wrapper {
  position: relative;
}

.carousel-btn {
  display: none;
}

/* Solution Section */
.solution {
  padding: 60px 0;
  background: #f5f7fa;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2d3748;
}

.solution-text h2 span {
  color: #0f9d58;
}

.solution-text p {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 30px;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #0f9d58;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 13px;
  color: #718096;
  margin: 0;
  line-height: 1.5;
}

.solution-image {
  text-align: center;
}

.solution-image .solution-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Modelo Container */
.modelo-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.modelo-image {
  width: 100%;
  height: auto;
  display: block;
}

/* CPF Status Card (Serasa Style) */
.cpf-status-card {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  max-width: 350px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.cpf-status-card:hover {
  transform: translateX(-50%) rotate(2deg) translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-color: #17E1A8;
}

.cpf-status-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 16px 0;
}

.cpf-status-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.cpf-status-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.cpf-status-message {
  font-size: 14px;
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

.cpf-status-link {
  display: inline-block;
  color: #e91e63;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cpf-status-link:hover {
  color: #c2185b;
  text-decoration: underline;
}

/* Your Right (CDC Art. 43) Section */
.your-right {
  padding: 60px 0;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.your-right-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.your-right-icon {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.your-right-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.your-right-text h2 {
  font-size: 24px;
  color: #1e293b;
  margin-bottom: 16px;
  font-weight: 700;
}

.cdc-article {
  background: #f8fafc;
  border-radius: 10px;
  padding: 18px;
}

.cdc-article a {
  color: #f59e0b;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cdc-article a:hover {
  color: #d97706;
}

.article-tag {
  display: inline-block;
  background: #fbbf24;
  color: #78350f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.highlight-text {
  font-size: 16px;
  color: #b45309;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}

.cdc-article p {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cdc-article p:last-child {
  margin-bottom: 0;
}

.legal-foundation {
  background: #fef3c7;
  padding: 12px;
  border-radius: 8px;
  margin-block: 16px;
  border-block: 2px solid #fbbf24;
  font-style: italic;
  font-size: 13px;
  color: #78350f;
  line-height: 1.6;
}

.law-quote {
  background: #fffbeb;
  border-block: 3px solid #fbbf24;
  padding: 16px;
  margin: 16px 0;
  border-radius: 8px;
  position: relative;
}

.law-quote i {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 16px;
  color: #f59e0b;
  opacity: 0.3;
}

.law-quote p {
  font-style: italic;
  color: #78350f;
  font-weight: 500;
  margin: 0;
  padding-left: 26px;
  line-height: 1.6;
  font-size: 13px;
}

.negativation-flow {
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #fef3c7;
}

.negativation-flow h4 {
  font-size: 16px;
  color: #78350f;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 100px;
}

.flow-icon {
  width: 40px;
  height: 40px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #f59e0b;
  transition: all 0.3s ease;
}

.flow-step:hover .flow-icon {
  transform: scale(1.1);
  background: #fbbf24;
  color: #fff;
}

.flow-step-negative .flow-icon {
  background: #fee2e2;
  color: #dc2626;
}

.flow-step-negative:hover .flow-icon {
  background: #dc2626;
  color: #fff;
}

.flow-step p {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.flow-arrow {
  font-size: 20px;
  color: #d97706;
  flex-shrink: 0;
}

.flow-violation {
  background: #fef3c7;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #78350f;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.flow-violation i {
  font-size: 18px;
  color: #f59e0b;
}

/* Benefits Section */
.benefits {
  padding: 60px 0;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #bbf7d0;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 157, 88, 0.12);
}

.benefit-card .icon {
  width: 40px;
  height: 40px;
  background: #0f9d58;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin: 0 auto 14px auto;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #166534;
}

.benefit-card p {
  font-size: 13px;
  color: #15803d;
  opacity: 0.9;
  line-height: 1.4;
}

/* Pricing Section */
/* CTA Section (Limpa Nome) */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f9d58 0%, #17E1A8 100%);
}

.cta-card {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.cta-content h2 {
  font-size: 36px;
  color: #0f9d58;
  margin-bottom: 15px;
  text-align: center;
}

.cta-content > p {
  font-size: 16px;
  color: #4a5568;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.cta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #d1fae5;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-feature:hover {
  border-color: #0f9d58;
  box-shadow: 0 4px 12px rgba(15, 157, 88, 0.08);
  transform: translateY(-2px);
}

.cta-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0f9d58 0%, #0d8a4d 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-feature-icon i {
  color: #fff;
  font-size: 18px;
}

.cta-feature-content {
  text-align: center;
}

.cta-feature-content h4 {
  font-size: 16px;
  color: #1a202c;
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.3;
}

.cta-feature-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.payment-conditions {
  background: #fff9e6;
  border-block: 3px solid #fbbf24;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.payment-conditions p {
  margin-bottom: 10px;
  color: #78350f;
  font-size: 16px;
}

.payment-conditions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.payment-conditions li {
  color: #78350f;
  font-size: 14px;
  line-height: 1.8;
  padding: 5px 0;
}

.payment-conditions strong {
  color: #b45309;
}

.cta-button {
  display: block;
  background: #0f9d58;
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 30px;
}

.cta-button:hover {
  background: #0d8a4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15,157,88,0.3);
}

.payment-info {
  background: #f8fafc;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.payment-title {
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  text-align: center;
  margin-bottom: 15px;
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.payment-logos img {
  height: 40px;
  opacity: 0.8;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.payment-methods span {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-methods i {
  color: #17E1A8;
}

/* Social Proof Section */
.social-proof {
  padding: 60px 0;
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background: #f7fafc;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #17E1A8;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #17E1A8, #14c594);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}

.review-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #718096;
}

.review-stars {
  color: #ffc107;
  font-size: 14px;
}

.review-service {
  font-size: 12px;
  color: #17E1A8;
  font-weight: 500;
  margin-top: 4px;
}

.review-debt {
  font-size: 12px;
  color: #718096;
  font-weight: 500;
  margin-top: 4px;
}

.review-debt i {
  color: #17E1A8;
  margin-right: 4px;
  width: 14px;
  display: inline-block;
  text-align: center;
}

.review-text {
  color: #4a5568;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #718096;
}

.review-footer i {
  color: #17E1A8;
  margin-right: 4px;
  width: 14px;
  display: inline-block;
  text-align: center;
}

.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: #17E1A8;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn:hover {
  background: #14c594;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(23, 225, 168, 0.3);
}

.load-more-btn:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
}

.reviews-loading {
  text-align: center;
  padding: 40px;
  color: #718096;
}

.spinner {
  border: 3px solid #f3f4f6;
  border-top: 3px solid #17E1A8;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-service-group {
  margin-bottom: 48px;
}

.faq-service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #17E1A8;
}

.faq-service-header i {
  font-size: 24px;
  color: #17E1A8;
}

.faq-service-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.faq-more-link:hover {
  gap: 12px;
}

.faq-item {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #17E1A8;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #fff;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(23, 225, 168, 0.03);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-icon {
  font-size: 20px;
  color: #17E1A8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 8px 24px 24px;
  max-height: 1000px;
}

.faq-answer p {
  color: #718096;
  line-height: 1.8;
  font-size: 15px;
  margin: 0 0 12px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* CTA Final */
.cta-final {
  padding: 60px 0;
  background: #1a365d;
  color: #fff;
  text-align: center;
}

.cta-final h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-final p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-final .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-final .cta-btn:hover {
  background: #20ba5a;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: #1a202c;
  color: #cbd5e0;
  padding: 50px 0 30px;
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #17E1A8;
  color: #fff;
}

.footer-section h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #17E1A8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }

  .logo img {
    height: 50px;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    z-index: 99;
  }

  .header-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-toggle.active i {
    color: #17E1A8;
  }

  .header-cta {
    font-size: 13px;
    padding: 8px 12px;
    gap: 6px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero {
    padding: 150px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero-visual .rating-card {
    max-width: 250px;
    padding: 20px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-height: 55vh;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    margin-top: -70px;
    margin-bottom: 0;
    display: block;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero-badge {
    order: -2;
    margin-top: -40px;
    margin-bottom: 20px;
  }

  .rating-card .rating-value {
    font-size: 36px;
  }

  .status-card .status-value {
    font-size: 22px;
  }

  /* Carousel Mobile */
  .carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 45px;
    margin: 0 -20px;
  }

  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #17E1A8;
    border-radius: 50%;
    color: #17E1A8;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  .carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    background: #17E1A8;
    color: #fff;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }

  .carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 0 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .carousel-container::-webkit-scrollbar {
    display: none;
  }

  .problems-grid.carousel-container .problem-card,
  .for-whom-grid.carousel-container .for-whom-card {
    flex: 0 0 calc(85% - 10px);
    scroll-snap-align: start;
    min-width: calc(85% - 10px);
  }

  .problems-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .solution-image {
    order: -1;
  }

  .cpf-status-card {
    max-width: 100%;
  }

  .your-right-content {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    text-align: center;
  }

  .your-right-icon {
    width: 100px;
    height: auto;
  }

  .your-right-text h2 {
    font-size: 20px;
  }

  .highlight-text {
    font-size: 15px;
  }

  .cdc-article {
    padding: 15px;
  }

  .flow-steps {
    flex-direction: column;
    gap: 20px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-step {
    width: 100%;
  }

  .negativation-flow {
    padding: 20px;
  }

  .negativation-flow h4 {
    font-size: 16px;
  }

  .flow-violation {
    font-size: 13px;
    flex-direction: column;
    gap: 8px;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    gap: 12px;
  }

  .cta-feature-icon {
    width: 40px;
    height: 40px;
  }

  .cta-feature-icon i {
    font-size: 18px;
  }

  .cta-feature-content h4 {
    font-size: 16px;
  }

  .cta-feature-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 30px;
  }

  .payment-logos {
    flex-wrap: wrap;
    gap: 15px;
  }

  .payment-logos img {
    height: 32px;
  }

  .payment-methods {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .payment-methods span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .payment-methods i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .cta-final h2 {
    font-size: 24px;
  }

  .cta-final .cta-btn {
    padding: 16px 30px;
    font-size: 16px;
  }
}

/* ===================================
   LIMPA NOME SPECIFIC STYLES
   =================================== */

/* Status Card (Hero Visual) */
.status-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.status-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.status-before, .status-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.status-before .label, .status-after .label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

.status-before .value, .status-after .value {
  font-size: 22px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

.status-before .value.negative {
  background: rgba(239, 68, 68, 0.3);
  color: #fff;
}

.status-after .value.positive {
  background: rgba(16, 185, 129, 0.3);
  color: #fff;
}

.status-card .arrow {
  font-size: 24px;
  opacity: 0.8;
}

/* Legal Section */
.legal-section {
  padding: 60px 0;
  background: #fff;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.legal-card {
  background: linear-gradient(135deg, #f7fafc 0%, #fff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #17E1A8;
}

.legal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #17E1A8, #14c594);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}

.legal-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d3748;
}

.legal-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #718096;
}

/* How It Works Section */
.how-it-works {
  padding: 60px 0;
  background: #f5f7fa;
}

.steps {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-color: #17E1A8;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #17E1A8, #14c594);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3748;
}

.step-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #718096;
}

/* Included Section */
.included-section {
  padding: 60px 0;
  background: #fff;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f7fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.included-item:hover {
  background: #fff;
  border-color: #17E1A8;
  transform: translateX(5px);
}

.included-item i {
  font-size: 24px;
  color: #17E1A8;
  flex-shrink: 0;
}

.included-item span {
  font-size: 14px;
  font-weight: 500;
  color: #2d3748;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f9d58 0%, #17E1A8 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content > h2 + p {
  font-size: 15px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-section .cta-button {
  background: #fff;
  color: #17E1A8;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background: #1a202c;
  color: #cbd5e1;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-links h4, .footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #17E1A8;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: #17E1A8;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #17E1A8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .status-card {
    padding: 20px;
  }

  .status-card .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .status-before .value, .status-after .value {
    font-size: 18px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-content > h2 + p {
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Important Notice Box */
.important-notice {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
  border: 2px solid #ff9800;
  border-radius: 16px;
  padding: 25px 30px;
  margin: 30px 0 50px;
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #e65100;
  font-weight: 700;
  font-size: 18px;
}

.notice-header i {
  font-size: 24px;
}

.notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #5d4037;
}

.notice-list li::before {
  content: '•';
  color: #ff9800;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.notice-list li strong {
  color: #e65100;
}

@media (max-width: 768px) {
  .important-notice {
    padding: 20px;
  }

  .notice-header {
    font-size: 16px;
  }

  .notice-list li {
    font-size: 13px;
  }
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #fff 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-content {
  padding: 30px;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(23, 225, 168, 0.1), rgba(23, 225, 168, 0.05));
  color: #17E1A8;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  gap: 12px;
  color: #14c594;
}

.blog-link i {
  font-size: 12px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17E1A8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

.service-cta:hover {
  gap: 12px;
}

.service-cta i {
  font-size: 14px;
}

/* CTA Intermediário */
.cta-intermediate {
  padding: 60px 0;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  text-align: center;
  color: #fff;
}

.cta-intermediate h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-intermediate p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.cta-intermediate .cta-btn {
  background: #fff;
  color: #0f766e;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-intermediate .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f0fdf4;
}

.cta-intermediate .cta-btn i {
  font-size: 20px;
}
