/*=====================================================
Template Name   : Lidz
Description     : B2B Plataform
Author          : Paulo Maculuve & Rafael Munguambe
Version         : 1.1
=======================================================*/

:root {
  --primary-color: var(--primary-dark);
  --primary-dark: #012a5c;
  --primary-light: #2a5c9a;
  --accent-color: #ff6b35;
  --accent-light: #ff8c5a;
  --success-color: #28a745;
  --gradient-primary: linear-gradient(135deg, #013777 0%, #2a5c9a 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  --text-dark: #2d3748;
  --text-light: #718096;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-large: 0 30px 60px rgba(0, 0, 0, 0.15);
}
/* About Section Styles */
.about {
  padding: 100px 0;
  margin: 100px 0;
  background-color: #e6f2ff;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: translateY(-5px);
}

.about-content {
  padding-left: 30px;
}

.title-color {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 3.2em;
  line-height: 1.2;
}

.about-content p {
  /* font-size: 1.1em; */
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

.feature-list {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  background-color: #ec6928;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text h4 {
  /* font-size: 1.1em; */
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.feature-text p {
  /* font-size: 0.95em; */
  margin-bottom: 0;
  color: #666;
}
.info-box {
  background: white;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid #013777;

  /* Para garantir alturas iguais dentro da row */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-box-icon-top {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  flex-grow: 1; /* faz o conteúdo ocupar altura igual */
}

.info-box-icon-top i {
  font-size: 2.5rem !important;
  color: #ec6928 !important;
  margin-bottom: 20px !important;
  background: #e6f2ff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-box:hover .info-box-icon-top i {
  background: var(--primary-dark);
  color: white;
  transform: scale(1.1);
}

.info-box-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.info-box-content h4 {
  color: var(--primary-dark) !important;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3em;
  min-height: 50px; /* mantém títulos alinhados */
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e6f2ff 100%);
}

.pricing-section.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-section .section-title h2 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 15px;
  /* position: relative; */
  display: inline-block;
}

.pricing-section .section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
}

.pricing-section .section-title p {
  color: #666;
  font-size: 1.1em;
  max-width: 600px;
  margin: 25px auto 0;
}

.pricing-section .pricing-tabs {
  margin-bottom: 40px;
  border-bottom: 2px solid #e0e0e0;
}

.pricing-section .pricing-tabs .nav-link {
  color: #666;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  background: transparent;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-section .pricing-tabs .nav-link.active {
  color: var(--primary-dark);
  background: transparent;
}

.pricing-section .pricing-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-dark);
}

.pricing-section .pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid #f0f0f0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-section .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-dark);
}

.pricing-section .pricing-card.popular {
  border-color: #ff6b35;
  transform: scale(1.05);
}

.pricing-section .pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-section .popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #ff6b35;
  color: white;
  padding: 8px 40px;
  font-size: 0.8em;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-section .pricing-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.pricing-section .plan-name {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.pricing-section .plan-description {
  color: #666;
  font-size: 0.95em;
}

.pricing-section .price-amount {
  font-size: 3em;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 20px 0;
}

.pricing-section .pricing-card.popular .price-amount {
  color: #ff6b35;
}

.pricing-section .price-period {
  color: #666;
  font-size: 0.9em;
}

.pricing-section .price-symbol {
  font-size: 1.5em;
  vertical-align: super;
}

.pricing-section .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.pricing-section .features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
}

.pricing-section .features-list li:last-child {
  border-bottom: none;
}

.pricing-section .feature-icon {
  width: 24px;
  height: 24px;
  background: #e6f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.pricing-section .feature-icon i {
  font-size: 0.8em;
  color: var(--primary-dark);
}

.pricing-section .pricing-card.popular .feature-icon {
  background: rgba(255, 107, 53, 0.1);
}

.pricing-section .pricing-card.popular .feature-icon i {
  color: #ff6b35;
}

.pricing-section .btn-pricing {
  width: 100%;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.pricing-section .btn-basic {
  background: #e6f2ff;
  color: var(--primary-dark);
  border: 2px solid #e6f2ff;
}

.pricing-section .btn-basic:hover {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
}

.pricing-section .btn-popular {
  background: #ff6b35;
  color: white;
  border: 2px solid #ff6b35;
}

.pricing-section .btn-popular:hover {
  background: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
}

.pricing-section .btn-enterprise {
  background: white;
  color: var(--primary-dark);
  border: 2px solid #013777;
}

.btn-enterprise:hover {
  background: var(--primary-dark);
  color: white;
}

.pricing-section .savings-badge {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  margin-top: 10px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: #fafbfc;
}

.how-it-works-section {
  padding: 120px 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(1, 55, 119, 0.03) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 107, 53, 0.03) 0%,
      transparent 20%
    ),
    linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle,
      rgba(1, 55, 119, 0.04) 0%,
      transparent 70%
    ),
    radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, 10px) rotate(1deg);
  }
  50% {
    transform: translate(0, 20px) rotate(0deg);
  }
  75% {
    transform: translate(-10px, 10px) rotate(-1deg);
  }
}

.container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.section-title {
  font-size: 3.5em;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.3em;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Processo Principal */
.process-container {
  position: relative;
  margin: 80px 0;
}

.process-line {
  position: absolute;
  top: 120px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--primary-light) 25%,
    #6ba8eb 50%,
    var(--accent-color) 75%,
    var(--accent-light) 100%
  );
  border-radius: 10px;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(1, 55, 119, 0.2);
}

.process-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.step-wrapper {
  position: relative;
  z-index: 3;
}

.step-card {
  background: var(--gradient-card);
  border-radius: 24px;
  padding: 50px 35px 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.step-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-large);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number-container {
  position: relative;
  margin-bottom: 30px;
}

.step-number-bg {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(1, 55, 119, 0.3);
  transition: all 0.5s ease;
}

.step-card:hover .step-number-bg {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(1, 55, 119, 0.4);
}

.step-number {
  font-size: 2.2em;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 2;
}

.step-number-bg::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.3;
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

.step-icon-container {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 22px;
  margin: -45px auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 4;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon-container {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-icon {
  font-size: 2.5em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card:hover .step-content h3 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content p {
  color: var(--text-light);
  font-size: 1em;
  margin-bottom: 25px;
  line-height: 1.7;
}

.step-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 55, 119, 0.08);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step-card:hover .step-meta {
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.step-meta i {
  font-size: 0.8em;
}

/* Destaques Especiais */
.step-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid rgba(1, 55, 119, 0.1);
  transform: scale(1.05);
}

.step-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.75em;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 100px;
  padding: 70px 50px;
  background: var(--gradient-primary);
  border-radius: 30px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #fff;
  font-size: 2.6em;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.3em;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-premium {
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s;
}

.btn-premium:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-premium:hover i {
  transform: translateX(5px);
}

.separate-carousels-section {
  padding: 100px 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(1, 55, 119, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 107, 53, 0.03) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}


/* Carousel Sections */
.carousel-section {
  margin-bottom: 100px;
  position: relative;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
}

.section-label-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
  box-shadow: 0 8px 20px rgba(1, 55, 119, 0.3);
}

.services .section-label-icon {
  background: var(--gradient-success);
}

.section-label-content h2 {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services .section-label-content h2 {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label-content p {
  color: var(--text-light);
  font-size: 1.1em;
  margin-bottom: 0;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  padding: 0 60px;
}

.category-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 25px;
  padding: 10px 5px;
}

.category-slide {
  flex: 0 0 calc(25% - 20px);
  min-width: 300px;
  transition: all 0.4s ease;
}

/* Product Cards */
.product-card {
  background: var(--gradient-card);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-large);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    rgba(1, 55, 119, 0.1) 0%,
    rgba(42, 92, 154, 0.1) 100%
  );
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover .product-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--gradient-primary);
}

.product-icon i {
  font-size: 2.8em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.product-card:hover .product-icon i {
  -webkit-text-fill-color: white;
  background: transparent;
}

/* Service Cards */
.service-card {
  background: var(--gradient-card);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-success);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-large);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1) 0%,
    rgba(32, 201, 151, 0.1) 100%
  );
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--gradient-success);
}

.service-icon i {
  font-size: 2.8em;
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
  -webkit-text-fill-color: white;
  background: transparent;
}

/* Common Card Content */
.category-content h3 {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-card .category-content h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card .category-content h3 {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.product-card .category-count {
  background: rgba(1, 55, 119, 0.08);
  color: var(--primary-color);
}

.service-card .category-count {
  background: rgba(40, 167, 69, 0.08);
  color: var(--success-color);
}

.product-card:hover .category-count {
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.service-card:hover .category-count {
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.category-description {
  color: var(--text-light);
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-category {
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-product {
  background: var(--gradient-primary);
  color: white;
}

.btn-service {
  background: var(--gradient-success);
  color: white;
}

.btn-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s;
}

.btn-category:hover {
  background: var(--gradient-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-category:hover::before {
  left: 100%;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.services .carousel-nav:hover {
  background: var(--gradient-success);
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

/* CTA Sections */
.section-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.products-cta {
  background: var(--gradient-primary);
  color: white;
}

.services-cta {
  background: var(--gradient-success);
  color: white;
}

.section-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}
.buyers-section {
  padding: 100px 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(1, 55, 119, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.buyers-section .buyer-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  padding: 50px;
  background: var(--gradient-card);
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
}

.buyers-section .hero-content {
  flex: 1;
}

.buyers-section .hero-content h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.buyers-section .hero-content p {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.buyers-section .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.buyers-section .stat-item {
  text-align: center;
}

.buyers-section .stat-number {
  font-size: 2.5em;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.buyers-section .stat-label {
  font-size: 0.9em;
  color: var(--text-light);
  font-weight: 600;
}

 .buyers-section .hero-image {
  flex: 1;
  text-align: center;
}

.buyers-section .hero-image .hero-icon {
  width: 200px;
  height: 200px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(1, 55, 119, 0.3);
}

.hero-icon i {
  font-size: 5em;
  color: white;
}

/* Benefícios para Compradores */
.buyers-section  .benefits-section {
  margin-bottom: 80px;
}

.buyers-section  .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.buyers-section  .benefit-card {
  background: var(--gradient-card);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.buyers-section  .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary-light);
}

.buyers-section  .benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(1, 55, 119, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.buyers-section  .benefit-card:hover .buyers-section  .benefit-icon {
  background: var(--gradient-accent);
  transform: scale(1.1);
}

.buyers-section  .benefit-icon i {
  font-size: 2.2em;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.buyers-section  .benefit-card:hover .buyers-section  .benefit-icon i {
  color: white;
}

.buyers-section  .benefit-card h3 {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.buyers-section  .benefit-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Processo de Compra */
.buyers-section .process-section {
  margin-bottom: 80px;
}

.buyers-section .process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.buyers-section .process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--primary-light) 50%,
    var(--accent-color) 100%
  );
  z-index: 1;
}

.buyers-section .process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.buyers-section  .step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5em;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(1, 55, 119, 0.3);
}

.buyers-section  .step-content h4 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.buyers-section  .step-content p {
  color: var(--text-light);
  font-size: 0.95em;
}

/* Testemunhos */
.testimonials-section {
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--gradient-card);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border-left: 4px solid var(--primary-color);
}

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

.testimonial-content {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9em;
  margin-bottom: 0;
}

/* Recursos Adicionais */
.buyers-section  .features-section {
  margin-bottom: 80px;
}

.buyers-section  .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.buyers-section .feature-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--gradient-card);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: block;
}

.buyers-section .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.buyers-section .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(1, 55, 119, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.buyers-section .feature-icon i {
  font-size: 1.5em;
  color: var(--primary-color);
}

.buyers-section .feature-item h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.buyers-section .feature-item p {
  font-size: 0.9em;
  color: var(--text-light);
  margin-bottom: 0;
}


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

.cta-content {
  position: relative;
  z-index: 2;
}

/* .cta-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
} */

.btn-cta {
  background: white;
  color: var(--text-dark);
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover::before {
  left: 100%;
}

/* Responsividade */
@media (max-width: 1199.98px) {
  .category-slide {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 991.98px) {
  .separate-carousels-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.5em;
  }

  .category-slide {
    flex: 0 0 calc(50% - 20px);
  }

  .carousel-container {
    padding: 0 40px;
  }

  .section-label-content h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2em;
  }

  .section-subtitle {
    font-size: 1.1em;
  }

  .category-slide {
    flex: 0 0 calc(100% - 20px);
  }

  .carousel-container {
    padding: 0 30px;
  }

  .section-label {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .section-label-content h2 {
    font-size: 1.6em;
  }

  .section-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .cta-title {
    font-size: 1.5em;
  }
}

/* Responsividade */
@media (max-width: 1199.98px) {
  .process-line {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 991.98px) {
  .how-it-works-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.5em;
  }

  .process-line {
    display: none;
  }

  .step-card.featured {
    transform: scale(1);
  }

  .step-card.featured:hover {
    transform: translateY(-15px);
  }

  .cta-section {
    padding: 50px 30px;
    margin-top: 70px;
  }

  .cta-title {
    font-size: 2em;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2em;
  }

  .section-subtitle {
    font-size: 1.1em;
  }

  .step-card {
    padding: 40px 25px 35px;
    margin-bottom: 30px;
  }

  .cta-section {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 1.8em;
  }

  .btn-premium {
    padding: 16px 35px;
    font-size: 1em;
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-section .pricing-card.popular {
    transform: scale(1);
    margin: 20px 0;
  }

  .pricing-section .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .pricing-section .pricing-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 1.8em;
  }

  .pricing-section .pricing-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .pricing-section .pricing-tabs .nav-link {
    white-space: nowrap;
  }

  .pricing-section .price-amount {
    font-size: 2.5em;
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 15px;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px !important;
  }

  .d-flex.ms-auto {
    padding: 15px 0;
    justify-content: flex-start;
  }

  .btn-main,
  .btn-main-2 {
    margin-right: 10px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .title-color {
    font-size: 1.8em;
  }
}

@media (max-width: 767.98px) {
  .about {
    padding: 60px 0;
  }

  .about-img img {
    margin-bottom: 20px;
  }
}
