/* Set height of body and the document to 100% to enable "full page tabs" */
body, html {
    height: 100%;
    margin: 0;
    /* font-family: Arial; */
    overflow-x: hidden;
  }

  .etapas {
    margin: 15px;
  }

  .etapas .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
  }

  .etapas .container h1 {
    font-size: 2.5rem;
    max-width: 600px;
    margin: 0;
    color: #02580f;
  }

  .etapas .container p {
    font-size: 1.5rem;
    max-width: 1000px;
  }

  .etapas .titulo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #02580f;
    /* padding-bottom: 50px; */
    padding-left: 20px;
  }

  .etapas .titulo h1::after {
    content: "";
    width: 120px;
    height: 10px;
    background: #02580f;
    display: block;
    margin-top: 20px;
  }
  
  /* Style tab links */
  .tablink {
    background-color: #115A10;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;

    width: 25%;
    font-size: 4rem;
    color: #FAC832;
    font-weight: bold;
  }
  
  .tablink:hover {
    background-color: #777;
  }
  
  /* Style the tab content (and add height:100% for full page content) */
  .tabcontent {
    color: white;
    display: none;
    /* padding: 100px 20px; */
    padding: 20px;
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
  }

  .tabcontent .conteudo {
    padding-top: 7%;
  }

  .tabcontent .conteudo h3 {
    font-size: 2rem;
  }

  .tabcontent .conteudo p {
    font-size: 1.2rem;
    line-height: 30px;
  }

  .tabcontent .conteudo ul li {
    font-size: 1.1rem;
    line-height: 30px;
  }
  
  /* #Etapa_1 {background-color: red;}
  #Etapa_2 {background-color: green;}
  #Etapa_3 {background-color: blue;}
  #Etapa_4 {background-color: orange;} */

  #Etapa_1, #Etapa_2, #Etapa_3, #Etapa_4 {
    background-color: green;
  }

@media (max-width: 700px) {
  .tabcontent .conteudo {
    padding-top: 25%;
  }

  .etapas .container h1,
  .etapas .titulo h1 {
    font-size: 2rem;
  }

  .tablink {
    font-size: 3rem;
  }
}