@import "./global/header.css";
@import "./global/global.css";
@import "./global/footer.css";

.container-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
  gap: 9rem;
}

.container-info img {
  max-width: 28rem;
  height: 28rem;
  box-shadow: -15px 15px 0px 0px #c0768f, 15px 25px 0px 0px #b05574;
}

.container-content {
  max-width: 62rem;
}

.container-content h1 {
  font-size: 3.2rem;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1rem;
}

.container-content h1::before {
  content: "";
  width: 3rem;
  height: 0.8rem;
  background: #D793AA;
  position: absolute;
  top: 2.3rem;
  left: -3.5rem;
}

.container-content p {
  font-size: 1.6rem;
  line-height: 140%;
  margin-bottom: 0.8rem;
}

.bg-container {
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem;
}

@media (max-width: 880px){
  .container-content h1{
    font-size: 2.4rem;
  }

  .container-content h1::before {
    top: 1.6rem;
    left: -3.5rem;
  }
}

@media (max-width: 500px){
  .container-info{
    margin: 2rem;
    padding: 1rem;
    gap: 3rem;
  }
  .container-info img{
    width: 15rem;
    height: 15rem;
  }

  .container-content h1{
    font-size: 1.6rem;
  }

  .container-content h1::before {
    width: 1.5rem;
    top: .7rem;
    left: -2rem;
  }

  .container-content p{
    font-size: 1.4rem;
  }
}

/*SECTION 2*/
.container-info2 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.container-info2 h3 {
  max-width: 50rem;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 2.5rem;
}

.lista-atendimentos ul {
  padding: 0 10px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}

.lista-atendimentos li {
  display: flex;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  padding: 2rem;
  border-left: 2px solid #c0768f;
}

.color {
  color: #7d3c52;
}

.lista-atendimentos li:first-child,
.lista-atendimentos li:nth-child(4) {
  border-left: none;
}

.lista-atendimentos li:nth-child(n+4){
  border-top: 2px solid #c0768f;
}

@media (max-width: 880px) {
  .container-info2 h3{
    font-size: 1.6rem;
  }

  .lista-atendimentos ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .lista-atendimentos li:nth-child(4){
    border-left: 2px solid #c0768f;;
  }

  .lista-atendimentos li:nth-child(n + 3) {
    border-top: 2px solid #c0768f;
  }
  .lista-atendimentos li:nth-child(odd) {
    border-left: none;
  }
}

@media (max-width: 880px){
  .container-info2 h3{
    margin: 1rem;
  }
  .lista-atendimentos li{
    font-size: 1.2rem;
    padding: 1rem;
  }
}

/*Section 3*/
.container-depoimentos{
  max-width: 120rem;
  margin: 0 auto;
}

.depoimentos{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.depoimentos h2{
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #b05574;
  padding: 2rem;
  position: relative;
}

.depoimentos h2::before{
  content: "";
  width: 2rem;
  height: .2rem;
  background: #D793AA;
  position: absolute;
  top: 3.5rem;
  left: -1rem;
}

.depoimentos h2::after{
  content: "";
  width: 2rem;
  height: .2rem;
  background: #c0768f;
  position: absolute;
  top: 3.5rem;
  margin-left: 1rem;
}

.depoimentos img{
  width: 30rem;
}

.depoimentos-img{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

@media (max-width: 880px){
  .container-depoimentos{
    margin: 1rem 3rem;
  }
}

@media (max-width: 500px){
  .depoimentos h2{
    font-size: 1.6rem;
  }

  .depoimentos h2::before{
    top: 3rem;
  }

  .depoimentos h2::after{
    top: 3rem;
  }
}

/*contato*/
.contato-info2{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.contato-agendar{
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: #b05574;
  border-radius: 20px;
  margin-right: 2rem;
}

.contato-agendar:hover{
  background-color: #7d3c52;
}

.contato-agendar i{
  font-size: 1.6rem;
  color: #fff;
  padding: .5rem;
}

.contato-agendar a{
  color: #fff;
}

.lista-link{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
  margin: 2.4rem;
  gap: 4rem;
}

.lista-link i{
  font-size: 1.6rem;
  margin-left: .5rem;
}

.lista-link a{
  color: #b05574;
  font-size: 1.6rem;
  font-weight: 700;
}

.lista-link a:hover{
  color: #7d3c52;
}

@media (max-width: 880px){
  .contato-info2{
    margin: 2rem;
  }

  .lista-link{
    padding: 1rem;
  }
  .lista-link i, .lista-link a{
    font-size: 1.4rem;
  }
}

@media (max-width: 500px){
  
  .lista-link i, .lista-link a{
    font-size: 1.2rem;
  }
}


/*spotify*/
.woman{
  position: relative;
}

.woman::before{
  content: "";
  background-image: url(../img/woman1.svg);
  width: 22rem;
  height: 30rem;

  position: absolute;
  bottom: -4rem;
}

.woman::after{
  content: "";
  background-image: url(../img/woman2.svg);
  width: 22rem;
  height: 30rem;

  position: absolute;
  bottom: -4rem;
  right: 0;
}

.bg-container-music{
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.bg-container-music p {
  font-size: 1.6rem;
  line-height: 140%;
  margin-bottom: 2rem;
}

.bg-container-music strong{
  color: #b05574;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.container-music{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.container-music img{
  width: 20rem;
  margin-bottom: 1rem;
}

.size-title{
  max-width: 20rem;
  height: 28rem;
  margin-bottom: 8rem;
}

.size-title p{
  font-size: 1.4rem;
  
}

.size-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 35rem;
}

.size-text p{
  font-size: 1.6rem;
  line-height: 140%;
  margin-bottom: 6rem;
}

.size-text button{
  background-color: #b05574;
  padding: 1.5rem 2rem;
  border-radius: 25px;
  border: none;
}

.size-text button:hover{
  background-color: #7d3c52;
}

.size-text button a{
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}

@media (max-width: 880px){
  .bg-container-music{
    margin: 3rem;
  }

  .bg-container-music p{
    margin-top: 2rem;
    text-align: center;
  }

  .size-title{
    height: 32rem;
  }

  .size-text{
    order: 1;
  }

  .woman::before{
    width: 22rem;
    height: 30rem;
  
    bottom: -3rem;
  }

  .woman::after{
    width: 20rem;
    height: 28rem;
  
    bottom: -3rem;
  }
}

@media (max-width: 500px){
  .container-music{
    gap: 0;
  }

  .woman::before, .woman::after{
    display: none;
  }
}


