body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #6e6e6e;
    background: white;
    scroll-behavior: smooth;
}

nav {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 50px;
    background-color: #fcfcfc;
    height: 100px;
}

nav a {
    text-transform: uppercase;
    color: #505050; 
    text-decoration: none;
    padding-left: 20px;
    font-size: 15px;
    letter-spacing: 0.2px;
}

@media (max-width:449px) { 
    .nav-direita {
        display: inline-grid;
    }
}

a {
    color: #0086A1;
    text-decoration: none;
}

a:hover {
    color: #3AAA35;
    text-decoration: underline overline;
    text-decoration-color: #0086A1;
}

nav a.ativo {
    text-decoration: underline overline;
    text-decoration-color: #0086A1;
}


nav .nav-esquerda {
    align-self: center;
}

nav .nav-direita {
    align-self: center;
}

.logo {
    height: 95px;
    width: auto;
}

section {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width:480px) { 
    section {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 50% 50%;
    text-align: justify;
}

@media (max-width:480px) { 
    .grid-2 {
        display: grid;
        text-align: justify;
        grid-template-columns: auto;
    }
}

.imagem {
    text-align: center;
}

.imagem img {
    padding-top: 50px;
}

@media (max-width:480px) { 
    .imagem img {
        padding-bottom: 10px;
        padding-top: 0;
    }
}

#destaque {
    height: 660px;
    max-height: 700px;
}

#slideshow div{
    position: absolute;
    left: 0;
    width: 100%;
}

.slide {
    height: 660px;
    max-height: 700px;
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: black;
}

@media (max-width:768px) { 
    .slide {
        background-position: 60% center;
    }
}



@keyframes fade
{
    0%   {opacity: 0.6}
    50% {opacity: 0.8}
    100% { opacity: 1}
}

.destaque {
    margin-top: -30px;
}

@media (max-width:768px) { 
    .destaque {
        background-position: 60% center;
        margin-top: -25px;
    }
}


.destaque-texto {
    position: relative;
    top: 35%;
    color: white;
    align-self: center;
}

.destaque span.texto {
    color: white;
    font-size: 14px;
}

.destaque h2 {
    font-size: 35px;
}

@media (max-width:480px) { 
    .destaque span.texto {
        font-size: 20px;
        background-color: green;
    }

    .destaque h2 {
        font-size: 30px;
        background-color: green;
        display: table;
    }
}

.destaque button {
    color: white;
    font-weight: 500;
    border: 1px solid #555;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 20px;
    padding: 12px 28px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-image: -webkit-linear-gradient(135deg, #0086A1 0%, #FECD20 100%);
}

.destaque button:hover {
    background-image: -webkit-linear-gradient(135deg, #FECD20 0%, #0086A1 100%);
}

.bloco {
    text-align: justify;
    margin: 50px 0 50px 0;
    font-size: 14px;
}

.banner {
    background-color: #0086A1;
    background: linear-gradient(135deg, #FECD20 0%, #0086A1 100%);
    height: 100%;
    padding: 30px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-box-shadow: 0 1px 1px rgba(0, 144, 165, 0.1);
    -webkit-box-shadow: 0 1px 1px rgba(0, 144, 165, 0.1);
    box-shadow: 0 1px 1px rgba(0, 144, 165, 0.1);
}

.banner span {
    color: white;
    font-size: 20px;
}

@media (max-width:768px) { 
    .banner span {
        color: white;
        font-size: 15px;
        text-align: center;
    }
}

.formulario {
    background-color: #fff;
    margin-top: 20px;
}

.formulario img {
    width: auto;
    height: 300px;
}

.formulario img .visivel {
    opacity: 1;
    transform: rotateZ(-2deg);
}

.form-flex {
    display: grid;
    grid-template-columns: 45% 45%;
    column-gap: 20px;
}

@media (max-width:768px) { 
    .form-flex {
        display: grid;
        grid-template-columns: auto;
        column-gap: 20px;
    }
}

form input, form select, .w-button  {
    background-color: aliceblue;
    border: 0;
    outline: 0;
    padding: 1em 0 1em 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-fill-available;
}


.w-button {
    color: white;
    background-image: -webkit-linear-gradient(135deg, #0086A1 0%, #FECD20 100%);
}

.w-button:hover {
    background-image: -webkit-linear-gradient(135deg, #FECD20 0%, #0086A1 100%);
}

form input:focus, form textarea:focus {
    -moz-box-shadow: 0 0px 2px #3D4432 !important;
    -webkit-box-shadow: 0 0px 2px #3D4432 !important;
    box-shadow: 0 0px 2px #3D4432 !important;
}

form #input-submit:hover {
    -moz-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
    -webkit-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
    box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
}


.show {
    opacity: 0;
    transform: translateY(4em);
    transition: transform 4s .25s cubic-bezier(0,1,.3,1),
                opacity .3s .25s ease-out;
    will-change: transform, opacity;
}

.visivel {
    opacity: 1;
    transform: translate(0%, 0%);
}

img.show {
    opacity: 0;
    transform: translateY(4em) rotateZ(-5deg);
    transition: transform 4s .25s cubic-bezier(0,1,.3,1),
                opacity .3s .25s ease-out;
    will-change: transform, opacity;
}

img.visivel {
    opacity: 1;
    transform: translate(0%, 0%);
}

footer {
    display: flex;
    height: 100px;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 12px;
    background-color: #fcfcfc;
}

.field-validation-error {
    display: block;
    font-size: 12px;
    color: red;
    margin-bottom: -5px;
}

.compartilhar {
    display: grid;
    grid-template-columns: auto;
}

.icon {
    font-size: 25px;
    background: linear-gradient(to right, #FECD20, #0086A1 50%, white 50%);
    overflow: hidden;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
}

.icon:hover {
    background-position: 0 100%;
}

span.count {
    display: table-cell;
    color: #f2f2f2;
    font-size: 18px;
}

.share-dialog {
    display: none;
}

.share-dialog.mostra {
    display: block;
    z-index: 2;
    margin : 0 auto;
}

.share-dialog.esconde {
    display: none;
}