/* CSS - Cascading Style Sheets*/
:root {
    /* tamanho da fonte padrão: 16px - 100% - 1rem */
    font-size: 60%; /* controle das medidas rem */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100vh; /* height = altura */
    width: 100vw;
    display: flex;
    justify-content: center;
}

body {
    /*height: 95vh;*/
    width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ea4c89;
    color: #FFFFFF;
    text-align: center;
    max-width: 500px;
}

/*font-family: 'Roboto', sans-serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Roboto', sans-serif;
*/
h2 {
    font: 400 2.25rem 'Josefin Sans', sans-serif;
    padding-top: 1.8rem;
    line-height: 2.7rem;
}

.seja-socio {
    font: 400 1.8rem 'Josefin Sans', sans-serif;
    padding-top: 1.8rem;
    line-height: 2.43rem;
}

.plano {
    font: 400 1.8rem 'Josefin Sans', sans-serif;
    padding-top: 1.8rem;
    line-height: 2.43rem;
}

.valores-ingresso {
    font: 400 1.8rem 'Josefin Sans', sans-serif;
    padding-top: 1.8rem;
    line-height: 2.43rem;
}

img {
    padding-top: 1.8rem;
    max-width: 150px;
}

    a {
        width: 70vw;
        border-radius: 0.75rem;
        font: 700 1.8rem Cousine;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ea4c89;
        transition: background 0.2s;
        background-color: #FFFFFF;
        margin-top: 1.8rem;
        height: 3.6rem;
        max-width: 500px;
    }

    .voltar {
        width: 70vw;
        border-radius: 0.75rem;
        font: 700 1.8rem Cousine;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ffffff;
        transition: background 0.2s;
        background-color: #ea4c89;
        margin-top: 1.8rem;
        height: 3.6rem;
        max-width: 500px;
    }

    .voltar-i {
        width: 70vw;
        border-radius: 0.75rem;
        font: 700 1.8rem Cousine;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ffffff;
        transition: background 0.2s;
        background-color: #ea4c89;
        margin-top: 1.8rem;
        height: 3.6rem;
        max-width: 500px;
    }

    .voltar-in {
        width: 70vw;
        border-radius: 0.75rem;
        font: 700 1.8rem Cousine;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color:  #ea4c89;
        transition: background 0.2s;
        background-color: #ffffff;
        margin-top: 1.8rem;
        height: 3.6rem;
        max-width: 500px;
    }

    #butons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #ea4c89;
        color: #FFFFFF;
        text-align: center;
        max-width: 500px;
        opacity: 0;
        animation-delay: 1s;
        animation-duration: 0.5s;
        animation-name: slidein;
        animation-fill-mode: forwards;
    }


    #intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #ea4c89;
        color: #FFFFFF;
        max-width: 500px;
        text-align: justify;
    }

  
  @keyframes slidein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 3;

   }
  }

    @media (min-width: 500px) {
        #butons, #intro { 
            flex-direction: row;
    }
    h2, a:first-child {
        margin-right: 2rem;
    }
}

img {
    animation-duration: 0.5s;
    animation-name: direita;
    animation-fill-mode: forwards;
  }
  
  @keyframes direita {
    from {
        margin-left: 100%;
        width: 300%
      }
    
      to {
        margin-left: 0%;
        width: 100%;
      }
  }

 h2 {
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-name: slidein;
    animation-fill-mode: forwards;
  }
  
  @keyframes slidein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 3;

   }
  }

    @media (min-width: 500px) {
        #butons, #intro { 
            flex-direction: row;
    }
    h2, a:first-child {
        margin-right: 2rem;
    }
}


    