* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

html {
   scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: inline-block;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    display: block;
}

body {
    font-size: 100%;
    zoom: 80%;
}

.btn {
    background-color: transparent;
    box-shadow: 3px 4px 10px #395c8e;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 600;
    padding: 10px;
    outline:none;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    width: 80%;
    margin: 0 auto;
}

.header {
    background-color: #0042cd;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    padding: 15px;
    grid-gap: 60px;
}

.header .logo {
    margin-top: 100px;
    color: #fff;
}

.header .logo .primor{
    font-family: 'Montserrat', sans-serif;
    font-weight:800;
    font-size: 8.75rem;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: 1fr;
    letter-spacing: -8px;
    line-height: 90px;
}

.header .logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    margin: 5px;
}

.header .logo .primor:after{
    content: '';
    background-color: #fff;
    width: 100px;
    height: 25px;
    position: absolute;
    top: 260px;
    margin: 8px;
}

.header .frase {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    width: 550px;
    text-align: center;
    margin-top: 60px;
}

.header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    width: 800px;
    max-width: 100%;
    text-align: center;
    padding-bottom: 200px;
}

.container-form {
    display: flex;
    justify-content: center;
    /* height: 600px; */
    min-height: 850px;
    position: relative;
}

.container-form .form {
    background-color: #0e3875;
    color: #fff;
    width: 800px;
    box-shadow: 3px 4px 10px #0e3875;
    display: grid;
    grid-template-columns: 1fr;
    /* padding: 100px; */
    padding: 60px 100px;
    justify-items: center;
    grid-gap: 20px;
    position: absolute;
    top: -166px;
    min-height: 795px;
    max-width: 100%;
}

.container-form .form .title, p {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.container-form .form p {
    width: 360px;
}

.container-form .form .title {
    font-size: 25px;
}

.container-form .form .form-group {
    display: flex;
    flex-flow: column-reverse;
    /* position: relative; */
    width: 100%;
}

.container-form .form .form-group label, input {
    transition: all 0.2s;
    touch-action: manipulation;
}

.container-form .form .form-group input,
.container-form .form .form-group textarea {
    border: none;
    background: transparent;
    border-bottom: 3px solid #395c8e;
    color: #fff;
    font-size: 20px;
    width: 100%;
    -webkit-appearance: none;
    padding: 0;
}


.container-form .form .form-group textarea{
    resize: vertical;
    min-height: 100px;
}

.container-form .form .form-group small {
    color: #f4a323;
}

.container-form .form .form-group .label {
    letter-spacing: 0.05rem;
}

.container-form .form .form-group :placeholder-shown + .label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 1.2rem) scale(1);
    font-weight: 600;
    font-style: italic;
}

::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}

.container-form .form .form-group input:focus::-webkit-input-placeholder {
    opacity: 1;
}

.container-form .form .form-group input:not(:placeholder-shown) + .label,
.container-form .form .form-group input:focus + .label {
    transform: translate(0, 0) scale(1);
    cursor: pointer;
}

.container-form .form .form-group input:valid {
    background: #0e3875;
}

.container-form .form input::placeholder {
    color: transparent;
    font-size: 20px;
    display: none;
}

.container-form .form button {
    background-color: #fff;
    color: #0042cd;
    width: 200px;
    margin-bottom: 20px;
    outline:none;
}

.container-form .form button:hover {
    background-color: #0e3875;
    color: #fff;
    border: 2px solid #fff;
}

.container-form .form .obs {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.container-form .form .obs span {
    text-decoration: underline;
    font-weight: 800;
    letter-spacing: 1px;
}

.detail-right {
    display: flex;
    justify-content: flex-end;
    padding: 30px;
}

.detail-right .blue {
    background-color: #0042cd;
    width: 300px;
    height: 30px;
    margin-right: 200px;
}

.container-contato {
    background-image: url('/assets/site/img/mancha_2.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    height: auto;
    text-align: center;
    color: #585959;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 15px;
}


.container-contato .texto {
    font-size: 1.8rem;
    text-align: justify;
    max-width: 100%;
}

.container-contato .produtos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container-contato .produtos .box img {
    width: 450px;
}

.container-contato .produtos .box ul li {
    font-size: 1.8rem;
    /* font-weight: 600; */
    display: flex;
    margin: 10px;
}

.container-contato .produtos .box ul li span {
    background-color: #0062cd;
    background-repeat: no-repeat;
    background-position: left;
    display: inline-block;
    width: 45px;
    height: 30px;
    margin-right: 20px;
}

.container-contato .btn-contato {
    background-color: #0e3875;
    color: #fff;
    max-width: 100%;
    width: 350px;
    padding: 15px;
    margin: 0 auto;
}

.container-contato .btn-contato:hover {
    background-color: #fff;
    color: #0e3875;
    border: 2px solid #0e3875;
}

.container-produtos {
    height: 500px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.container-produtos .box-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 30px;
}

.container-produtos .box img {
    width: 450px;
}

.container-produtos .content .title {
    color: #0042cd;
    font-size: 2.5rem;
    font-weight: 600;
}

.container-produtos .box-info .texto {
    color: #585959;
    font-size: 1.8rem;
    /* font-weight: 600; */
    text-align: start;
}

.container-produtos .content .grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.container-produtos .content .btn-orcamento {
    background-color: #0062cd;
    color: #fff;
    display: flex;
    width: 385px;
    align-items: center;
    padding: 15px;
    margin: 0 auto;
}

.container-produtos .content .btn-orcamento:hover {
    background-color: #fff;
    color: #0062cd;
    border: 2px solid #0062cd;
}

.detail-left {
    display: flex;
    justify-content: flex-start;
    padding: 30px;
}

.detail-left .blue {
    background-color: #0042cd;
    width: 300px;
    height: 30px;
    margin-left: 200px;
}

.container-representante {
    background-image: url('/assets/site/img/mancha_3.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 850px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
}

.container-representante .texto {
    color: #585959;
    font-size: 1.8rem;
    max-width: 100%;
    margin-bottom: 30px;
}

.container-representante a {
    background-color: #0e3875;
    color: #fff;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 15px;
    width: 740px;
    margin: 0 auto;
    margin-top: 10%;
}

.container-representante a:hover {
    background-color: #fff;
    color: #0e3875;
    border: 2px solid #0e3875;
}


.animacao-rolo-tinta{
    width: 30%;
    text-align: center;
    left: 0;
    top: -589px;
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.svg-tinta{
    transition: height 500ms ease;
    will-change: height;
    height: 22px;
    height: 0;
    overflow: hidden;
}

.svg-rolo{
    margin-top: -3px;
    margin-left: 20px;
    display: inline-block;
}

@media (max-width: 1366px) {
    .animacao-rolo-tinta{
        width: 280px;
        padding-left: 0;
    }
}



@media (max-width: 767px) {

    body {
        zoom: 100%;
    }

    .animacao-rolo-tinta{
        display: none;
    }

    .header {
        display: block;
    }

    .header .logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header .logo .primor {
        font-size: 4.75rem;
        letter-spacing: -5px;
        line-height: 60px;
    }

    .header .logo span {
        width: 100%;
        margin-left: 30px;
    }

    .header .logo .primor::after {
        width: 66px;
        height: 18px;
        top:211px;
        margin: 4px;
    }

    .header .frase {
        width: 100%;
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .header p {
        width: 100%;
        font-size: 1rem;
    }

    .container-form {
        min-height: 0;
        height: 600px;
    }

    .container-form .form {
        width: 100%;
        justify-content: center;
        position: relative;
        box-shadow: none;
    }

    .container-form .form .btn {
        font-size: 1rem;
        width: 80%;
    }

    .container-form .form p {
        width: 100%;
    }

    .container-form .form .obs {
        font-size: 11px;
        text-align: center;
    }

    .container-form .form .form-group input {
        width: auto;
    }

    .container-form .form .form-group input::placeholder {
        font-size: 16px;
    }

    .container-contato .texto {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .container-contato .produtos {
        display: block;
    }

    .container-contato .produtos .box ul {
        display: grid;
        grid-gap: 20px;
    }

    .container-contato .produtos .box ul li {
        font-size: 1.2rem;
        font-weight: normal;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 3fr;
        align-items: center;
    }

    .container-contato .btn-contato {
        width: 80%;
        font-size: 1rem;
        padding: 15px;
    }

    .container-produtos {
        display: block;
        height: auto;
        margin-top: 0;
    }

    .container-produtos .content  .grid {
        display: block;
    }

    .container-produtos .box-info .texto {
        font-size: 1.5rem;
        text-align: center;
    }

    .container-produtos .content .btn-orcamento {
        font-size: 1rem;
        width: 100%;
    }

    .container-representante .texto {
        font-size: 1.5rem;
        width: 100%;
    }

    .container-representante .btn {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 0;
    }

    .detail-right, .detail-left {
        display: none;
    }
}

