.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
}

.profile {
  position: relative;
  height: 75vw;
  width: 75vw;
  border-radius: 5vw;
  max-height: 40rem;
  max-width: 40rem;
}
.profile .profile-img {
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.profile .dots-1 {
  position: absolute;
  width: 3vw;
  right: 1.5vw;
  top: 4vw;
}
.profile .dots-1 svg {
  fill: #fff;
}
.profile .dots-2 {
  position: absolute;
  width: 3vw;
  right: -4vw;
  top: 6.05vw;
}
.profile .dots-2 svg {
  fill: #1e30f3;
}
.profile .dots-3 {
  position: absolute;
  width: 3vw;
  left: 1.5vw;
  bottom: 6.05vw;
}
.profile .dots-3 svg {
  fill: #fff;
}
.profile .dots-4 {
  position: absolute;
  width: 3vw;
  left: -4vw;
  bottom: 4vw;
}
.profile .dots-4 svg {
  fill: #1e30f3;
}

@media (min-width: 576px) {
  .profile {
    height: 60vw;
    width: 60vw;
  }
  .profile .profile-img {
    height: 65vw;
  }
  .profile .dots-1 {
    width: 3vw;
    right: 1.5vw;
  }
  .profile .dots-2 {
    width: 3vw;
    right: -4vw;
  }
  .profile .dots-3 {
    width: 3vw;
    left: 1.5vw;
  }
  .profile .dots-4 {
    width: 3vw;
    left: -4vw;
  }
}
@media (min-width: 768px) {
  .profile {
    height: 50vw;
    width: 50vw;
  }
  .profile .profile-img {
    height: 55vw;
  }
  .profile .dots-1 {
    width: 3vw;
    right: 1.5vw;
  }
  .profile .dots-2 {
    width: 3vw;
    right: -4vw;
  }
  .profile .dots-3 {
    width: 3vw;
    left: 1.5vw;
  }
  .profile .dots-4 {
    width: 3vw;
    left: -4vw;
  }
}
@media (min-width: 992px) {
  .profile {
    height: 40vw;
    width: 40vw;
  }
  .profile .profile-img {
    height: 45vw;
  }
  .profile .dots-1 {
    width: 1.5vw;
    right: 0.75vw;
  }
  .profile .dots-2 {
    width: 1.5vw;
    right: -2vw;
  }
  .profile .dots-3 {
    width: 1.5vw;
    left: 0.75vw;
  }
  .profile .dots-4 {
    width: 1.5vw;
    left: -2vw;
  }
}
@media (min-width: 1200px) {
  .profile {
    height: 35vw;
    width: 35vw;
  }
  .profile .profile-img {
    height: 40vw;
  }
  .profile .dots-1 {
    width: 1.5vw;
    right: 0.75vw;
  }
  .profile .dots-2 {
    width: 1.5vw;
    right: -2vw;
  }
  .profile .dots-3 {
    width: 1.5vw;
    left: 0.75vw;
  }
  .profile .dots-4 {
    width: 1.5vw;
    left: -2vw;
  }
}
.icon-greendark {
    color: #3e9494;
    font-size: 50px;
}


/* CARD */

/* From Uiverse.io by gharsh11032000 */
.card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  padding: 32px;
  border-radius: 24px;
  overflow: hidden;
  line-height: 1.6;
  border: 1px solid #cccccc;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 8px;
  color: #000000;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .quotes {
  width: 48px;
  height: 48px;
}

.content .footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.content .para {
  z-index: 1;
  opacity: 0.8;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover {
  box-shadow: 8px 8px rgb(38 215 175);
  border-color: rgb(38 215 175);
  transform: translate(-8px, -8px);
}

.button {
  position: relative;
  font-family: inherit;
  border: none;
  background-color: transparent;
  font-size: 16px;
  padding: 4px 0px;
  font-weight: 700;
  line-height: 1.6;
  color: #000000;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.button span {
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.button::before {
  position: absolute;
  content: "";
  width: 112%;
  height: 1px;
  left: 0%;
  bottom: 0%;
  background: rgb(38 215 175);
  pointer-events: none;
  margin: auto;
  transition: transform 0.64s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
}

.button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button:active {
  scale: 0.95;
}


/*EFEITO BOTÃO*/

.btn-back {
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.25s ease-in-out;
}

.btn-back:hover {
    background-color: #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
    text-decoration: none;
    color: #000;
}


/*EFEITO DIGITAÇÃO 2*/

.typing-highlight {
    font-weight: 600;
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background 0.3s ease, color 0.3s ease;
}


/*EFEITO MÓDULO*/


.card-custom {
  background-color: rgb(33, 37, 41); /* fundo escuro */
  color: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  height: 220px; /* altura fixa para uniformidade */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-custom:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.card-custom .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: white;
}

.card-content h6 {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  padding: 0 10px;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* opcional: limita a 3 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-custom .icon i {
  color: #3e9494; /* cor do ícone */
}


/* CardModulo */
