/* Hero Section Parceiros */
.hero-partners {
  background: linear-gradient(135deg, #3d2e7c 0%, #2a1f5e 100%);
  margin-top: 80px;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-partners-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-partners-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: white;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-partners-content h1 span {
  display: block;
}

.hero-partners-cta {
  background-color: #ff1e79;
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-partners-cta:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

.hero-partners-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-partners-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.pink-arrow {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px !important;
  height: auto;
  z-index: 1;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
  position: relative;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #3e1e6f;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 700;
}

.benefits-title strong {
  color: #3e1e6f;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: #3e1e6f;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(62, 30, 111, 0.3);
}

.benefit-icon {
  font-size: 3rem;
  color: #ff1e79;
  margin-bottom: 20px;
}

.benefit-value {
  font-size: 2rem;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Diferenciais Section */
.diferenciais-section {
  padding: 80px 20px;
  background-color: #e8e9eb;
}

.diferenciais-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diferenciais-left {
  position: relative;
}

.diferenciais-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #3e1e6f;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.diferenciais-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diferenciais-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
}

.diferenciais-image .pink-arrow-left {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: auto;
  z-index: 1;
}

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d0d0d0;
}

.diferencial-item:last-child {
  border-bottom: none;
}

.diferencial-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ff1e79;
}

.diferencial-content h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 700;
}

.diferencial-content p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.5;
}

.diferenciais-cta {
  margin-top: 40px;
  text-align: center;
}

.diferenciais-cta a {
  background-color: #ff1e79;
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.diferenciais-cta a:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

/* Marketing Section */
.marketing-section {
  background: linear-gradient(135deg, #3d2e7c 0%, #2a1f5e 100%);
  padding: 80px 20px;
  position: relative;
}

.marketing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.marketing-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.marketing-content h2 span {
  display: block;
}

.marketing-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.marketing-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.marketing-arrow {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px !important;
  height: auto;
}

/* Steps Section */
.steps-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.steps-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
}

.steps-title span {
  display: block;
  color: #3e1e6f;
}

.steps-cta {
  background-color: #ff1e79;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.steps-cta:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background-color: #3e1e6f;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(62, 30, 111, 0.3);
}

.step-icon {
  font-size: 2.5rem;
  color: #ff1e79;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-partners-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-partners-image {
    justify-content: center;
  }

  .pink-arrow {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenciais-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .marketing-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .marketing-arrow {
    display: none;
  }

  .steps-header {
    flex-direction: column;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-partners {
    min-height: 400px;
  }

  .hero-partners-content h1 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .diferenciais-title {
    font-size: 1.75rem;
  }

  .diferencial-icon {
    width: 50px;
    height: 50px;
  }

  .marketing-content h2 {
    font-size: 1.75rem;
  }

  .steps-title {
    font-size: 1.75rem;
  }

  .step-card {
    padding: 30px 20px;
  }
}
