@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{
  /* cores (hex) */
  --first-color: rgb(253, 253, 253);
  --first-color-sec: #A2A1A6;

  --second-color: #221F27;
  --second-color-sec: #000713;

  --alt-color: #F6BD00;
  --alt-color-sec: #dda900;

  /* tamanhos */

  --sm-size-text: .9rem;
  --md-size-text: 1rem;
  --bg-size-text: 1.2rem;
}

body::-webkit-scrollbar{
  width: 10px;
}

body::-webkit-scrollbar-track{
  background: var(--second-color-sec);
}

body::-webkit-scrollbar-thumb{
  background-color: var(--alt-color);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  color: var(--first-color);
  font-size: var(--md-size-text);
  text-decoration: none;
}

html{
  scroll-behavior: smooth;
}

#main{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--second-color-sec);
  overflow-x: hidden;
}

.main_texture_img{
  z-index: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 20%;
}

.modal{
  width: 100%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  z-index: 1;
  user-select: none;
}

.modal_img{
  display: flex;
  height: 740px;
  margin-right: 50px;
  z-index: 13;
}

.modal_content{
  background-color: var(--first-color);
  padding-bottom: 20px;
  margin-left: 50px;
}

.modal_title{
  width: 100%;
  background-color: var(--second-color);
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.modal_subtitle{
  background-color: var(--alt-color);
  margin: 10px 30px;
  padding: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--second-color);
  letter-spacing: 2px;
}

.modal_text{
  color: var(--second-color);
  margin: 10px 30px;
  font-weight: 600;
  color: var(--second-color);
  font-size: 1rem;
}

/* primeira parte do site */

.page_first{
  width: 100%;
  min-height: 100vh;
  height: 600px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: transparent;
  z-index: 1;
}

.page_first_brush{
  position: absolute;
  left: -300px;
  opacity: 80%;
  width: 100%;
}

.page_first_section_left{
  width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page_first_section_left_img{
  position: absolute;
  height: 1200px;
  z-index: 0;
  user-select: none;
}

.page_first_section_right{
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.page_first_section_left_icon{
  user-select: none;
}

.page_first_section_right_text,
.page_first_section_right_text_name{
  font-size: var(--bg-size-text);
  margin: 0 0 1rem 0;
  color: var(--first-color);
  font-weight: 600;
  text-align: justify;
}

.page_first_section_right_text::selection,
.page_first_section_right_text_name::selection{
  background: var(--first-color);
  color: var(--second-color-sec);
}

.page_first_section_right_text_name{
  color: var(--alt-color);
}

.page_first_section_right_button{
  background-color: var(--alt-color);
  outline: none;
  user-select: none;
  padding: 1rem;
  border: 2px solid var(--alt-color);
  margin: .5rem 0;
  cursor: pointer;
  transition: .5s ease;
}

.page_first_section_right_button_link{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--second-color-sec);
  font-weight: 600;
}

.page_first_section_right_button:hover{
  background-color: transparent;
  .page_first_section_right_button_link{
    color: var(--alt-color);
  }
}

.button_propostas{
  padding: 1rem;
  outline: none;
  background-color: transparent;
  border: 2px solid var(--alt-color-sec);
  color: var(--alt-color);
  font-weight: 600;
  cursor: pointer;
  z-index: 12;
  transition: .5s ease;
}

.button_propostas:hover{
  border: 2px solid var(--first-color);
  color: var(--first-color);
}

/* segunda parte estilização */
.page_second{
  width: 100%;
  min-height: 100vh;
  background-color: #000713;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
}

.page_second_left{
  width: 400px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_second_left_text{
  color: var(--first-color);
  font-weight: 600;
  font-size: var(--bg-size-text);
  text-align: justify;
}

.page_second_left_text_title,
.page_third_left_text_title{
  color: var(--alt-color);
  font-weight: 600;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
}

.page_second_left_text::selection,
.quebra::selection,
.page_second_left_text_title::selection,
.page_third_left_text_title::selection{
  background: var(--first-color);
  color: var(--second-color);
}

.quebra{
  user-select: none;
}

.page_second_right{
  width: 700px;
  height: 100%;
  padding-top: 30px;
}

.page_second_right_card1{
  width: 310px;
  height: 270px;
  display: flex;
  background-color: var(--first-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px #000713;
  transform: rotate(-5deg);
  user-select: none;
  padding: 0 20px;
}

.page_second_right_card2{
  width: 340px;
  height: 270px;
  display: flex;
  background-color: var(--first-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0px 20px 300px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px #000713;
  transform: rotate(5deg);
  user-select: none;
}

.page_second_right_card3{
  width: 310px;
  height: 270px;
  display: flex;
  background-color: var(--first-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px #000713;
  transform: rotate(2deg);
  user-select: none;
}

.page_second_right_card1:hover,
.page_second_right_card2:hover,
.page_second_right_card3:hover{
  transform: scale(1.05);
  transition: .5s ease;
}

.page_second_right_card1_img{
  height: 200px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px var(--first-color-sec);
}

.page_second_right_card1_img_heart,
.page_second_right_card1_img_chat{
  width: 20px;
}

/* terceira parte estilização */
.page_third{
  width: 100%;
  min-height: 100vh;
  background-color: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1;
}

.page_third_left{
  width: 400px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_third_left_text{
  color: var(--first-color);
  font-weight: 600;
  font-size: var(--bg-size-text);
  text-align: justify;
}

.page_third_left_text::selection,
.quebra::selection{
  background: var(--first-color);
  color: var(--second-color);
}

.page_third_right{
  width: 700px;
  height: 100%;
  padding-top: 30px;
}

.page_third_right_card1{
  width: 340px;
  height: 270px;
  display: flex;
  background-color: var(--first-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px #000713;
  transform: rotate(-5deg);
  user-select: none;
}

.page_third_right_card2{
  width: 310px;
  height: 270px;
  display: flex;
  background-color: var(--first-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0px 20px 300px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px #000713;
  transform: rotate(5deg);
  user-select: none;
}

.page_third_right_card3{
  width: 340px;
  height: 270px;
  display: flex;
  background-color: var(--first-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px #000713;
  transform: rotate(2deg);
  user-select: none;
}

.page_third_right_card1:hover,
.page_third_right_card2:hover,
.page_third_right_card3:hover{
  transform: scale(1.05);
  transition: .5s ease;
}

.page_third_right_card1_img{
  height: 200px;
  border-radius: .5rem;
  box-shadow: 0px 0px 10px var(--first-color-sec);
}

 .imageconfig{
  height: 180px;
}

.page_third_right_card1_img_heart,
.page_third_right_card1_img_chat{
  width: 20px;
}

.page_third_button{
  display: absolute;
}

.page_third_down{
  width: 100%;
  background-color: var(--alt-color);
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}

.page_third_down_text,
.page_third_down_text_span,
.page_third_down_text_span2,
.page_third_down_text_span3{
  color: var(--second-color);
  font-size: var(--bg-size-text);
  font-weight: 600;
  width: 50%;
  text-align: justify;
}

.page_third_down_text::selection,
.page_third_down_text_span::selection,
.page_third_down_text_span2::selection{
  background: var(--second-color);
  color: var(--first-color);
}

.page_third_down_text_span3_div{
  width: 950px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second-color);
  border-radius: 1.5rem;
  padding: 50px;
  box-shadow: 0px 0px 10px var(--second-color);
}

.page_third_down_text_span3{
  color: var(--first-color);
  width: 100%;
  text-align: justify;
}

.page_third_down_text_span3::selection{
  background: var(--first-color);
  color: var(--second-color-sec);
}

.page_third_down_button{
  background-color: var(--second-color);
  padding: 25px 30px;
  border: 2px solid var(--second-color);
  margin-top: 50px;
  font-weight: 600;
  color: var(--alt-color);
  transition: .5s ease;
  user-select: none;
}

.page_third_down_button:hover{
  background-color: transparent;
  color: var(--second-color-sec);
}

/* efeitos de transição */

.page_first_section_right_text,
.page_first_section_right_button,
.page_second_left_text,
.page_second_right_img{
  visibility: hidden;
}

/* botão de subrir a página */
.up_btn{
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--alt-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
}

.up_btn_link{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.up_btn_img{
  width: 15px;
  height: 15px;
}

/* quarta parte do site */
.page_fourth{
  z-index: 9;
  background-color: var(--first-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px;
  user-select: none;
}

.page_fourth_title{
  color: var(--second-color-sec);
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 100px 0;
}

.page_fourth_box{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.page_fourth_box_img{
  height: 300px;
}

.page_fourth_box_icon_insta,
.page_fourth_box_icon_face{
  height: 80px;
}

.page_fourth_box_icon:hover{
  transform: scale(1.1);
  transition: .5s ease;
}

.page_fourth_box_icon_text_face,
.page_fourth_box_icon_text_insta{
  color: var(--second-color-sec);
  font-size: var(--bg-size-text);
  font-weight: 600;
}

.page_fourth_box_icon_link{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 200px;
}

.page_fourth_box_icon_text_insta{
  margin-left: 50px;
}

.footer{
  display: absolute;
  width: 100%;
  padding: 30px;
  bottom: 0;
  background-color: transparent;
  text-align: center;
  user-select: none;
  z-index: 11;
}

.footer_description{
  color: var(--first-color);
}

.programmer:hover{
  color: var(--alt-color);
  transition: .5s ease;
}

.sensitive-element {
  display: none;
}

/* responsividade mobile */

@media screen and (max-width: 1260px){
  .modal{
    padding: 30px;
  }

  .modal_content{
    margin: 0;
  }

  .modal_img{
    display: none;
  }

  .modal_title{
    font-size: 1.2rem;
  }
  
  .modal_subtitle{
    font-size: .9rem;
  }

  .modal_text{
    font-size: var(--sm-size-text);
  }

  .up_btn{
    display: none;
  }

  .main_texture_img{
    width: 100%;
  }

  .page_first{
    flex-direction: column;
    justify-content: center;
    margin: 30px 0;
  }

  .page_first_brush{
    display: none;
  }

  .page_first_section_left{
    height: 150px;
    display: flex;
    width: 100%;
    align-items: center;
  }

  .page_first_section_right{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
  }

  .page_first_section_left_img{
    height: 600px;
    position: relative;
    top: -100px;
    width: 100%;
    object-fit: contain;
  }

  .page_first_section_left_icon{
    height: 300px;
    width: 300px;
    margin-top: 100px;
  }

  .page_first_section_right_text{
    font-size: var(--sm-size-text);
    margin: 0;
  }

  .page_first_section_right_button{
    width: 100%;
    margin-top: 10px;
    display: flex;
  }

  .page_first_section_right_text_name{
    font-size: var(--sm-size-text);
  }

  .page_second{
    flex-direction: column;
    justify-content: space-around;
    padding: 100px 0;
  }

  .page_third{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
  }

  .page_second_left{
    height: 300px;
    width: 100%;
    padding: 0 30px;
  }

  .page_second_left_text{
    font-size: var(--sm-size-text);
    width: 100%;
  }

  .page_third_left{
    width: 100%;
    display: flex;
    padding: 0 30px;
  }

  .page_second_left_text_title,
  .page_third_left_text_title{
    font-size: 1.3rem;
  }

  .page_third_left_text span{
    padding: 0;
    margin: 0;
  }

  .page_third_left_text{
    font-size: var(--sm-size-text);
  }

  .page_second_right,
  .page_third_right{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 600px;
  }

  .page_second_right{
    height: 700px;
  }

  .page_second_right_card1_img,
  .page_third_right_card1_img,
  .page_third_right_card2_img,
  .page_second_right_card2_img{
    height: 170px;
  }

  .page_second_right_card1,
  .page_third_right_card3,
  .page_second_right_card2,
  .page_third_right_card2{
    width: auto;
    height: auto;
    padding: 20px 20px 5px;
    margin: 0;
    justify-content: start;
  }

  .page_second_right{
    padding-top: 100px;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .page_second_right_card3,
  .page_third_right_card1{
    display: none;
  }
  
  .page_third_right_card2{
    transform: rotate(-10deg);
  }

  .page_third_down_text,
  .page_third_down_text_span,
  .page_third_down_text_span2,
  .page_third_down_text_span3{
    font-size: var(--sm-size-text);
    text-align: justify;
    width: 100%;
  }

  .page_third_down{
    width: 100%;
    height: auto;
    padding: 50px 30px;
    margin: 0;
    display: flex;
  }

  .page_third_down_button{
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .page_third_down_text_span3_div{
    width: 100%;
    border-radius: initial;
    padding: 30px;
  }

  .page_fourth{
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .page_fourth_title{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
  }
  
  .page_fourth_box{
    flex-direction: column;
  }

  .page_fourth_box_img{
    height: 160px;
  }

  .page_fourth_box_icon_link,
  .page_fourth_box_icon_link{
    height: 130px;
    flex-direction: column;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .page_fourth_box_icon_face{
    margin-left: 30px;
  }

  .page_fourth_box_icon_face,
  .page_fourth_box_icon_insta{
    font-size: var(--sm-size-text);
    padding: 5px;
  }

  .page_fourth_box_icon_text_insta{
    margin: 0;
  }

  .footer_description{
    font-size: var(--sm-size-text);
  }
}

@media screen and (min-width: 1910px) {
  .page_first_section_left_img{
    bottom: -190px;
  }
}

@media screen and (min-width: 1261px) and (max-width: 1666px) {
  .page_first_section_left_img{
    margin-top: 100px;
    height: 1000px;
  }
}