@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 50%;
  overflow-x: hidden;
}
body {
  background: white;
  color: #828282;
  overflow-x: hidden;
}

.h2 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #3a0440;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
}

.h2::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 3px;
  background-color: #3a0440;
  border-radius: 2px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 18% 0rem;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  background-color: #ffffffa4;
}
.logo {
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}

.img-logo {
  cursor: pointer;
  transition: 0.3s ease;
  width: 80px;
  height: 60px;
}
.img-logo:hover {
  transform: scale(1.1);
}
.navbar a {
  font-size: 1.8rem;
  color: #828282;
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}
.navbar a:hover,
.navbar a.active {
  color: #3a0440;
  border-bottom: 3px solid #3a0440;
  z-index: 15;
}
#menu-icon {
  font-size: 3.6rem;
  display: none;
}

section {
  min-height: 10;
  padding: 10rem 12% 10rem;
}

/* HOME */
.home {
  min-height: 10;
  padding: 10rem 0% 10rem;
}

.home-content {
  justify-content: center;
}

.home-content h3 {
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 17px;
}
.home-content h1 {
  font-size: 7rem;
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #1b011f;
}

#texto-mulheres {
  justify-content: center;
  position: relative;
  display: flex;
  top: 2rem;
  font-size: 6rem;
}
/* CARROSSEL */
.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slider .list {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 70vh;
  max-height: 600px;
}

.slider .item {
  min-width: 100%;
}

.slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.slider .buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}

.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .buttons button:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider .dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.slider .dots li {
  list-style: none;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 8px;
  border-radius: 20px;
  transition: all 0.5s ease;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.slider .dots li:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.slider .dots li.active {
  width: 35px;
  background-color: white;
}

.slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
  z-index: 1;
}

.rool-images {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
  position: relative;
}

/*CARROSSEL EVENTOS*/

.eventos-page-card .slider {
  width: 100%;
  height: 100%;
  max-width: none;
}

.eventos-page-card .slider .list {
  height: 250px;
}

.eventos-page-card .slider .item img {
  height: 100%;
  object-fit: cover;
}

.image-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.image-container img {
  width: 265px;
  height: auto;
  transition: transform 0.3s ease;
}



.image-item img:hover {
  transform: scale(1.05);
}

.image-item p {
  max-width: 280px;
  margin: 15px auto 0;
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #3a0440;
  font-weight: 500;
}

.heading {
  font-size: 6rem;
  text-align: left;
  margin: 5rem 0;
  font-family: "Playfair Display";
}

/* OBJETIVO */
.objetivo {
  padding: 0px 15px;
  background-color: #871d87;
}
.objetivo h2 {
  margin-bottom: 5rem;
  width: 100%;
  white-space: nowrap;
  font-size: 7rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-align: center;
}

.objetivo p {
  margin-bottom: 5rem;
  width: 60%;
  margin-left: 33rem;
  margin-right: auto;
  font-size: 3rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
#objetivo-img {
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
  position: relative;
  left: 2rem;
}

#objetivo-img:hover {
  transform: scale(1.05);
}

.objetivo-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.flex {
  flex: 1;
}

.imagem-flex {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-top: 13rem;
}

/* PROPOSITO */
.proposito {
  padding: 100px 15px;
}

.proposito h2 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #3a0440;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
}

.proposito h2::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 3px;
  background-color: #3a0440;
  border-radius: 2px;
}
.proposito h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Playfair Display";
  margin-left: 4rem;
  margin-top: 10rem;
}

.proposito p {
  font-size: 18px;
  line-height: 150%;
  max-width: 1000px;
  text-align: justify;
  font-family: "Nunito", sans-serif;
  color: #828282;
  padding: 4rem;
  top: 2rem;
  display: flex;
  position: relative;
}

.proposito-card {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  margin: 5rem auto 5rem;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.proposito-card:hover {
  transform: scale(1.02);
}

.proposito-card-text {
  flex: 1;
}

.proposito-card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.proposito-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EVENTOS */
.eventos {
  padding: 100px 15px;
  background-color: #871d87;
}

.eventos h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  margin-left: 4rem;
  margin-top: 10rem;
}

.eventos h2 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
}

.eventos h2::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}
.eventos p {
  font-size: 18px;
  line-height: 150%;
  max-width: 1000px;
  text-align: justify;
  font-family: "Nunito", sans-serif;
  color: #ffffff;
  padding: 4rem;
}

.btn-e {
  display: inline-block;
  margin-top: 24px;
  padding: 1rem 2.8rem;
  border-radius: 24px;
  font-size: 18px;
  color: white;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.btn-e:hover {
  transform: scale(1.05);
}

.btn-eventos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 4rem;
}

.btn-eventos a {
  color: #f5f5f5;
  border: 2px solid #f5f5f5;
}

.btn-eventos a:hover {
  color: #e67ee6;
  border: 2px solid #e67ee6;
}
.eventos-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin: 5rem auto 5rem;
  max-width: 800px;
  height: 400px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventos-card:hover {
  transform: scale(1.02);
}

.card-text-eventos {
  position: absolute;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 12px;
  z-index: 2;
  text-align: center;
}
.eventos-card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.eventos-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}
.eventos-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(147, 119, 137, 0.3);
  z-index: 1;
  pointer-events: none;
}
.localizacao {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 14px;
}

.eventos-card {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  margin: 5rem auto 5rem;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.eventos-card:hover {
  transform: scale(1.02);
}

.eventos-card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.eventos-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CURSOS */

.cursos {
  padding: 100px 15px;
}
.cursos h2 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #3a0440;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
}

.cursos h2::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 3px;
  background-color: #3a0440;
  border-radius: 2px;
}
.cursos-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
}

.cursos-text {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  text-align: left;
  padding: 5rem;
}

.cursos-text h1 {
  font-size: 7rem;
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
}

.cursos-text p {
  font-size: 24px;
  margin-top: 24px;
  line-height: 150%;
  max-width: 83%;
  text-align: justify;
  font-family: "Nunito", sans-serif;
  color: #828282;
  left: 13rem;
  position: relative;
  font-weight: 500;
}
.cursos-img {
  padding: 5rem;
}
.cursos-img img {
  width: 390px;
  height: auto;
  transition: transform 0.4s ease-in-out;
}
.cursos-img img:hover {
  transform: scale(1.05);
}

.btn-group {
  display: inline-block;
  margin-top: 24px;
  padding: 1rem 2.8rem;
  border-radius: 24px;
  font-size: 18px;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.btn-group:hover {
  transform: scale(1.05);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 8rem;
}

.btn-group a {
  color: white;
  border: 2px solid #fff;
  background-color: #3a0440;
}

/* PROJETOS */

.projects {
  padding: 100px 15px;
  background-color: #871d87;
}

.projects h2 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 10rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
}

.projects h2::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

.projects h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  margin-left: 4rem;
  margin-top: 10rem;
  color: #3a0440;
}

.projects p {
  font-size: 18px;
  line-height: 150%;
  max-width: 1000px;
  text-align: justify;
  font-family: "Nunito", sans-serif;
  color: #828282;
  padding: 4rem;
}

.btn-p {
  display: inline-block;
  margin-top: 24px;
  padding: 1rem 2.8rem;
  border-radius: 24px;
  font-size: 18px;
  color: black;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.btn-p:hover {
  transform: scale(1.05);
}

.btn-project {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 4rem;
  margin-bottom: 4rem;
}

.btn-project a {
  color: #828282;
  border: 2px solid #828282;
}

.btn-project a:hover {
  color: black;
}

.project-card {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  margin: 5rem auto 5rem;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  position: relative;
}

.project-card:hover {
  transform: scale(1.02);
}

.card-text {
  flex: 1;
}

.card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.project-logo {
  position: absolute;
  top: 15px;
  left: 85rem;
  width: 90px;
  height: auto;
  z-index: 10;
  display: block;
}

/* PAGINA EVENTOS */

.eventos-page {
  padding: 100px 15px;
}

.eventos-page h2 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #3a0440;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
}

.eventos-page h2::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 3px;
  background-color: #3a0440;
  border-radius: 2px;
}

.eventos-page h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  margin-left: 4rem;
  margin-top: 10rem;
  color: #3a0440;
}

.eventos-page p {
  font-size: 18px;
  line-height: 150%;
  max-width: 1000px;
  text-align: justify;
  font-family: "Nunito", sans-serif;
  color: #828282;
  padding: 4rem;
}
.eventos-page-card {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  margin: 5rem auto 5rem;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  position: relative;
}

.eventos-page-card:hover {
  transform: scale(1.02);
}

.eventos-page-card-text {
  flex: 1;
}

.eventos-page-card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.eventos-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* FOOTER */

.footer {
  width: 100%;
  padding: 40px 20px;
  background-color: #921a92;
  color: #fff;
  font-family: "Nunito", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  left: 10%;
  position: relative;
}

.footer-about,
.footer-contacts {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  width: 60%;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-top: 10px;
}

.footer-contacts ul {
  list-style: none;
  padding: 0;
}

.footer-contacts ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.footer-contacts ul li i {
  margin-right: 10px;
  font-size: 16px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .slider .list {
    height: 24vh;
  }

  .slider .buttons button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .slider .dots li {
    width: 10px;
    height: 10px;
  }

  .slider .dots li.active {
    width: 25px;
  }
}
@media screen and (max-width: 768px) {
  .rool-images {
    left: 0;
    display: flex;
    justify-content: center;
    margin-top: 6rem;
  }

  .image-container {
    justify-content: center;
  }

  .image-container img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
    left: 0;
    display: block;
    margin: 0 auto;
  }

  .image-item img:hover {
    transform: none;
  }

  .image-item p {
    font-size: 1.5rem;
    text-align: center;
    position: static;
    right: 0;
    margin: 0.5rem auto 1.5rem;
    max-width: 280px;
  }
}

@media (max-width: 1285px) {
  html {
    font-size: 55%;
  }
  .projects-container {
    padding-bottom: 7rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 5rem;
  }
}
@media (max-width: 991px) {
  header {
    padding: 2rem 3%;
  }
  section {
    padding: 10rem 3% 2rem;
  }

  .projects {
    padding-bottom: 7rem;
  }
  .projects {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer {
    padding: 2rem 3%;
  }

  .home-img {
    height: 14rem;
  }

  .home-content h3 {
    font-size: 1.6rem;
    position: relative;
    bottom: 4%;
  }
  .tittle-text {
    font-size: 1.6rem;
  }

  .home-img img {
    position: relative;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    width: 330px;
    margin-bottom: 201px;
    width: 88%;
    left: 9%;
    z-index: 1;
  }

  @media (max-width: 895px) {
    #menu-icon {
      display: block;
    }
    .navbar {
      position: absolute;
      top: 100%;
      right: 0;
      width: 50%;
      padding: 1rem 3%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(20px);
      border-top-left-radius: 2rem;
      border-left: 2px solid #3a0440;
      border-bottom: 2px solid #3a0440;
      display: none;
      z-index: 9998;
    }
    .navbar.active {
      display: block;
    }
    .navbar a {
      display: block;
      font-size: 2rem;
      margin: 3rem 0;
      color: white;
    }
    .home {
      flex-direction: column-reverse;
      margin: 5rem 1rem;
    }
    .home-content h3 {
      font-size: 4rem;
      margin-top: 3rem;
    }
    .home-content p {
      max-width: 600px;
      margin: 0 auto;
      top: 4%;
      position: relative;
      font-size: 2.4rem;
    }
  }

  @media (max-width: 768px) {
    .projects-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 3rem;
    }

    .projects-text {
      padding: 2rem;
      align-items: center;
    }

    .projects-text h1 {
      font-size: 4rem;
    }

    .projects-text p {
      font-size: 16px;
    }

    .projects-img {
      padding: 2rem;
    }

    .projects h2 {
      margin-bottom: 3rem;
      width: 55%;
    }

    .projects-container {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .projects-img img {
    width: 250px;
    height: auto;
    transition: transform 0.4s ease-in-out;
    opacity: 0.5;
  }

  .projects-container {
    grid-template-columns: 1fr;
  }

  /* FOOTER */

  .footer .social a {
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 5px;
  }

  .footer ul li {
    padding: 0 10px;
  }

  .footer ul {
    font-size: 14px;
  }

  @media (max-width: 480px) {
    .header {
      position: relative;
    }

    #texto-mulheres {
      font-size: 3rem;
      left: 3rem;
    }
    /* Objetivo */
    .objetivo-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .objetivo p {
      margin: 0.5rem 1rem;
      width: 100%;
      font-size: 2rem;
      text-align: center;
    }

    .objetivo h2 {
      margin: 1.5rem 1rem 0.5rem;
      width: 100%;
      font-size: 4.5rem;
      text-align: center;
    }

    .imagem-flex {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 1rem;
      margin-left: 20%;
    }

    #objetivo-img {
      max-width: 80%;
      height: auto;
      position: relative;
      top: 0;
      display: block;
      margin: 0 auto;
      transition: none;
    }

    #objetivo-img:hover {
  transform: none;
}

    .proposito h2 {
      font-size: 4rem;
    }
    .eventos-page h2 {
      font-size: 3rem;
    }

    .proposito h2::before {
      width: 40px;
    }

    .proposito h3 {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1;
      font-family: "Playfair Display";
      margin-left: 2rem;
      margin-top: 2rem;
    }

    .proposito p {
      font-size: 1rem;
      line-height: 150%;
      max-width: 500px;
      text-align: justify;
      font-family: "Nunito", sans-serif;
      color: #828282;
      padding: 2rem;
      margin-bottom: 2rem;
    }

    .eventos h2 {
      font-size: 4rem;
    }

    .eventos h2::before {
      width: 40px;
    }

    .eventos h3 {
      font-size: 3rem;
      margin-left: 4rem;
      margin-top: 19rem;
    }

    .eventos p {
      font-size: 15px;
      padding: 4rem;
    }

    .btn-eventos {
      margin-left: 4rem;
      margin-bottom: 18rem;
      margin-top: -4rem;
    }
    .eventos-card {
      height: 26rem;
    }

    .cursos h2 {
      font-size: 4rem;
    }

    .cursos h2::before {
      width: 40px;
    }

    .cursos-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cursos-text {
      flex: 1;
    }
    .cursos-content {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 1.5rem;
    }
    .cursos-img img {
      display: block;
      width: 80%;
      max-width: 300px;
      height: auto;
      margin: 1.5rem auto 0;
    }

    .cursos p {
      font-size: 2rem;
      width: 100%;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .cursos-text {
      text-align: center;
    }

    .cursos-text p {
      left: 0 !important;
      position: static !important;
      margin: auto;
      max-width: 100%;
      text-align: justify;
    }

    .btn-group a {
      width: 18rem;
      text-align: center;
    }
    .btn-group {
      margin: 1.2rem auto 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .projects h2 {
      font-size: 4rem;
    }

    .projects h2::before {
      width: 40px;
    }

    .projects h3 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
      font-family: "Montserrat", sans-serif;
      margin-left: 2rem;
      margin-top: 2rem;
    }

    .projects p {
      font-size: 1.5rem;
      line-height: 150%;
      max-width: 500px;
      text-align: justify;
      font-family: "Nunito", sans-serif;
      color: #828282;
      padding: 2rem;
    }

    .btn-p {
      display: inline-block;
      margin-top: 3px;
      margin-bottom: 10px;
      padding: 1rem 1.8rem;
      border-radius: 24px;
      font-size: 18px;
      color: black;
      border: 2px solid transparent;
      letter-spacing: 0.1rem;
      transition: 0.3s ease-in-out;
      cursor: pointer;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      font-style: normal;
    }

    .btn-p:hover {
      transform: scale(1.05);
    }

    .btn-project {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-left: 4rem;
    }

    .btn-project a {
      color: #828282;
      border: 2px solid #828282;
      font-size: 1rem;
    }

    .btn-project a:hover {
      color: black;
    }

    .project-card {
      display: flex;
      border-radius: 24px;
      overflow: hidden;
      margin: 2.5rem auto 2.5rem;
      max-width: 400px;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease-in-out;
    }

    .project-card:hover {
      transform: scale(1.02);
    }

    .card-text {
      flex: 1;
      height: 25rem;
    }

    /* PAGINA EVENTOS */

    .eventos-page h2 {
      font-size: 3rem;
    }

    .eventos-page h2::before {
      width: 40px;
    }

    .eventos-page h3 {
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1;
      font-family: "Montserrat", sans-serif;
      margin-left: 2rem;
      margin-top: 2rem;
    }

    .eventos-page p {
      font-size: 1.3rem;
      line-height: 150%;
      max-width: 500px;
      text-align: justify;
      font-family: "Nunito", sans-serif;
      color: #828282;
      padding: 1rem;
    }

    .eventos-page-card {
      display: flex;
      border-radius: 24px;
      overflow: hidden;
      margin: 2.5rem auto 2.5rem;
      max-width: 400px;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease-in-out;
    }

    .eventos-page-card:hover {
      transform: scale(1.02);
    }

    .eventos-page-card-text {
      flex: 1;
      height: 20rem;
    }


    /* HOME */

    .home{
        padding: 0rem 0% 10rem;
    }
    .home-content h1 {
      font-size: 4rem;
    }

    .heading {
      font-size: 4rem;
      margin: 2rem 0;
    }
    .home-content h1 {
      font-size: 4rem;
    }

    .home-content h3 {
      font-size: 1.6rem;
    }

    .tittle-text {
      font-size: 1.5rem;
    }
    .footer {
      padding: 20px 0;
    }
    .footer .social a {
      font-size: 18px;
      width: 30px;
      height: 30px;
      line-height: 30px;
      margin: 0 3px;
    }

    .footer ul {
      font-size: 12px;
    }

    .footer ul li {
      padding: 0 5px;
    }

    .footer .copyright {
      font-size: 12px;
    }
  }
}

/* CURSOS */

/* Very small screens: stack rool-images vertically */
@media (max-width: 420px) {
  .rool-images {
    margin-top: 4rem;
    padding: 0 1rem;
  }

  .image-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .image-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0;
  }

  .image-container img {
    width: 120px;
    height: auto;
    margin: 0 auto;
  }

  .image-item p {
    max-width: 92%;
    margin: 0.5rem auto 1rem;
    font-size: 1.4rem;
    text-align: center;
  }
}


.cursos-materiais {
  max-width: 1200px;
  margin: 10rem auto 5rem;
  padding: 2rem;
  text-align: center;
}

.titulo {
  font-size: 5rem;
  color: #3a0440;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.titulo::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #3a0440;
  margin-top: 10px;
  border-radius: 2px;
}

.box-curso {
  margin-top: 2rem;
}

.conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem;
}

/* VÍDEO */

.video-box {
  flex: 1;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-box iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
}

.btn-playlist {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.btn-playlist .btn {
  padding: 1rem 2.5rem;
  font-size: 1.8rem;
  border-radius: 2rem;
  background-color: #9a1a9a;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border: none;
  transition: 0.3s ease-in-out;
}

.btn-playlist .btn:hover {
  background-color: #8e2b8e;
  transform: scale(1.05);
}

.descricao {
  flex: 1;
  max-width: 500px;
  font-size: 1.6rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.descricao h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #3a0440;
  font-weight: 700;
  font-style: italic;
}

.descricao p {
  color: #1b011f;
  line-height: 1.6;
}

/*Canva pro*/

.cont-curso {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.card-curso {
  background-color: #871d87;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 4rem auto;
  max-width: 1200px;
  padding: 2rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-rosa {
  background-color: #fff;
}

.card-rosa .card-texto {
  border-left: 4px solid #1b011f; /* ou o tom roxo desejado */
  padding-left: 2rem;
}

.card-rosa .card-texto,
.card-rosa .card-texto h2,
.card-rosa .card-texto p {
  color: #1b011f;
}

.card-curso:not(.card-rosa) .card-texto {
  border-left: 4px solid #ffffff; /* branco */
}

.card-conteudo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.3rem;
}

.card-texto {
  flex: 1 1 400px;
  padding-left: 2rem;
}

.card-texto h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.card-texto p {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: justify;
}

.card-texto .btn {
  background-color: #490a50;
  color: #fff;
  padding: 1.3rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.8rem;
  transition: 0.3s;
}

.card-texto .btn:hover {
  background-color: #642479;
}

.card-video {
  flex: 1 1 400px;
}

.card-video iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card-curso:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {
  .card-conteudo {
    flex-direction: column;
  }

  .card-texto {
    border-left: none;
    border-top: 4px solid #3a0440;
    padding-left: 0;
    padding-top: 1rem;
  }
}

/*PARCEIROS*/

.parceiros {
  text-align: center;
  padding: 4rem 2rem;
}

.logo-parceiros img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-parceiros:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(122, 63, 157, 0.4);
}

.parceiros h2 {
  font-size: 7rem;
  text-align: center;
  color: #2c003e;
  margin-bottom: 5rem;
  display: inline-block;
  position: relative;
}

.parceiros h2::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background-color: #3a0440;
  border-radius: 2px;
}

.parceiros h4 {
  font-size: 2.5rem;
  text-align: center;
  color: #2c003e;
}

.logo-parceiros p {
  font-size: 2.3rem;
  color: #fff;
  margin: 0;
  margin-bottom: 6rem;
}

/*CONTATOS PARCEIROS*/

.logo-parceiros {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bolinha-parceiro {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.bolinha-parceiro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.bolinha-parceiro .contato-parceiro {
  position: absolute;
  inset: 0;
  background-color: rgba(44, 0, 62, 0.92);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 50%;
}

.bolinha-parceiro.expandido {
  width: 300px;
  height: 300px;
}

.bolinha-parceiro.expandido img {
  opacity: 0.2;
}

.bolinha-parceiro.expandido .contato-parceiro {
  opacity: 1;
}

.logo-parceiros h4,
.logo-parceiros p {
  text-align: center;
  color: #2c003e;
  margin: 0;
  font-size: 1.8rem;
}
.bolinha-parceiro .contato-parceiro,
.bolinha-parceiro .contato-parceiro * {
  color: #fff;
}
