/* RESET */

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

html {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins";
    font-size: 16px;
    background: #f7f8fa;
    color: #fff;
    line-height: normal;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    height: 100vh;
    overflow: hidden;
}

h1 {
    color: #FFF;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 131.25% */
    letter-spacing: 0.64px;
}

p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-accent {
    font-weight: 700;
}

input {
    display: flex;
    height: 44px;
    padding: 13.738px;
    justify-content: center;
    align-items: center;
    gap: 9.159px;
    flex-shrink: 0;
    border-radius: 6px;
    background: #E7F0ED;
    border: none;
    color: var(--preto, #000);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    /* 19.6px */
}

input::placeholder {
    color: var(--preto, #000);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    /* 19.6px */
}

/* FLEXBOX */

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.w-100 {
    width: 100% !important;
}

.flex-50 > * {
    flex: 1;
}

.gap10 {
    gap: 10px
}

.gap15 {
    gap: 15px
}

.gap20 {
    gap: 20px;
}

.gap40 {
    gap: 40px;
}

/* BOTÕES */
.btn {
    display: flex;
    width: 200px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 11.429px;
    flex-shrink: 0;
    border-radius: 6.857px;
    font-family: Poppins;
    font-size: 18.286px;
    font-style: normal;
    font-weight: 700;
    line-height: 100.8%;
    /* 18.432px */
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s ease;
    border: none;
    position: relative;
}

.btn .btn-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn.loading .btn-text {
    opacity: 0;
    transform: scale(0.9);
}

.btn .loading-content {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn.loading .loading-content {
    opacity: 1;
    transform: scale(1);
}

.btn.loading {
    pointer-events: none;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-primary {
    background: #B9003A;
    box-shadow: 4px 4px 0 0 #500018;
    color: var(--branco, #FFF);
    transition: transform 0.3s easy;
}

.btn-secundary {
    background: #700029;
    box-shadow: 4px 4px 0 0 #500018;
    transition: transform 0.3s ease;
}

.btn-gray {
    border-radius: 6.857px;
    background: #DADDDB;
    box-shadow: 4px 4px 0 0 #5C635E;
    color: #5C635E;
    transition: transform 0.3s ease;
}

.btn-primary:hover, .btn-secundary:hover, .btn-gray:hover {
    transform: scale(1.02);
}

.btn-share, .btn-download {
    display: flex;
    height: 37px;
    padding: 0px 14px;
    justify-content: center;
    align-items: center;
    gap: 9.811px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 0.858px solid #FFF;
    color: var(--branco, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100.8%;
    /* 14.112px */
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-share {
    display: none;
}

.btn-download a {
    color: var(--branco, #FFF);
    text-decoration: none;
}

.btn-share:hover, .btn-download:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
}

.buttons-content > * {
    flex: 1;
}

:root {
    /* CORES */
    --color-primary: #B9003A;
    --color-secondary: #500018;
    --gray-light: #576359;
    --gray-btn: #5C635E;
}

/* FOOTER */

.content-footer  {
    margin-top: 60px;
    gap: 8px;
}

.content-footer img {
    margin-right: 5px;
    margin-bottom: 10px;
}

.footer-dark {
    color: #303030;
}


header .info-lab {
    display: none;
}

header .logo-pardini-mobile {
    display: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Variantes dark */
.info-lab-dark p {
    color: #576359 !important;
}

.btn-share-dark, .btn-download-dark {
    border-color: #576359 !important;
    color: #576359 !important;
}

.btn-download-dark a {
    color: #576359 !important;
    text-decoration: none;
}

/* Responsividade */

@media (max-width: 1200px) {
    footer {
        display: none;
    }

    .logo-lab-to-lab img {
        width: 138px;
    }

    header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
        padding: 0px 25px;
    }
    
    header .info-lab {
        display: flex;
    }
    
    header .logo-pardini-mobile {
        display: flex;
    }

    .logo-pardini-mobile img {
        width: 85px;
    }
    
    .info-lab p {
        color: var(--branco, #FFF);
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%; /* 13px */
    }
    
    .btn-download {
        display: none;;
    }

    .btn-share {
        display: flex;
        width: 122px;
        height: 32px;
        justify-content: center;
        align-items: center;
        gap: 6.825px;
        flex-shrink: 0;
        border-radius: 4.095px;
        border: 0.597px solid #FFF;
        color: var(--branco, #FFF);
        font-family: Poppins;
        font-size: 10px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; /* 12px */
        text-transform: uppercase;
    }

    .logo-pardini-mobile {
        display: flex;
        justify-content: flex-end;
    }

    .btn-share-header {
        display: flex;
        justify-content: flex-end;
    }

    body {
        padding: 32px 0px !important
    };
}