:root {
    --height-nav: 80px;
    --vermelho-padrao: #ff0000;
}

@media screen and (max-width: 992px) {
    :root {
        --height-nav: 50px;

    }
}

:root {
    --full-height: calc(100vh - var(--height-nav));
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 21px;
}

body {
    font-family: 'Gilda Display', serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

body.cover {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

header,
footer,
nav,
section,
div {
    display: block;
}

section {
    position: relative;
}

table,
th,
td {
    border: none;
}

table {
    width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
}

table.striped tr {
    border-bottom: none;
}

table.striped>tbody>tr:nth-child(odd) {
    background-color: rgba(143, 143, 143, 0.5);
    color: #0e0e0e;
}

table.striped>tbody>tr>td {
    border-radius: 0;
}

table.centered th,
table.centered td {
    text-align: center;
}

tr {
    border-bottom: thin solid rgba(0, 0, 0, 0.12);
}

td,
th {
    padding: 15px 5px;
    display: table-cell;
    text-align: left;
    vertical-align: middle;
}

.centered {
    text-align: center;
}

hr.divisor-50 {
    width: 50%;
    height: 3px;
    border: none;
    background-color: var(--vermelho-padrao);
}

hr.divisor-100 {
    width: 100%;
    height: 3px;
    border: none;
    background-color: var(--vermelho-padrao);
}

hr.white {
    background-color: #ffffff;
}

.text-vermelho {
    color: var(--vermelho-padrao);
}

.backdrop {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    opacity: 0;
    margin: 0;
    z-index: 999;
    transition: all 0.5s;
    overflow: hidden;
}

.backdrop.in {
    opacity: 0.4;
}

.bg-preto {
    background-color: #000000;
    color: #c0c0c0;
}

.bg-preto-60 {
    background-color: rgba(0, 0, 0, 0.6);
    color: #c0c0c0;
}

.bg-cinza {
    background-color: #131516;
    color: #c0c0c0;
}

.bg-gelo {
    background-color: #d1d1d1;
    color: #0e0e0e;
}

.bg-branco {
    background-color: #ffffff;
    color: #0e0e0e;
}

.bg-vermelho {
    background-color: #160000;
    color: #efefef;
}

.animation-paused {
    animation: none !important;
    transition: all 0.3s;
}

/* NAVBAR */
nav {
    background-color: #000000;
    width: 100%;
    height: var(--height-nav);
    line-height: 80px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(49, 0, 0, 1),
        0 3px 1px -2px rgba(49, 0, 0, 1),
        0 1px 5px 0 rgba(49, 0, 0, 1);
    box-shadow: 0 2px 2px 0 rgba(49, 0, 0, 1),
        0 3px 1px -2px rgba(49, 0, 0, 1),
        0 1px 5px 0 rgba(49, 0, 0, 1);
}

nav.sticky-top {
    position: fixed;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar,
.nav-logo>.logo,
.nav-list {
    display: flex;
    justify-content: center;
}

.navbar {
    position: relative;
    height: 100%;
    width: 100%;
}

.nav-logo {
    width: 40%;
    text-align: center;
}

.nav-logo>.logo {
    height: 100%;
    align-items: center;
}

.nav-logo>.logo>img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    padding: 15px;
}

.nav-list {
    width: 30%;
    margin: 0;
    padding: 0;
}

.nav-list>li {
    list-style-type: none;
    margin: 0;
    padding: 0 20px;
}

.nav-list>li::after {
    content: '';
    display: inherit;
    width: 50%;
    margin: -10px auto;
    border-top: 2px solid var(--vermelho-padrao);
    transition: all 0.3s;
}

.nav-list>li.active::after {
    width: 100%;
    border-top: 4px solid var(--vermelho-padrao);
}

.nav-list>li>a {
    color: inherit;
    text-decoration: none;
}

.menu-mobile {
    display: none;
}

.toggle-menu {
    display: none;
}

@media screen and (max-width: 992px) {
    .nav-list {
        margin: 0;
        padding: 0;
        display: none;
    }

    .nav-logo {
        max-width: 70%;
        height: auto;
        width: auto;
    }

    .nav-logo>.logo>img {
        padding: 5px;
    }

    .toggle-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: auto;
        height: var(--height-nav);
        z-index: 99999;
    }

    .nav-btn {
        position: absolute;
        width: 28px;
        height: 22px;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        padding: 0;
        background-color: transparent;
        border: none;
    }

    .nav-btn>span:after,
    .nav-btn>span:before {
        content: "";
        position: absolute;
        left: 0;
        top: -9px;
    }

    .nav-btn>span:after {
        top: 9px;
    }

    .nav-btn>span {
        position: relative;
        display: block;
    }

    .nav-btn>span,
    .nav-btn>span:after,
    .nav-btn>span:before {
        width: 100%;
        height: 4px;
        background-color: var(--vermelho-padrao);
        transition: all 0.3s;
        backface-visibility: hidden;
        border-radius: 2px;
    }

    .toggle-menu.in>.nav-btn>span {
        background-color: transparent;
    }

    .toggle-menu.in>.nav-btn>span::after {
        transform: rotate(45deg);
        transform-origin: 27px;
    }

    .toggle-menu.in>.nav-btn>span::before {
        transform: rotate(-45deg);
        transform-origin: 27px;
    }

    .menu-mobile {
        display: block;
        font-size: 26px;
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100vh;
        margin: 0;
        -webkit-box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        background-color: #160000;
        transition: all 0.5s ease-in-out;
        overflow-x: hidden;
        opacity: 0;
    }

    .menu-mobile.in {
        width: 250px;
        opacity: 1;
    }

    .menu-mobile>ul {
        margin: 60px 0 50px 0;
        padding: 0;
        line-height: normal;
    }

    .menu-mobile>ul>li {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .menu-mobile>ul>li>a {
        display: block;
        color: inherit;
        text-decoration: none;
        padding: 15px 15px 15px 30px;
        margin: 0;
    }

    .menu-mobile>ul>li>a::after {
        content: '';
        display: inherit;
        width: 100%;
        border-bottom: 2px solid #ff8c00;
    }
}

/* NAVBAR END */

/* LAYOUT */
.container {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.linha {
    --margin-base: 0px;
    --margin-tam: calc(var(--margin-base) * 2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}

.mg-15 {
    --margin-base: 15px;
}

.mg-20 {
    --margin-base: 20px;
}

.mg-25 {
    --margin-base: 25px;
}

.mg-30 {
    --margin-base: 25px;
}

.mg-10 {
    --margin-base: 10px;
}

.tam {
    flex: 1;
}

.tam-1 {
    flex: 0 0 calc(10% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-2 {
    flex: 0 0 calc(20% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-3 {
    flex: 0 0 calc(30% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-4 {
    flex: 0 0 calc(40% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-5 {
    flex: 0 0 calc(50% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-6 {
    flex: 0 0 calc(60% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-7 {
    flex: 0 0 calc(70% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-8 {
    flex: 0 0 calc(80% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-9 {
    flex: 0 0 calc(90% - var(--margin-tam));
    margin: var(--margin-base);
}

.tam-10 {
    flex: 0 0 calc(100% - var(--margin-tam));
    margin: var(--margin-base);
}

@media screen and (max-width: 768px) {
    .tam {
        flex: 0 0 100%;
    }
}

/* LAYOUT END */

/* MAIN */
.flex-full-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-section {
    flex-direction: column;
    height: var(--full-height);
    padding: 0;
}

.main-fundo,
.main-conteudo {
    height: 100%;
}

.main-fundo {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.main-conteudo {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.main-conteudo>.titulo {
    font-size: 3rem;
    text-align: center;

}

.main-conteudo>.subtitulo {
    font-size: 3rem;
    text-align: center;
    padding: 30px 0;
}

.main-destaque {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}

.main-destaque>.item {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 10px;
    height: 150px;
    background-color: #ff8c00;
}

@media screen and (max-width: 539px) {
    .main-conteudo>.titulo {
        font-size: 2.5rem;
    }

    .main-conteudo>.subtitulo {
        padding: 0;
    }

    .main-destaque>.item {
        font-size: 1.5rem;
        height: 120px;
    }

}

/* MAIN END*/

.secao-produto {
    padding-bottom: 50px;
}

.secao-produto>.resumo-produto {
    display: flex;
    padding: 0 15px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.resumo-produto>.titulo {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 50px;
}

/* CAROUSEL */

.carousel-container {
    overflow: hidden;
    position: relative;
}

.controles>.left,
.controles>.right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: #808080;
    opacity: 0.8;
    z-index: 5;
    position: absolute;
    cursor: pointer;
    user-select: none;
}

.controles>.left {
    left: 0;
}

.controles>.right {
    right: 0;
}

.carousel-flex {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    transform: translateX(0);
    opacity: 1;
    align-items: center;
}

.carousel-produto {
    animation: carousel-produto 30s infinite;
}

.carousel-flex>.item {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
    align-items: center;
}

.carousel-flex>.item>img {
    max-width: 100%;
    height: 100%;
    width: auto;
}

@keyframes carousel-produto {

    0%,
    30% {
        opacity: 1;
        transform: translateX(0);

    }

    33.333333%,
    63.333333% {
        opacity: 1;
        transform: translateX(-100%);

    }

    66.666666%,
    96.666666% {
        opacity: 1;
        transform: translateX(-200%);
    }

    98.333330% {
        opacity: 1;
        transform: translateX(-300%);
    }

    98.333331%,
    98.333332% {
        opacity: 0;
    }

    98.333333% {
        transform: translateX(100%);
    }

    98.333334% {
        opacity: 1;
    }

    98.333335% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* CAROUSEL END */

.secao-destaque {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.secao-destaque>.titulo {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    width: 500px;
    padding: 5rem 0;
    margin: 1rem;
}

@media screen and (orientation: landscape) {
    .destaque-banho {
        background-image: url("../images/linha-banho-landscape.jpg");
    }

    .destaque-piscina {
        background-image: url("../images/linha-piscina-capa-landscape.jpg");
    }
}

@media screen and (orientation: portrait) {
    .destaque-banho {
        background-image: url("../images/linha-banho-portrait.jpg");
    }

    .destaque-piscina {
        background-image: url("../images/linha-piscina-capa-portrait.jpg");
    }
}


.resumo-produto>.titulo::after {
    content: '';
    width: 50%;
    height: 3px;
    background-color: var(--vermelho-padrao);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.resumo-produto .info-produto .tam:first-child::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100px;
    border-radius: 5px;
    background-color: var(--vermelho-padrao);
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
}

.info-produto table {
    font-size: 0.85rem;
}

.info-produto p {
    line-height: 1.7;
    text-align: justify;
    font-weight: 600;

}

.bg-branco p {
    color: rgba(0, 0, 0, 0.8);
}


@media screen and (max-width: 769px) {
    .resumo-produto .info-produto .tam:first-child::after {
        position: relative;
        display: block;
        margin: 0 auto;
        margin-top: 50px;
        width: 100px;
        height: 3px;
        top: unset;
        right: unset;
        transform: unset;
    }
}

/* SEÇÃO INFORMAÇÃO 1 */

/* .destaque-producao {
    min-height: 60vh;
    height: auto;
}

.blackboard {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.705);
}

.destaque-producao .titulo {
    background-color: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    position: relative;
    padding: 2vw;
}

.informacao-empresa {
    padding: 50px;
    text-align: justify;
    background-color: #000000;
}


@media screen and (orientation: landscape) {
    .destaque-producao {
        background-image: url("../images/producao-capa-left.jpg");
        background-size: 50%;
        background-position: left;

    }
}

@media screen and (orientation: portrait) {
    .destaque-producao {
        background-image: url("../images/producao-capa-portrait.jpg");
    }
    .informacao-empresa {
        padding: 50px 30px;
    }
} */

/* SEÇÃO INFORMAÇÃO 1 FIM */



/* SEÇÃO INFORMAÇÃO 5 */

.secao-informacao {
    position: relative;
    min-height: 100vh;
    height: auto;
    flex-direction: column;
}

.capa-producao {
    height: 30vh;
    padding: 15px;
}

.informacao-empresa {
    padding: 50px;
    text-align: justify;
    background-color: #000000;
    margin-bottom: 30vh;
}

@media screen and (max-width: 720px) {
    .informacao-empresa {
        padding: 50px 15px;
    }
}

.capa-producao .titulo {
    background-color: #ffffff;
    color: #000000;
    padding: 1vw 4vw;
}

@media screen and (orientation: landscape) {
    .destaque-producao {
        background-image: url("../images/producao-capa-landscape.jpg");
    }
}

@media screen and (orientation: portrait) {
    .destaque-producao {
        background-image: url("../images/producao-capa-portrait.jpg");
    }
}

/* .capa-producao .titulo {
    background-color: #ff0000;
    color: #ffffff;
    padding: 2vw;
} */

/* SEÇÃO INFORMAÇÃO 5 FIM */

/* SEÇÃO VANTAGENS */
.secao-vantagens {
    min-height: 50vh;
    padding: 50px 0;
    padding-bottom: 100px;
}

.secao-vantagens>.titulo {
    margin-bottom: 50px;
    color: #ffffff;
}

.vantagens .item {
    margin: 15px;
}

.vantagens .item>.titulo {
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.vantagens .item h4 {
    margin-bottom: 5px;
    font-weight: normal;
}

.vantagens .item>.titulo::after {
    content: '';
    height: 3px;
    background-color: var(--vermelho-padrao);
    position: absolute;
    border-bottom-right-radius: 3px;
}

.vantagens .item:nth-child(1)>.titulo::after {
    width: 50%;
}

.vantagens .item:nth-child(2)>.titulo::after {
    width: 40%;
}

.vantagens .item:nth-child(3)>.titulo::after {
    width: 30%;
}

.vantagens .item:nth-child(4)>.titulo::after {
    width: 20%;
}

/* SEÇÃO VANTAGENS FIM */

/* SEÇÃO CONTATO */

.secao-contato {
    padding: 50px 0;
}

.form-padrao {
    max-width: 500px;
    margin: 0 auto;
    font-size: 21px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #ffffff;
}

textarea.form-control {
    transition: all 0.5s;
}

.input-material {
    position: relative;
    margin-top: 30px;
    margin-bottom: 25px;
}

.input-material>label {
    color: #b1bbc4;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    bottom: 5px;
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
}

.input-material .form-control {
    border: none;
    border-bottom: 2px solid #ced4da;
    border-radius: 0px;
    background: transparent;
    padding-left: 5px;
    box-shadow: none;
}

.input-material .form-control:required~label::after {
    content: "*";
    color: #ff0000;
    padding-left: 2px;
    font-size: 0.8em;
}

.input-material .form-control:focus,
.input-material .form-control[value]:not([value=""]) {
    border-bottom-color: #ff0000;
    color: #ffffff;
}

.input-material .form-control:focus~label,
.input-material:not(.select-input) .form-control:not(:placeholder-shown)~label,
.input-material.select-input .form-control:valid~label {
    top: unset;
    bottom: 100%;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.input-material textarea.form-control:focus,
.input-material textarea.form-control:not(:placeholder-shown),
.input-material textarea.form-control:not(:empty) {
    height: calc(4.5em + .75rem + 2px);
}

.input-material.select-input option {
    background-color: #131516;
    font-size: 0.8rem;
}


.btn {
    margin: auto;
    display: inline-block;
    font-weight: 500;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #ff8c00;
    border: 1px solid transparent;
    padding: 0.5em 2em;
    font-size: 16px;
    line-height: 1.5;
    border-radius: .25rem;
}

/* SEÇÃO CONTATO FIM    */

footer {
    position: relative;
    background-color: #000000;
    padding: 15px 0;
    padding-bottom: 50px;
    color: #c0c0c0;
    border-top: 3px solid #ffffff;
}

.contatos {
    align-items: start;
}

.contatos a {
    color: #c0c0c0;
    text-decoration: inherit;
}

.contatos a:hover {
    text-decoration: underline;
}

.contatos h4 {
    margin-top: 0;
}

.logo-footer {
    display: block;
}

@media screen and (max-width: 768px) {
    .logo-footer {
        display: none;
    }
}

.logo-footer img {
    max-height: 30px;
    max-width: 100%;
    width: auto;
}

.tarja-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #000;
    font-size: 0.7rem;
    padding: 0.2rem;
}