@charset "UTF-8";
/* CSS Document */

/* Reset */
body {
    background: #d3d8de;
}
/* Reset */

/* Header */
header.header h1 {
    clear: both;
    display: block;
    background: #ffffff;
    width: 75%;
    margin: 0 auto;
    padding: 35px;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
}
.header h1 span {
    color: #10893e;
}
/* Header */

/* Copy */
section.copy .box {
    clear: both;
    display: block;
    background: #ffffff;
    padding: 0 35px 35px 35px;
    width: 75%;
    margin: 0 auto;
}
img.thumb {
    clear: both;
    display: block;
    margin: 0 auto 35px auto;
}
.copy .box p {
    font-size: 20px;
    line-height: 1.8;
}
.copy .box p span {
    color: red;
}
a.cta {
    display: block;
    background-color: #fee301;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    text-align: center;
    padding: 10px 16px;
    font-weight: 700;
    color: black;
    text-decoration: none !important;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;
}
/* Copy */

/* Footer */
footer.footer {
    background: #f0f2f4;
    padding: 50px 0;
}
.footer p {
    text-align: center;
    color: #5b5a5a;
    font-weight: 700;
    margin: 0 auto;
}
/* Footer */

/* Responsivo */
@media (max-width: 700px) {
    body {
        background: #ffffff !important;
    }    
    header.header h1, section.copy .box {
        padding: 20px 0 20px 0;
        width: 100%;
    }
    header.header h1 {
        font-size: 23px;
        padding: 20px 0 10px 0;
    } 
    img.thumb {
        margin: 0 auto 15px auto;
    }
    .copy .box p {
        font-size: 14px;
        line-height: 1.2;
        margin: 0 auto 15px auto;
    }    
}
/* Responsivo */