.section-full-bg {
  background-color: #1c1c1c;
  width: 100%;
  padding: 50px 0;
}

.section-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  text-align: left;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
  max-width: 70%;
}

.section-subtitle {
    font-family: 'Montserrat';
    font-size: 20px;
    color: #ffffff;
    line-height: 150%;
    letter-spacing: -0.8px;
    max-width: 800px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

/* Quando houver exatamente 6 cards, força para 3 colunas */
.section-grid:has(> :nth-child(6):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

.section-card {
  background-color: #241d22;
  border: 2px solid #9a2686;
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.section-card:hover {
  transform: translateY(-4px);
}

.section-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.section-card-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.section-card-title {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 120%;
    letter-spacing: -0.24px;
}

.section-card-list {
    list-style: none;
    color: #FFFBFB;
    font-size: 18px;
    font-weight: 500px;
    line-height: 150%;
}

.section-card-list li {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
    line-height: 150%;
    letter-spacing: -0.8px;
}

.section-card-list li::before {
  content: "•";
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.section-cta-card {
  background-color: #2f1e2c;
  border: 2px solid #9a2686;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 200px;
}

.section-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(154, 38, 134, 0.3);
}

.section-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 130%;
  margin-bottom: 16px;
}

.section-cta-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-cta-icon svg {
  width: 20px;
  height: 20px;
  fill: #9a2686;
}

.mobile-btn {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .section-container {
    padding: 40px 16px;
  }

  .section-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 20px;
  }

  .section-grid::-webkit-scrollbar {
    display: none;
    /* esconde scroll em mobile */
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
    max-width: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-card {
    padding: 24px 20px;
    min-width: 320px;
    height: auto;
  }
  .section-card-list p {
  text-align: center;
}

  .section-cta-card {
    display: none;
  }

  .mobile-btn {
    display: flex;
    justify-content: center;
    margin: 24px auto 0;
    margin-bottom: 40px;
  }

  .mobile-btn button {
    background-color: transparent;
    border: 2px solid #9a2686;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-btn button:hover {
    background-color: #2f1e2c;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(154, 38, 134, 0.3);
  }

  .mobile-btn button a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-btn button:hover a {
    color: #ffffff;
  }
}
