/* =============================================================
   Workshop Page Styles
   ============================================================= */

.workshop-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 620px; /* Desktop height */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-sizing: border-box;
}

.workshop-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.7) 0%,
    rgba(16, 10, 24, 0.55) 50%,
    rgba(10, 10, 11, 0.85) 100%
  );
  z-index: 1;
}

.workshop-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.workshop-hero__eyebrow {
  color: #00baba;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  margin-bottom: 37px;
  text-transform: uppercase;
}

.workshop-hero__title {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.5px;
  background: linear-gradient(90deg, #e5e5e5 0%, #7f7f7f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0;
  margin-bottom: 35px;
}

.workshop-hero__description {
  color: #d1d5dc;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  margin-top: 0;
  margin-bottom: 40px;
  max-width: 760px;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .workshop-hero {
    height: auto;
    min-height: 520px;
    padding: 60px 0;
  }
  .workshop-hero__title {
    font-size: 46px;
    line-height: 52px;
    letter-spacing: -1px;
    margin-bottom: 28px;
  }
  .workshop-hero__description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 32px;
    max-width: 640px;
  }
  .workshop-hero__eyebrow {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .workshop-hero {
    min-height: 480px;
    padding: 48px 0;
  }
  .workshop-hero__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }
  .workshop-hero__description {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .workshop-hero__eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* =============================================================
   Seção 2 — Números/Métricas
   ============================================================= */

.workshop-numbers {
  background: #281643;
  padding: 32px 0;
  width: 100%;
  box-sizing: border-box;
}

.workshop-numbers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.workshop-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.workshop-numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.workshop-numbers__value {
  color: #e5e5e5;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  margin-top: 0;
  margin-bottom: 20px;
  display: block;
}

.workshop-numbers__text {
  color: #d1d5dc;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
}

/* Responsive grid rules */
@media (max-width: 1024px) {
  .workshop-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .workshop-numbers__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .workshop-numbers {
    padding: 40px 0;
  }
}

/* =============================================================
   Seção 3 — Apresentação / Intro
   ============================================================= */

.workshop-intro {
  background: #0f0f10;
  padding-top: 90px;
  padding-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  width: 100%;
}

.workshop-intro__col-left {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.workshop-intro__title {
  color: #e5e5e5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.5px;
  margin-top: 0;
  margin-bottom: 20px;
}

.workshop-intro__description-wrap {
  display: flex;
  align-items: stretch;
  gap: 17px;
  margin-bottom: 35px;
}

.workshop-intro__description-line {
  width: 2px;
  background-color: #7c3aed99;
  flex-shrink: 0;
}

.workshop-intro__description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  margin: 0;
}

.workshop-intro__highlight {
  color: #b39ddb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.workshop-intro__col-right {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

.workshop-intro__image-wrap {
  position: relative;
  width: 560px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.workshop-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workshop-intro__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(71, 40, 118, 0.25) 0%,
    rgba(10, 10, 11, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.workshop-intro__image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  z-index: 2;
  color: #e5e5e5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  box-sizing: border-box;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .workshop-intro {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .workshop-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .workshop-intro__col-right {
    justify-content: center;
  }
  .workshop-intro__image-wrap {
    width: 100%;
    height: 380px;
  }
  .workshop-intro__title {
    font-size: 36px;
    line-height: 42px;
  }
}

@media (max-width: 640px) {
  .workshop-intro {
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .workshop-intro__image-wrap {
    height: 300px;
  }
  .workshop-intro__image-text {
    padding: 24px;
    font-size: 14px;
    line-height: 20px;
  }
  .workshop-intro__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1px;
  }
  .workshop-intro__description {
    font-size: 16px;
    line-height: 26px;
  }
  .workshop-intro__highlight {
    font-size: 18px;
    line-height: 26px;
  }
}

/* =============================================================
   Seção 4 — Cards de Números
   ============================================================= */

.workshop-cards {
  background: linear-gradient(90deg, #0a0a0b 0%, #100e1e 50%, #0a0a0b 100%);
  padding-top: 70px;
  padding-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  justify-items: center;
}

.workshop-cards__item {
  display: flex;
  width: 100%;
  max-width: 300px;
  padding: 30px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 16px;
  border: 1px solid rgba(71, 40, 118, 0.3);
  background: rgba(71, 40, 118, 0.13);
  box-sizing: border-box;
}

.workshop-cards__value {
  color: #7c3aed;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 8px;
}

.workshop-cards__text {
  color: #99a1af;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  padding: 0 16px; /* adds horizontal breathing room for wrapped text */
  box-sizing: border-box;
}

/* Responsive grid rules */
@media (max-width: 1360px) {
  .workshop-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
/* Tablet */
@media (max-width: 1024px) {
  .workshop-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .workshop-cards__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workshop-cards {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

/* =============================================================
   Seção 5 — Cronograma / Itens
   ============================================================= */

.workshop-section5 {
  background: #0a0a0b;
  padding-top: 80px;
  padding-bottom: 65px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-section5__content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.workshop-section5__title {
  color: #e5e5e5;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.5px;
  margin-top: 0;
  margin-bottom: 44px;
}

.workshop-section5__items-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.workshop-section5__item {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-section5__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 20.059px;
  background: linear-gradient(135deg, #472876 0%, #7c3aed 71.43%);

  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16.412px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex-shrink: 0;
}

.workshop-section5__text {
  display: inline-flex;
  min-height: 64px;
  padding: 12px 32px;
  align-items: center;

  border-radius: 32px;
  border: 1px solid rgba(71, 40, 118, 0.35);
  background: rgba(71, 40, 118, 0.1);

  color: #d1d5dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  box-sizing: border-box;
  max-width: calc(100% - 64px); /* 40px width + 24px gap */
}

/* Responsive rules */
@media (max-width: 1024px) {
  .workshop-section5__title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .workshop-section5 {
    padding-top: 60px;
    padding-bottom: 45px;
  }
  .workshop-section5__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  .workshop-section5__item {
    gap: 16px;
  }
  .workshop-section5__text {
    padding: 12px 20px;
    font-size: 15px;
    line-height: 20px;
    border-radius: 20px;
    min-height: 50px;
    max-width: calc(100% - 56px); /* 40px width + 16px gap */
  }
  .workshop-section5__number {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 18px;
  }
}

/* =============================================================
   Seção 6 — Texto de Fechamento / Chamada
   ============================================================= */

.workshop-section6 {
  background: linear-gradient(180deg, #10091c 0%, #180e2a 50%, #0a0a0b 100%);
  padding-top: 120px;
  padding-bottom: 120px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-section6__content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.workshop-section6__eyebrow {
  color: #b39ddb;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 22px;
}

.workshop-section6__title {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1; /* comfortable line-height for wrapped text */
  letter-spacing: -3px;
  margin: 0 auto;
  max-width: 100%;

  background: linear-gradient(90deg, #fff 0%, #472876 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive rules */
@media (max-width: 1200px) {
  .workshop-section6__title {
    font-size: 80px;
    letter-spacing: -2px;
  }
}

@media (max-width: 768px) {
  .workshop-section6 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .workshop-section6__title {
    font-size: 60px;
    letter-spacing: -1.5px;
  }
}

@media (max-width: 480px) {
  .workshop-section6 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .workshop-section6__title {
    font-size: 38px;
    letter-spacing: -1px;
    line-height: 46px;
  }
  .workshop-section6__eyebrow {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

/* =============================================================
   Seção 7 — Galeria / Carrossel
   ============================================================= */

.workshop-gallery {
  background: linear-gradient(180deg, #0a0a0b 0%, #0f0f10 50%, #0a0a0b 100%);
  padding-top: 72px;
  padding-bottom: 72px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-section7__eyebrow {
  color: #00baba;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  margin-top: 0;
  margin-bottom: 10px;
}

.workshop-section7__title {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 60px;
}

.workshop-gallery__slider-outer {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.workshop-gallery__navigation-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  height: 0;
  pointer-events: none;
}

.workshop-gallery__swiper {
  width: 100%;
  overflow: visible; /* Allows side slides to be visible */
}

.workshop-gallery__slide {
  width: 720px;
  box-sizing: border-box;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

.workshop-gallery__slide.swiper-slide-active {
  opacity: 1;
}

.workshop-gallery__image-container {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.workshop-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.workshop-gallery__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0) 0%,
    rgba(10, 10, 11, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.workshop-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;
  z-index: 2;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  box-sizing: border-box;
  text-align: left;
}

.workshop-gallery__prev,
.workshop-gallery__next {
  display: flex;
  width: 34px;
  height: 94px;
  justify-content: center;
  align-items: center;
  border-radius: 26px;
  background: rgba(124, 58, 237, 0.9);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -170px; /* Centered relative to the 340px high swiper above it */
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.3s ease,
    opacity 0.3s ease;
  pointer-events: auto; /* Re-enable pointer events since wrapper is pointer-events: none */
}

.workshop-gallery__prev:hover,
.workshop-gallery__next:hover {
  background: rgba(124, 58, 237, 1);
}

.workshop-gallery__prev {
  left: -60px;
}

.workshop-gallery__next {
  right: -60px;
}

.workshop-gallery__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  width: 100%;
}

.workshop-gallery__dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.workshop-gallery__dot--active {
  width: 22px;
  background: #7c3aed;
}

.workshop-gallery__dot--hidden {
  display: none !important;
}

/* Lightbox Modal */
.workshop-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 11, 0.95);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.workshop-lightbox--active {
  opacity: 1;
  pointer-events: auto;
}

.workshop-lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workshop-lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.workshop-lightbox--active .workshop-lightbox__image {
  transform: scale(1);
}

.workshop-lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 100000;
}

.workshop-lightbox__close:hover {
  color: #7c3aed;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .workshop-lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }
  .workshop-lightbox__image {
    max-height: 80vh;
  }
}

/* Responsive Swiper Rules */
@media (max-width: 900px) {
  .workshop-gallery__navigation-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .workshop-gallery__slide {
    width: 100%;
  }
  .workshop-gallery__prev {
    left: 10px;
  }
  .workshop-gallery__next {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .workshop-gallery {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .workshop-gallery__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .workshop-gallery__navigation-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .workshop-gallery__image-container {
    height: 240px;
  }
  .workshop-gallery__prev,
  .workshop-gallery__next {
    top: -120px; /* Centered relative to 240px high swiper */
    width: 30px;
    height: 70px;
  }
  .workshop-gallery__prev {
    left: 20px;
  }
  .workshop-gallery__next {
    right: 20px;
  }
  .workshop-gallery__caption {
    font-size: 15px;
    padding: 16px;
  }
  .workshop-gallery__pagination {
    margin-top: 24px;
  }
}

/* =============================================================
   Seção 8 — Depoimentos
   ============================================================= */

.workshop-testimonials {
  background: #0f0f10;
  padding-top: 70px;
  padding-bottom: 55px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-testimonials__title {
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 70px;
}

.workshop-testimonials__slider-outer {
  position: relative;
  width: 100%;
}

.workshop-testimonials__grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 384px));
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.workshop-testimonials__swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}

.workshop-testimonials__card {
  position: relative;
  width: 100%;
  max-width: 384px;
  height: 331px;
  flex-shrink: 0;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #1e2939;
  background: #1a1a1c;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.workshop-testimonials__quote {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 28px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
}

.workshop-testimonials__quote svg {
  display: block;
  width: 100%;
  height: auto;
}

.workshop-testimonials__stars {
  color: #7c3aed;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1;
}

.workshop-testimonials__description {
  color: #99a1af;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
  max-height: 156px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.workshop-testimonials__description::-webkit-scrollbar {
  width: 4px;
}

.workshop-testimonials__description::-webkit-scrollbar-track {
  background: transparent;
}

.workshop-testimonials__description::-webkit-scrollbar-thumb {
  background: #364153;
  border-radius: 2px;
}

.workshop-testimonials__divider {
  border-top: 1px solid #364153;
  margin-bottom: 24px;
  width: 100%;
}

.workshop-testimonials__author {
  color: #7c3aed;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  display: block;
}

.workshop-testimonials__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  width: 100%;
}

.workshop-testimonials__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.workshop-testimonials__pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: #7c3aed;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .workshop-testimonials__grid-wrapper {
    grid-template-columns: repeat(3, minmax(0, 320px));
    gap: 20px;
  }
  .workshop-testimonials__card {
    max-width: 320px;
    padding: 24px;
  }
  .workshop-testimonials__quote {
    top: 24px;
    right: 24px;
  }
}

@media (max-width: 900px) {
  .workshop-testimonials__grid-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .workshop-testimonials__card {
    max-width: 384px;
  }
}

@media (max-width: 640px) {
  .workshop-testimonials {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .workshop-testimonials__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .workshop-testimonials__card {
    padding: 20px;
    height: auto;
    min-height: 280px;
  }
  .workshop-testimonials__quote {
    top: 20px;
    right: 20px;
  }
  .workshop-testimonials__stars {
    margin-bottom: 16px;
  }
  .workshop-testimonials__description {
    font-size: 14px;
    line-height: 22px;
    max-height: none;
    margin-bottom: 20px;
  }
  .workshop-testimonials__divider {
    margin-bottom: 16px;
  }
}

/* =============================================================
   Seção 9 — Cards com Imagens, Tags e Botão
   ============================================================= */

.workshop-section9 {
  background: #0a0a0b;
  padding-top: 70px;
  padding-bottom: 60px;
  width: 100%;
  box-sizing: border-box;
}

.workshop-section9__title {
  color: #e5e5e5;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 72px;
}

.workshop-section9__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  justify-items: center;
  width: 100%;
}

.workshop-section9__card {
  display: flex;
  flex-direction: column;
  width: 380px;
  box-sizing: border-box;
}

.workshop-section9__image-wrap {
  width: 380px;
  height: 200px;
  background: rgba(71, 40, 118, 0.12);
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.workshop-section9__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workshop-section9__tag {
  display: inline-flex;
  height: 43px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #472876;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;

  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.workshop-section9__content {
  border-radius: 12px;
  border: 1px solid rgba(71, 40, 118, 0.3);
  background: #1a1a1c;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.workshop-section9__description {
  color: #d1d5dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  margin: 0 0 20px 0;
}

.workshop-section9__link-text {
  color: #7c3aed;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: auto;
}

.workshop-section9__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 118px;
  width: 100%;
}

/* Responsividade Seção 9 */
@media (max-width: 1200px) {
  .workshop-section9__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .workshop-section9__card,
  .workshop-section9__image-wrap {
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .workshop-section9__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .workshop-section9 {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .workshop-section9__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .workshop-section9__link-text {
    margin-bottom: 60px;
  }
}
