@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;1,300;1,400&display=swap");
/* CONFIGURAÇÕES GERAIS*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
	--title:#0265FF;
	--subtitle:#484848;
	--section-subtitle:#3483FF;
	--white:#ffF;
	--bkg-button:#3483FF;
	--bkg-button-hover:#0265FF;
	--dark-text:#25252D;
	--light-text:#D7D9E9;
}

body {
	font-family: "Lato";
	height: 100vh;
}

.help-desk-description {
    padding: 0px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 32px;
}

.help-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 32px;
    color: var(--title);
}

.help-subtitle {
    color: var(--subtitle);
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 20px;
}

.help-section-container section {
    display: flex;
    flex-direction: column;
}

.help-section-container section p{
    padding: 8px 0px 16px 0px;
    font-size: 16px;
}

.help-section-container section div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.help-section-subtitle {
    color: var(--section-subtitle);
    font-size: 18px;
    font-weight: bold;
    flex: 0 0 300px;
}
.help-section-button {
    padding: 6px 12px;
    border-radius: 4px;
    border: transparent;
    background-color: var(--bkg-button);
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    transition: all 0.1s ease;
    cursor: pointer;
	text-decoration: none;
}
.help-section-button:hover {
    background-color: var(--bkg-button-hover);
    transform: scale(0.98);
}
.help-section-subtitle::before {
    counter-increment: section 1;
    content: "" counter(section) " - "
}

.help-section-main {
    counter-reset: section 0;
    padding-left: 32px;
	padding-top: 32px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.help-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 32px;
    gap: 32px;
}
.help-section-header img {
    width: 100%;
    max-width: 220px;
}

.help-section-back_button {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin-left: 32px;
    margin-bottom: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    color: var(--dark-text);
	padding-top: 16px;
}

.help-section-back_button img{
    width: 24px;
}

.help-section-content-background {
	background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
	height:100vh;
}

.help-section-content-main {
    display: flex;
    gap: 48px;
    padding: 0px 32px 32px 32px;
    color: var(--dark-text);
}
.help-section-content-steps h4 {
    font-size: 16px;
    margin-bottom: 16px;
}
.help-section-content-steps h5 {
    margin-top: 4px;
    margin-bottom: 16px;
    font-size: 16px;
}
.help-section-content-steps ol {
    counter-reset: li;
}
.help-section-content-steps ol li {
    counter-increment: li;
    margin-left: 16px;
    font-size: 16px;
    font-weight: 600;
}
.help-section-content-steps ol li::marker {
    content: "" counter(li) "- ";
    font-size: 16px;
}

.help-section-content-steps p {
    padding: 0px 12px 12px 0px;
    margin-left: -16px;
    font-size: 16px;
    font-weight: 300;
}
.help-section-content-steps ul li {
    list-style: none;
    font-weight: 300;
    margin-bottom: 12px;
}

.help-section-content-steps {
	flex:1;
}

.help-section-content-description {
    display: flex;
    flex-direction: column;
	flex:1;
}

.help-section-content-description p {
    padding: 0;
    font-size: 16px;
    margin-bottom: 32px;
}

.help-section-content-description h2 {
    font-size: 30px;
    font-weight: bold;
    color: var(--title);
    margin-bottom: 32px;
}
.help-section-content-description h3 {
    color: var(--section-subtitle);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.help-section-content-description img {
    width: 100%;
    cursor: pointer;
}

.help-section-content-description figcaption {
    font-weight: 300;
    font-size: 14px;
}

.help-section-content-description img:hover {
    opacity: 0.7;
    transition: .5s ease;
}



/* The Modal (background) */
.modal-help-desk {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-help-desk-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 70%;
    border-radius: 8px;
  }
  
  /* Caption of Modal Image */
  #modal-help-desk-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--light-text);
    padding: 10px 0;
  }
  
  /* Add Animation */
  .modal-help-desk-content, #modal-help-desk-caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .modal-help-desk-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--light-text);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .modal-help-desk-close:hover,
  .modal-help-desk-close:focus {
    color: var(--light-text);
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-help-desk-modal-content {
      width: 100%;
    }
  }

  @media only screen and (max-width: 1360px) {
  	body {
  		margin-bottom:160px;
  	}
  }