        html {
            max-width: 720px;
            margin: 0 auto;
            background-color: #2B2120;
            font-family: Arial;
            padding: 16px;
            color: #fff;
            font-family: "Montserrat", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        header {
            background-color: #FDF5F5;
            padding: 4px 16px;
            margin: -24px -24px 0 -24px;
            width: calc(100% + 16px);
            color: #7D5352;
            border-radius: 0px 0px 16px 16px;
        }

        header span {
            display: block;
            font-size: 12px;
            font-family: "Montserrat", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        h1 {
            display: flex;
            align-items: center;
            margin-top: 10px;
            margin-bottom: -5px;
            font-size: 32px;
            font-family: "Audiowide", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        h1 a {
            text-decoration: none;
        }

        h2 {
            font-size: 18px;
        }

        header h2 {
            font-weight: 400;
        }

        li {
            line-height: 20px;
            margin: auto auto 12px -24px;
        }

        form { display: flex; flex: 1; }

        input, button, button.secundario {
            padding: 8px 12px;
            color: #222222;
            flex: 1;
            border-radius: 8px;
            margin-bottom: 12px;
            width: 100%;
            font-family: "Montserrat", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        input {
            border: 1px solid #aeaeae;
        }
        input:hover {
            border-color: #7D5352;
        }
        input:focus, input:focus-visible {
            outline-color: #7D5352;
        }
        input.erro {
            border: 1px solid #D80303;
        }
        input.erro:focus, input.erro:focus-visible {
            outline-color: #D80303;
        }
        input.erro::placeholder {
            color: #EC8281;
            opacity: 1; /* Firefox */
        }
        input.erro::-ms-input-placeholder { /* Edge 12 -18 */
            color: #EC8281;
        }   

        button { 
            cursor: pointer;
            border: 0;
            background-color: #D80303;
            border: 1px solid #D80303;
            color: #FFFFFF;
            font-weight: bold !important;
        }
        button.secundario { 
            background-color: transparent;
            color: #FFFFFF;
        }
        button.terciario, a, a:active, a:visited { 
            background-color: transparent;
            border: 1px solid transparent;
            text-decoration: underline;
            color: #fff;
        }

        button.play {
            font-size: 18px;
            padding: 12px 24px;
        }
        button:hover {
            background-color: #920000;
            border-color: #920000;
        }
        button.secundario:hover {
            background-color: transparent;
            border-color: #920000;
        }
        button.terciario:hover, a:hover {
            background-color: transparent;
            border-color: transparent;
            color: #aeaeae;
        }
        
        #acoes { 
            display: flex; 
        }
        #acoes button {
            width: 100%;
        }
        
        img.logo {
            margin-right: 16px;
            width: auto;
            height: 48px;
        }

        img.logo.p {
            height: 24px;
        }

        img.capsule { 
            width: 100%; 
            border-radius: 8px;
        }

        #extras { 
            display: flex;
            margin: 16px 0;
        }
        #extras a {
            flex: 1;
            margin-left: 16px;
        }
        #inicial input:first-child, #acoes form:first-child {
            margin-right: 16px;
        }
        #extras a:first-child {
            margin-left: 0;
        }
        div.mobile { display: none; }

        @media screen and (max-width: 768px) {
            div.desktop { display: none; }
            html { font-size: 14px; }
            h1 { font-size: 20px; }
            h2 { font-size: 16px; }

        }