/* SERVICOS INCLUSOS */
.services{
  padding: 3rem 0;
}

.services h2{
  font-weight: 700;
  font-size: 34px;
  line-height: 120%;

  letter-spacing: -0.01em;

  color: #27272A;
  margin-bottom: 3rem;
}

.services-card-wrap{
  display: flex;
  justify-content: center;
  width: 100%;
}

.services-card{
  width: 100%;
  height: max-content;
  background: #F2F2F2;
  border-radius: 24px;
  transition: 0.4s ease;
  overflow: hidden;
}

.services-card-image-container{
  width: 100%;
  height: 300px;
}

.services-card-image-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-card-content{
  padding: 32px 32px 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.services .services-sub{
  font-size: 1.3rem !important;
  color: var(--accent-color) !important;
  font-weight: 600 !important;
}

.services-audio-container{
  padding: 0px 32px 32px 32px;
}

.services-card p{
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  text-align: start !important;

  color: #27272A;
}

.services-card span{
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;

  color: #474C5C;

  padding-bottom: 0rem;
}

/* audio styles */
.services-audio{
  width: 100%;
}

.services-audio .player-container {
  display: flex;
  align-items: center;
  padding: 10px;
}

.services-audio .play-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
}

.services-audio .play-button i {
  font-size: 10px;
  padding-left: 0.1rem;
  color: white;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-audio .progress-bar-container {
  flex: 1;
}

.services-audio .progress-bar {
  height: 4px;
  background-color: #ddd;
  position: relative;
  width: 90%;
  margin: auto;
  overflow: inherit;
}

.services-audio .progress {
  height: 100%;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

.services-audio .time {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-size: 14px;
}

.services-audio .current-time {
  margin-right: 5px;
  font-size: 12px;
}

.services-audio .duration {
  margin-left: 5px;
  font-size: 12px;
}

.services-audio .progress-handle {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  margin-left: -6px;
  cursor: pointer;
}

.services-main-row{
  margin-left: -2.4rem !important;
  margin-right: -2.4rem !important;
}

@media (min-width: 1201px) and (max-width: 1550px){
  .container{
    max-width: 1140px !important;
  }

  .services h2{
      font-size: 28px;
  }

  .services-sub{
    height: 50px;
    display: flex;
    align-items: start;
  }

  .services-card p {
    height: 150px;
  }
}

@media screen and (max-width: 1201px){
  .services{
    padding: 3rem 0;
  }

  .services h2{
    font-size: 20px;
  }

  .services .upper-title{
    font-size: 12px;
  }

  .services-card p{
    height: 200px;
  }

  .services-card span{
    font-size: 13px;
  }

  .services-sub{
    height: 50px;
    display: flex;
    align-items: start;
  }
}

@media screen and (max-width: 993px){
  .services-card-wrap{
    flex-direction: column;
    gap: 2rem;
  }

  .services-card{
    height: max-content;
    max-width: 400px;
  }

  .services-sub{
    height: max-content;
    align-items: center;
  }

  .services-card a{
    margin-top: 1rem;
  }

  .services-card p{
    height: max-content;
  }
}

@media screen and (max-width: 769px){
  .services h2{
    font-size: 24px;
  }

  .services p{
      font-size: 1rem;
  }
}

@media screen and (max-width: 577px){
  .services-main-row{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .services .container{
    padding: 0 !important;
  }

  .services-card-wrap{
    padding: 0 !important;
  }
}

@media screen and (max-width: 548px){
  .services-card h3{
    font-size: 17px;
  }
}

@media screen and (max-width: 440px){
  .services-card h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 414px){
  .services p{
    font-size: 1rem;
  }
}