/* 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.6;
}

/* 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: 200px 0 80px;
  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-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ffe066;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0f9d58;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  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: 50px;
  color: #0f9d58;
  margin-bottom: 15px;
}

.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;
}

/* Problems Section */
.problems {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.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: 30px;
}

.problem-card {
  background: #fef2f2;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid #fecaca;
}

.problem-card .icon {
  width: 60px;
  height: 60px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #dc2626;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #991b1b;
}

.problem-card p {
  font-size: 14px;
  color: #7f1d1d;
  opacity: 0.8;
}

/* Solution Section */
.solution {
  padding: 80px 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: 36px;
  height: 36px;
  background: #0f9d58;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

.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);
}

/* Benefits Section */
.benefits {
  padding: 80px 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: 16px;
  padding: 30px;
  border: 1px solid #bbf7d0;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 157, 88, 0.15);
}

.benefit-card .icon {
  width: 50px;
  height: 50px;
  background: #0f9d58;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin: 0 auto 20px auto;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #166534;
}

.benefit-card p {
  font-size: 14px;
  color: #15803d;
  opacity: 0.9;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f9d58 0%, #17E1A8 100%);
  color: #fff;
}

.pricing .section-title h2,
.pricing .section-title p {
  color: #fff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  color: #2d3748;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.pricing-card .badge {
  display: inline-block;
  background: #0f9d58;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #0f9d58;
  margin-bottom: 5px;
}

.pricing-card .price-detail {
  font-size: 14px;
  color: #718096;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li i {
  color: #0f9d58;
}

.pricing-card .cta {
  display: block;
  background: #0f9d58;
  color: #fff;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-card .cta:hover {
  background: #0d8a4d;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* Social Proof Section */
.social-proof {
  padding: 80px 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: 16px;
  padding: 30px;
  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,
.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.faq-icon,
.faq-question i {
  font-size: 20px;
  color: #17E1A8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon,
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  color: #718096;
  line-height: 1.7;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  padding: 8px 24px 20px;
  max-height: 1000px;
}

.faq-answer p {
  color: #718096;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* 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;
}

.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;
}

.blog-loading {
  text-align: center;
  padding: 2rem;
  grid-column: 1 / -1;
  color: #718096;
}

.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 Final */
.cta-final {
  padding: 80px 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);
}

/* Carousel buttons - hidden by default (desktop) */
.carousel-btn {
  display: none;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .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;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .hero-visual .rating-card {
    max-width: 250px;
    padding: 20px;
  }

  .rating-card .rating-value {
    font-size: 36px;
  }

  /* 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,
  .benefits-grid.carousel-container .benefit-card {
    flex: 0 0 calc(85% - 10px);
    scroll-snap-align: start;
    min-width: calc(85% - 10px);
  }

  .pricing-cards.carousel-container .pricing-card {
    flex: 0 0 calc(96% - 10px);
    scroll-snap-align: start;
    min-width: calc(96% - 10px);
  }

  /* Esconde setas apenas no pricing */
  .carousel-wrapper:has(.pricing-cards) .carousel-btn {
    display: none;
  }

  /* Ajusta padding do wrapper do pricing */
  .carousel-wrapper:has(.pricing-cards) {
    padding: 0 5px 0 12px;
  }

  .problems-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .solution-image {
    order: -1;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .cta-final h2 {
    font-size: 24px;
  }

  .cta-final .cta-btn {
    padding: 16px 30px;
    font-size: 16px;
  }
}

/* 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;
}
