@charset "utf-8";

/* *********************************** */
/*      RESETS E ESTILOS PADRAO        */
/* *********************************** */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6{ margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6{ font-size: 100%; font-weight: normal; }
ul { list-style: none; }
button, input, select, textarea{ margin: 0; }
img, embed, iframe, object, video{ height: auto; max-width: 100%; border: 0; margin: 0; padding: 0; }
audio { max-width: 100%; }
iframe { border: 0; }
table { border-collapse: collapse; border-spacing: 0; }
td, th { padding: 0; text-align: left; }
html { background-color: #FFFFFF; font-size: 62.5%; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; min-width: 300px; overflow-x: hidden; text-rendering: optimizeLegibility; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
article, aside, figure, footer, header, hgroup, section{ display: block; }
body, button, input, select, textarea{ font-family: 'Montserrat', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; }
code, pre{ -moz-osx-font-smoothing: auto; -webkit-font-smoothing: auto; font-family: monospace; }
body { color: #4a4a4a; font-weight: 400; line-height: 1.5; -webkit-overflow-scrolling: touch; margin: 0; }
a { cursor: pointer; text-decoration: none; color: inherit; transition: var(--smooth); }
a strong { color: currentColor; }
a:hover{ color: inherit; transition: var(--smooth); }
code { background-color: whitesmoke; color: #ff3860; font-size: 0.875em; font-weight: normal; padding: 0.25em 0.5em 0.25em; }
hr { background-color: whitesmoke; border: none; display: block; height: 2px; margin: 1.5rem 0; }
input[type="checkbox"], input[type="radio"] { vertical-align: baseline; }
small { font-size: 0.875em; }
span { font-style: inherit; font-weight: inherit; }
strong { font-weight: bolder; }
fieldset { border: none; }
pre { -webkit-overflow-scrolling: touch; background-color: whitesmoke; color: #4a4a4a; font-size: 0.875em; overflow-x: auto; padding: 1.25rem 1.5rem; white-space: pre; word-wrap: normal; }
pre code { background-color: transparent; color: currentColor; font-size: 1em; padding: 0; }
table td, table th { text-align: left; vertical-align: top; }

.centralizador { width:1300px; width:130rem; }
.hack          { clear:both; }
.oculto        { display:none; }
.block         { display: block; }

.flex             { display: flex; }
.flex-wrap        { flex-wrap: wrap; }
.justify-center   { justify-content: center; }
.justify-start    { justify-content: flex-start; }
.justify-end      { justify-content: flex-end; }
.justify-between  { justify-content: space-between; }
.justify-around   { justify-content: space-around; }
.align-center     { align-items: center; }
.align-start      { align-items: flex-start; }
.align-end        { align-items: flex-end; }
.direction-column { flex-direction: column; }
.direction-row    { flex-direction: row; }

.aesquerda { float:left; }
.adireita  { float:right; }
.aocentro  { float: none; margin: 0 auto; }

.fg-branco                       { color: #FFF; transition: var(--smooth); }
.fg-preto                        { color: #000; transition: var(--smooth); }
.fg-cinza-claro                  { color: #d8d8d8; transition: var(--smooth); }
.fg-cinza                        { color: #666666; transition: var(--smooth); }
.fg-cinza-escuro                 { color: #333333; transition: var(--smooth); }
.fg-vermelho                     { color: #FF0000; transition: var(--smooth); }
.fg-branco-hover:hover           { color: #FFF; transition: var(--smooth); }
.fg-preto-hover:hover            { color: #000; transition: var(--smooth); }
.fg-cinza-claro-hover:hover      { color: #d8d8d8; transition: var(--smooth); }
.fg-cinza-hover:hover            { color: #666666; transition: var(--smooth); }
.fg-cinza-escuro-hover:hover     { color: #333333; transition: var(--smooth); }

.bg-branco                       { background-color: #FFF; transition: var(--smooth); }
.bg-preto                        { background-color: #000; transition: var(--smooth); }
.bg-cinza-claro                  { background-color: #d8d8d8; transition: var(--smooth); }
.bg-cinza                        { background-color: #666666; transition: var(--smooth); }
.bg-cinza-escuro                 { background-color: #333333; transition: var(--smooth); }
.bg-vermelho                     { background-color: #FF0000; transition: var(--smooth); }
.bg-branco-hover:hover           { background-color: #FFF; background: #FFF; transition: var(--smooth); }
.bg-preto-hover:hover            { background-color: #000; transition: var(--smooth); }
.bg-cinza-claro-hover:hover      { background-color: #d8d8d8; transition: var(--smooth); }
.bg-cinza-hover:hover            { background-color: #666666; transition: var(--smooth); }
.bg-cinza-escuro-hover:hover     { background-color: #333333; transition: var(--smooth); }

.fg-facebook               { color: #3b5998; transition: var(--smooth); }
.fg-instagram              { color: #bc2a8d; transition: var(--smooth); }
.fg-twitter                { color: #00aced; transition: var(--smooth); }
.fg-youtube                { color: #bb0000; transition: var(--smooth); }
.fg-google                 { color: #dd4b39; transition: var(--smooth); }
.fg-linkedin               { color: #0077b5; transition: var(--smooth); }
.fg-whatsapp               { color: #34af23; transition: var(--smooth); }
.fg-skype                  { color: #00aff0; transition: var(--smooth); }
.fg-facebook-hover:hover   { color: #3b5998; transition: var(--smooth); }
.fg-instagram-hover:hover  { color: #bc2a8d; transition: var(--smooth); }
.fg-twitter-hover:hover    { color: #00aced; transition: var(--smooth); }
.fg-youtube-hover:hover    { color: #bb0000; transition: var(--smooth); }
.fg-google-hover:hover     { color: #dd4b39; transition: var(--smooth); }
.fg-linkedin-hover:hover   { color: #0077b5; transition: var(--smooth); }
.fg-whatsapp-hover:hover   { color: #34af23; transition: var(--smooth); }
.fg-skype-hover:hover      { color: #00aff0; transition: var(--smooth); }

.bg-facebook               { background-color: #3b5998; transition: var(--smooth); }
.bg-instagram              { background: -webkit-linear-gradient(45deg, #f8a652, #cd486b, #8a3ab9, #4c68d7); transition: var(--smooth); }
.bg-twitter                { background-color: #00aced; transition: var(--smooth); }
.bg-youtube                { background-color: #bb0000; transition: var(--smooth); }
.bg-google                 { background-color: #dd4b39; transition: var(--smooth); }
.bg-linkedin               { background-color: #0077b5; transition: var(--smooth); }
.bg-whatsapp               { background-color: #34af23; transition: var(--smooth); }
.bg-skype                  { background-color: #00aff0; transition: var(--smooth); }
.bg-facebook-hover:hover   { background-color: #3b5998; transition: var(--smooth); }
.bg-instagram-hover:hover  { background: -webkit-linear-gradient(45deg, #f8a652, #cd486b, #8a3ab9, #4c68d7); transition: var(--smooth); }
.bg-twitter-hover:hover    { background-color: #00aced; transition: var(--smooth); }
.bg-youtube-hover:hover    { background-color: #bb0000; transition: var(--smooth); }
.bg-google-hover:hover     { background-color: #dd4b39; transition: var(--smooth); }
.bg-linkedin-hover:hover   { background-color: #0077b5; transition: var(--smooth); }
.bg-whatsapp-hover:hover   { background-color: #34af23; transition: var(--smooth); }
.bg-skype-hover:hover      { background-color: #00aff0; transition: var(--smooth); }

.txt-aesquerda { text-align:    left; }
.txt-adireita  { text-align:   right; }
.txt-aocentro  { text-align:  center; }
.txt-justify   { text-align: justify; }

.light     { font-weight: 300; }
.regular   { font-weight: 400; }
.medium    { font-weight: 500; }
.semibold  { font-weight: 600; }
.bold      { font-weight: 700; }
.extrabold { font-weight: 800; }
.black     { font-weight: 900; }
.italic    { font-style: italic; }

.capitalize { text-transform: capitalize; }
.uppercase  { text-transform: uppercase; }
.lowercase  { text-transform: lowercase; }

.ellipsis{ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

.font0  { font-size:   0px; font-size:   0rem; }
.font1  { font-size:   1px; font-size:  .1rem; }
.font2  { font-size:   2px; font-size:  .2rem; }
.font4  { font-size:   4px; font-size:  .4rem; }
.font8  { font-size:   8px; font-size:  .8rem; }
.font9  { font-size:   9px; font-size:  .9rem; }
.font10 { font-size:  10px; font-size:   1rem; }
.font12 { font-size:  12px; font-size: 1.2rem; }
.font13 { font-size:  13px; font-size: 1.3rem; }
.font14 { font-size:  14px; font-size: 1.4rem; }
.font16 { font-size:  16px; font-size: 1.6rem; }
.font18 { font-size:  18px; font-size: 1.8rem; }
.font20 { font-size:  20px; font-size:   2rem; }
.font24 { font-size:  24px; font-size: 2.4rem; }
.font28 { font-size:  28px; font-size: 2.8rem; }
.font30 { font-size:  30px; font-size:   3rem; }
.font36 { font-size:  36px; font-size: 3.6rem; }
.font40 { font-size:  40px; font-size:   4rem; }
.font44 { font-size:  44px; font-size: 4.4rem; }
.font48 { font-size:  48px; font-size: 4.8rem; }
.font50 { font-size:  50px; font-size:   5rem; }
.font62 { font-size:  62px; font-size: 6.2rem; }
.font70 { font-size:  70px; font-size:   7rem; }
.font80 { font-size:  80px; font-size:   8rem; }

.font-pridi{ font-family: 'Pridi', serif; letter-spacing: 0.065em; }

.pointer{ cursor: pointer; }

.opacity{ opacity: .5; transition: .3s; }
.opacity:hover{ opacity: 1; transition: .3s; }

.left{ margin-right: 6px; }
.right{ margin-left: 6px; }

.link{ text-decoration: none; }
.link:hover{ text-decoration: underline; }

.cl     { margin: 0 8px; margin: 0 .8rem; }
.cl_100 { width: calc(100% - 16px);    width: calc(100% - 1.6rem);    }
.cl_90  { width: calc(90% - 16px);     width: calc(90% - 1.6rem);     }
.cl_80  { width: calc(80% - 16px);     width: calc(80% - 1.6rem);     }
.cl_70  { width: calc(70% - 16px);     width: calc(70% - 1.6rem);     }
.cl_75  { width: calc(75% - 16px);     width: calc(75% - 1.6rem);     }
.cl_66  { width: calc(66.666% - 16px); width: calc(66.666% - 1.6rem); }
.cl_60  { width: calc(60% - 16px);     width: calc(60% - 1.6rem);     }
.cl_50  { width: calc(50% - 16px);     width: calc(50% - 1.6rem);     }
.cl_40  { width: calc(40% - 16px);     width: calc(40% - 1.6rem);     }
.cl_33  { width: calc(33.333% - 16px); width: calc(33.333% - 1.6rem); }
.cl_30  { width: calc(30% - 16px);     width: calc(30% - 1.6rem);     }
.cl_25  { width: calc(25% - 16px);     width: calc(25% - 1.6rem);     }
.cl_20  { width: calc(20% - 16px);     width: calc(20% - 1.6rem);     }
.cl_10  { width: calc(10% - 16px);     width: calc(10% - 1.6rem);     }

/* ******************* */
/*    DESKTOP LARGE    */
/* ******************* */
@media screen and (min-width: 1320px) {
    .centralizador        { max-width:1300px; max-width:130rem; margin:0 auto; }
    .esconde_desktop      { display: none; }
    .esconde_fulldesktop  { display: none; }
    .exibe_desktop        { display: block; }
    .exibe_fulldesktop    { display: block; }

    .cl_fd     { margin: 0 8px; margin: 0 .8rem; }
    .cl_fd_100 { width: calc(100% - 16px);    width: calc(100% - 1.6rem);    }
    .cl_fd_90  { width: calc(90% - 16px);     width: calc(90% - 1.6rem);     }
    .cl_fd_80  { width: calc(80% - 16px);     width: calc(80% - 1.6rem);     }
    .cl_fd_70  { width: calc(70% - 16px);     width: calc(70% - 1.6rem);     }
    .cl_fd_75  { width: calc(75% - 16px);     width: calc(75% - 1.6rem);     }
    .cl_fd_66  { width: calc(66.666% - 16px); width: calc(66.666% - 1.6rem); }
    .cl_fd_60  { width: calc(60% - 16px);     width: calc(60% - 1.6rem);     }
    .cl_fd_50  { width: calc(50% - 16px);     width: calc(50% - 1.6rem);     }
    .cl_fd_40  { width: calc(40% - 16px);     width: calc(40% - 1.6rem);     }
    .cl_fd_33  { width: calc(33.333% - 16px); width: calc(33.333% - 1.6rem); }
    .cl_fd_30  { width: calc(30% - 16px);     width: calc(30% - 1.6rem);     }
    .cl_fd_25  { width: calc(25% - 16px);     width: calc(25% - 1.6rem);     }
    .cl_fd_20  { width: calc(20% - 16px);     width: calc(20% - 1.6rem);     }
    .cl_fd_10  { width: calc(10% - 16px);     width: calc(10% - 1.6rem);     }
    
}

/* ******************* */
/*        DESKTOP      */
/* ******************* */
@media screen and (min-width: 1024px) and (max-width: 1319px) {
    .centralizador        { width:98%; max-width:1280px; max-width:128rem; margin:0 auto; }
    .esconde_desktop      { display: none; }
    .esconde_smalldesktop { display: none; }
    .exibe_desktop        { display: block; }
    .exibe_smalldesktop   { display: block; }
    
    .cl_d     { margin: 0 8px; margin: 0 .8rem; }
    .cl_d_100 { width: calc(100% - 16px);    width: calc(100% - 1.6rem); }
    .cl_d_90  { width: calc(90% - 16px);     width: calc(90% - 1.6rem); }
    .cl_d_80  { width: calc(80% - 16px);     width: calc(80% - 1.6rem); }
    .cl_d_70  { width: calc(70% - 16px);     width: calc(70% - 1.6rem); }
    .cl_d_75  { width: calc(75% - 16px);     width: calc(75% - 1.6rem); }
    .cl_d_66  { width: calc(66.666% - 16px); width: calc(66.666% - 1.6rem); }
    .cl_d_60  { width: calc(60% - 16px);     width: calc(60% - 1.6rem); }
    .cl_d_50  { width: calc(50% - 16px);     width: calc(50% - 1.6rem); }
    .cl_d_40  { width: calc(40% - 16px);     width: calc(40% - 1.6rem); }
    .cl_d_33  { width: calc(33.333% - 16px); width: calc(33.333% - 1.6rem); }
    .cl_d_30  { width: calc(30% - 16px);     width: calc(30% - 1.6rem); }
    .cl_d_25  { width: calc(25% - 16px);     width: calc(25% - 1.6rem); }
    .cl_d_20  { width: calc(20% - 16px);     width: calc(20% - 1.6rem); }
    .cl_d_10  { width: calc(10% - 16px);     width: calc(10% - 1.6rem); }

}

/* ******************* */
/*       TABLET        */
/* ******************* */
@media only screen and (min-width: 641px) and (max-width: 1023px) {
    .centralizador    { width:98%; margin: 0 auto; }
    .esconde_tablet   { display: none !important; }
    .exibe_tablet     { display: block; }

    .cl_t     { margin: 0 8px; margin: 0 .8rem; }
    .cl_t_100 { width: calc(100% - 16px);    width: calc(100% - 1.6rem); }
    .cl_t_90  { width: calc(90% - 16px);     width: calc(90% - 1.6rem); }
    .cl_t_80  { width: calc(80% - 16px);     width: calc(80% - 1.6rem); }
    .cl_t_70  { width: calc(70% - 16px);     width: calc(70% - 1.6rem); }
    .cl_t_75  { width: calc(75% - 16px);     width: calc(75% - 1.6rem); }
    .cl_t_66  { width: calc(66.666% - 16px); width: calc(66.666% - 1.6rem); }
    .cl_t_60  { width: calc(60% - 16px);     width: calc(60% - 1.6rem); }
    .cl_t_50  { width: calc(50% - 16px);     width: calc(50% - 1.6rem); }
    .cl_t_40  { width: calc(40% - 16px);     width: calc(40% - 1.6rem); }
    .cl_t_33  { width: calc(33.333% - 16px); width: calc(33.333% - 1.6rem); }
    .cl_t_30  { width: calc(30% - 16px);     width: calc(30% - 1.6rem); }
    .cl_t_25  { width: calc(25% - 16px);     width: calc(25% - 1.6rem); }
    .cl_t_20  { width: calc(20% - 16px);     width: calc(20% - 1.6rem); }
    .cl_t_10  { width: calc(10% - 16px);     width: calc(10% - 1.6rem); }    
}

/* ******************* */
/*       CELULAR       */
/* ******************* */
@media only screen and (max-width: 640px) {
    .centralizador    { width: 98%; margin: 0 auto; }
    .esconde_celular  { display: none !important; }
    .exibe_celular    { display: block; }   

    .cl_c     { margin: 0 8px; margin: 0 .8rem; }
    .cl_c_100 { width: calc(100% - 16px);    width: calc(100% - 1.6rem); }
    .cl_c_90  { width: calc(90% - 16px);     width: calc(90% - 1.6rem); }
    .cl_c_80  { width: calc(80% - 16px);     width: calc(80% - 1.6rem); }
    .cl_c_70  { width: calc(70% - 16px);     width: calc(70% - 1.6rem); }
    .cl_c_75  { width: calc(75% - 16px);     width: calc(75% - 1.6rem); }
    .cl_c_66  { width: calc(66.666% - 16px); width: calc(66.666% - 1.6rem); }
    .cl_c_60  { width: calc(60% - 16px);     width: calc(60% - 1.6rem); }
    .cl_c_50  { width: calc(50% - 16px);     width: calc(50% - 1.6rem); }
    .cl_c_40  { width: calc(40% - 16px);     width: calc(40% - 1.6rem); }
    .cl_c_33  { width: calc(33.333% - 16px); width: calc(33.333% - 1.6rem); }
    .cl_c_30  { width: calc(30% - 16px);     width: calc(30% - 1.6rem); }
    .cl_c_25  { width: calc(25% - 16px);     width: calc(25% - 1.6rem); }
    .cl_c_20  { width: calc(20% - 16px);     width: calc(20% - 1.6rem); }
    .cl_c_10  { width: calc(10% - 16px);     width: calc(10% - 1.6rem); }

}


/* ******************* */
/*    VARIÁVEIS        */
/* ******************* */
/*
:root {
  --exemplo: #005780; USO: background-color: var(--exemplo); 
}
*/

/* CSS ASSINATURA W3 CORP */
:root{
    --color-primaria: #b2aaa4;     /* ALTERAR */
    --color-secundaria: #006EB9;   /* ALTERAR */
    --color-coracao: #e22323;      /* ALTERAR */
    --smooth: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.copy-w3-color{ color: var(--color-primaria); font-size: 12px; }
.copy-w3-color-heart{ color: var(--color-coracao); }
.w3-copy-w3{ padding: 10px 0; }
.w3-copy-w3 i{ margin: 0 3px; }
.w3-copy-w3 a svg{ height: 9px; margin-left: 3px; }
.w3-copy-w3 a svg path#w,
.w3-copy-w3 a svg path#t,
.w3-copy-w3 a svg path#re{ fill: var(--color-primaria); }
.w3-copy-w3 a svg path#c,
.w3-copy-w3 a svg path#o,
.w3-copy-w3 a svg path#r,
.w3-copy-w3 a svg path#p{ fill: var(--color-secundaria); transition: var(--smooth); }
.w3-copy-w3 a:hover svg path#c,
.w3-copy-w3 a:hover svg path#o,
.w3-copy-w3 a:hover svg path#r,
.w3-copy-w3 a:hover svg path#p{ fill: var(--color-primaria); transition: var(--smooth); }
/* CSS ASSINATURA W3 CORP */

/* CSS PÁGINA 404 */
section.w3-404{ height: 85vh; justify-content: center; align-items: center; background-color: #FFF; background-image: url('../img/404/patern.png'); color: #484848; }
.w3-404-conteudo{ justify-content: center; align-content: center; height: auto; width: 100%; flex-wrap: wrap; padding: 30px 0; }
.w3-404-conteudo-img{ height: 124px; width: 143px; justify-content: center; align-items: center; }
.w3-404-conteudo-txt{ width: 100%; flex-wrap: wrap; }
.w3-404-conteudo-txt p{ width: 100%; font-family: 'Pridi', serif; }
.w3-404-conteudo-txt p:last-of-type{ width: 100%; font-family: 'Quicksand', sans-serif; }
.w3-404-conteudo-txt-titulo{ width: 100%; background: url('../img/404/tag.png') no-repeat center center; background-size: 332px 85px; }
.w3-404-conteudo-txt-titulo h1{ font-family: 'Pridi', serif; line-height: 85px; color: #b8b8b8; }
.w3-404-conteudo-txt h2{ width: 100%; font-family: 'IBM Plex Serif', serif; }
/* CSS PÁGINA 404 */


/* ************************************************************************************************************************** */
/*          CSS CLIENTE           CSS CLIENTE           CSS CLIENTE           CSS CLIENTE           CSS CLIENTE               */
/* ************************************************************************************************************************** */

/* VARIÁVEIS DO PROJETO */
:root{
    --smooth: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    --color1: #444444;
    --color2: #CCB88F;
    --color3: #eaeaea;
    --color4: #000000;
    --color5: #FFFFFF;
    --color-whatsapp: #25d366;
    --color-whatsapp-alt: #128C7E;
    --shadow: 0px 10px 15px 1px rgba(0, 0, 0, 0.2), 0px 2px 5px 1px rgba(0, 0, 0, 0.1);
}
/* VARIÁVEIS DO PROJETO */

.btn{ display: flex; align-items: center; justify-content: center; height: 40px; width: 180px; font-size: 14px; font-weight: 500; text-transform: uppercase; transition: var(--smooth); text-align: center; }
.btn-padrao{ color: var(--color5); background: var(--color2); }
.btn-padrao:hover{ color: var(--color2); background: var(--color1); }
.btn-whatsapp{ color: var(--color5); background: var(--color-whatsapp); width: 235px; }
.btn-whatsapp:hover{ color: var(--color5); background: var(--color-whatsapp-alt); }

.w3-form-box{ margin-bottom: 10px; }
.w3-form-box label{ font-size: 14px; line-height: 1; margin-bottom: 5px; display: block; text-transform: uppercase; }
.w3-form-box-campo{ height: 34px; width: 100%; overflow: hidden; }
.w3-form-box-campo input,
.w3-form-box-campo select{ height: 100%; width: 100%; background: var(--color5); padding: 0 10px; font-size: 14px; border: 0; }
.w3-form-box-campo input:focus,
.w3-form-box-campo select:focus,
.w3-form-box-textarea textarea{ outline: none; }
.w3-form-box-textarea{ height: 80px; width: 100%; overflow: hidden; }
.w3-form-box-textarea textarea{ height: 100%; width: 100%; background: var(--color5); padding: 10px; font-size: 14px; border: 0; }
.w3-form-box button{ border: none; cursor: pointer; }
.w3-form-divisor{ margin: 12px 0 20px; width: 100%; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.required::after{ content: ' *'; font-size: 14px; color: red; }
.whatsapp-icon{ height: 11px; fill: var(--color-whatsapp); }

.w3-edit-conteudo-txt{ text-align: left; }
.w3-edit-conteudo-txt h2,
.w3-edit-conteudo-txt h3,
.w3-edit-conteudo-txt h4,
.w3-edit-conteudo-txt h5,
.w3-edit-conteudo-txt h6{ font-size: 18px; font-size: 1.8rem; font-weight: 600; padding: 8px 0 5px; padding: .8rem 0 .5rem; }
.w3-edit-conteudo-txt p{ font-size: 16px; line-height: 1.6; margin-top: 1.5em; margin-bottom: -0.086em; }
.w3-edit-conteudo-txt ul,
.w3-edit-conteudo-txt ol{ list-style-position: inside; margin-top: 1.5em; margin-bottom: -0.086em; }
.w3-edit-conteudo-txt img{ margin: 15px 0; margin: 1.5rem 0; padding: 0 5%; width: 100%; }

/*************************************** COMEÇO ***************************************/
.w3-cabecalho-conteudo{ padding: 20px 0; }
.w3-cabecalho-conteudo img{ height: 80px; }

.w3-conteudo{ margin: 60px auto; }
.w3-conteudo p{ line-height: 1.8; }
.w3-conteudo ul{ list-style-type: disc; list-style-position: inside; line-height: 1.8; }
.diamond-icon{ height: 18px; fill: var(--color2); vertical-align: text-top; }
.w3-info{ width: 50%; padding: 0 15px; }
.w3-form{ background-color: var(--color3); padding: 70px 40px; font-weight: 500; width: 50%; }
.w3-form h2{ margin-top: 20px; margin-bottom: 40px; }

section.w3-objetivo{ padding: 60px 0; }
.w3-objetivo-conteudo{ max-width: 680px; margin: 0 auto; }
.w3-objetivo-conteudo h1{ margin-bottom: 20px; }
.w3-objetivo-conteudo p{ line-height: 1.8; }
/* ******************* */
/*    DESKTOP LARGE    */
/* ******************* */
@media screen and (min-width: 1320px) {

}

/* ******************* */
/*        DESKTOP      */
/* ******************* */
@media screen and (min-width: 1024px) and (max-width: 1319px) {
    
}

/* ******************* */
/*       TABLET        */
/* ******************* */
@media only screen and (min-width: 641px) and (max-width: 1023px) {
    .w3-conteudo{ flex-wrap: wrap; }
    .w3-info{ width: 100%; padding: 0; margin-bottom: 60px; }
    .w3-form{ padding: 50px 25px; width: 100%; }
 
}

/* ******************* */
/*       CELULAR       */
/* ******************* */
@media only screen and (max-width: 640px) {
    .w3-conteudo{ flex-wrap: wrap; }
    .w3-info{ width: 100%; padding: 0 5px; margin-bottom: 60px; }
    .w3-info-conteudo h2{ line-height: 1; font-size: 14px; }
    .w3-info-conteudo p,
    .w3-info-conteudo ul{ font-size: 12px; }
    .w3-info-conteudo p strong{ line-height: 1 !important; }
    .w3-form{ padding: 25px 5px; width: 100%; }
    .w3-form h1{ font-size: 14px; line-height: 1.2; }
    .w3-form h2{ margin-top: 20px; margin-bottom: 20px; font-size: 12px; }
    .w3-form-box label{ font-size: 12px; }
}
