:root {
    --primary-color: #f16f41;
    --anim-speed: 10s;
}
/* --- ANIMAÇÕES --- */
@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}
section.section {
    padding-top: 7rem;
    padding-bottom: 7rem;
    margin: initial;
    background-color: #fff;
    border-top: 0;
    @media (max-width: 900px) {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .subtitle {
        color: #000;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 150%; /* 24px */
        margin-bottom: 1rem;
        @media (max-width: 900px) {
            margin-bottom: 0;
        }
    }
    .title {
        color: #f16f41;
        font-family: "Roboto", sans-serif;
        font-size: 48px;
        font-weight: 700;
        line-height: 120%; /* 57.6px */
        margin-bottom: 1.5rem;
        @media (max-width: 900px) {
            font-size: 30px;
        }
    }
    p {
        color: #000;
        font-family: "Roboto", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 150%; /* 27px */
    }

    .knowMore {
        color: #000;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 150%; /* 24px */

        i {
            margin-left: 0.5rem;
        }
    }
}
#header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: absolute;
    nav {
        justify-content: center;
        align-items: center;
        .nav {
            gap: 30px;
        }

        &.collapsing {
            ul {
                li {
                    width: 100% !important;
                    text-align: center !important;
                }
            }
        }
    }

    #mainNav {
        max-height: 3.31rem;
        @media (max-width: 990px) {
            max-height: 100% !important;
        }
        .nav {
            li {
                @media (max-width: 990px) {
                    width: 100% !important;
                    text-align: center;
                }
            }
        }
        .nav-link {
            text-transform: uppercase !important;
            font-size: 1rem;
            font-weight: 600;
            line-height: 120%; /* 1.2rem */
            letter-spacing: 0.1rem;
            border-bottom: 0.125rem solid transparent;
            padding: 0 !important;
            &.active,
            &:hover {
                color: var(--primary-color) !important;
                border-bottom: 0.125rem solid var(--primary-color);
                @media (max-width: 990px) {
                    background-color: transparent !important;
                }
            }
        }
    }
}

.home {
    #header {
        #mainNav {
            .nav-link {
                color: #fff !important;
                @media (max-width: 990px) {
                    color: var(--primary-color) !important;
                }
            }
        }
    }
}
.sticky-header-active {
    .header-body {
        background: rgb(255, 255, 255);
        padding: 2rem;
    }
    #mainNav {
        .nav-link {
            color: #000 !important;
        }
    }
    .home {
        #header {
            #mainNav {
                .nav-link {
                    color: #000 !important;
                    @media (max-width: 990px) {
                        color: var(--primary-color) !important;
                    }
                }
            }
        }
    }
}
#bannerHome {
    .slides {
        background-size: cover !important;
        background-position: center;
        .title {
            color: #fff;
            text-align: center;

            /* Heading/H1 */
            font-family: "Roboto", sans-serif;
            font-size: 56px;
            font-weight: 700;
            line-height: 120%; /* 67.2px */

            @media (max-width: 900px) {
                font-size: 30px;
            }
        }
        .desc {
            color: #fff;
            text-align: center;
            font-family: "Roboto", sans-serif;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%; /* 27px */
        }
    }
    .slide1 {
        background: url("../img/banner/banner1.png");
        @media (max-width: 900px) {
            background: url("../img/banner/banner1-mob.png");
        }
    }
    .slide2 {
        background: url("../img/banner/banner2.png");
        @media (max-width: 900px) {
            background: url("../img/banner/banner2-mob.png");
        }
    }
    .slide3 {
        background: url("../img/banner/banner3.png");
        @media (max-width: 900px) {
            background: url("../img/banner/banner3-mob.png");
        }
    }
    .slide4 {
        background: url("../img/banner/banner4.png");
        @media (max-width: 900px) {
            background: url("../img/banner/banner4-mob.png");
        }
    }

    .buttonContainer {
        display: flex;
        gap: 10px;

        @media (max-width: 900px) {
            flex-direction: column;
            width: 100%;
        }
    }
    .custom {
        display: flex;
        justify-content: space-evenly;
        gap: 3rem;
        margin: auto;
        max-width: 1140px;
        .owl-dot {
            flex: 1;
            span {
                background-color: transparent !important;
                width: auto !important;
                height: auto !important;

                color: #fff;
                text-align: center;

                /* Text/Regular/Normal */
                font-family: "Roboto", sans-serif;
                font-size: 16px;
                font-weight: 400;
                line-height: 150%; /* 24px */
            }
            border-bottom: 4px solid #fff;
            opacity: 0.5;
            &.active {
                opacity: 1;
            }
        }
    }
}

.oqnosdefine {
    position: relative;
    .imgBg {
        background: url("../img/sobre-nos/bg.png");
        filter: grayscale(100%);
        background-size: cover;
        background-position: center;
        height: 500px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }
    .content {
        position: relative;
        z-index: 2;
        padding-top: 200px;
        @media (max-width: 900px) {
            padding-top: 144px;
        }
    }
    .title {
        color: #fff;
        font-family: "Roboto", sans-serif;
        font-size: 48px;
        font-weight: 700;
        line-height: 110%; /* 52.8px */
        @media (max-width: 900px) {
            font-size: 30px;
        }
    }
    p {
        color: #ebecec;
        font-family: "Montserrat", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 130%; /* 23.4px */
    }
}
.tabs {
    display: flex;

    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    .tab {
        display: inline-flex;
        gap: 12px;
        justify-content: center;
        align-items: center;
        flex: 1;
        background-color: #fff;
        padding: 2rem 0;
        cursor: pointer;
        border-bottom: 1px solid #000;
        @media (max-width: 900px) {
            display: flex;
            flex-direction: column;
            padding: 1rem 0;
        }
        .icon {
            svg {
                width: 24px;
                height: 24px;
                /* fill: #000; */
            }
        }
        .title {
            color: #000;
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            line-height: 19.2px; /* 96% */
            @media (max-width: 900px) {
                padding: 1rem;
            }
            @media (max-width: 600px) {
                padding: 0.1rem;
                font-size: 13px;
            }
        }

        &.active,
        &:hover {
            background-color: var(--primary-color);
            border-bottom: 1px solid var(--primary-color);
            .title {
                color: #fff;
            }
            path {
                fill: #fff;
            }
        }

        &:first-child {
            border-radius: 3rem 0 0 0;
        }
        &:last-child {
            border-radius: 0 3rem 0 0;
        }
    }
}

.tabContent {
    background-color: #fff;
    padding: 5rem;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 0 3rem 3rem;

    @media (max-width: 900px) {
        padding: 1.5rem;
    }

    .tab {
        display: none;
        &.active {
            display: block;
        }

        .row {
            justify-content: center;
            align-items: center;
        }

        p,
        li {
            color: #000;
            font-family: "Montserrat", sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 120%; /* 19.2px */
            padding-right: 3rem;

            @media (max-width: 900px) {
                padding-right: 0;
            }
        }

        ul {
            padding-left: 0;
            list-style: none;
        }

        img {
            border-radius: 1.5rem;
        }
    }
}
.prodHome {
    @media (max-width: 900px) {
        padding-bottom: 20px !important;
    }
    .subtitle {
        color: #000;
        text-align: center;
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.2rem;
        text-transform: uppercase;
        display: block;
    }
    .title {
        //color: #000 !important;
        text-align: center;
        font-family: "Roboto", sans-serif;
        font-size: 3rem;
        font-weight: 700;
        line-height: 120%; /* 3.6rem */
        display: block;
    }
    .thumb-info {
        @media (max-width: 900px) {
            margin-bottom: 1rem;
        }

        .thumb-info-wrapper {
            img {
                height: 580px;
                object-fit: cover;
                object-position: center;
            }
            p {
                color: #fff;
            }

            .thumb-info-type {
                background-color: #ffa200;
            }

            .thumb-info-inner {
                &::after {
                    content: "";
                    position: relative;
                    background-color: #fff;
                    display: block;
                    width: 5.75rem;
                    height: 0.125rem;
                    margin: 0.5rem auto;
                    transition: all 0.3s;
                }
            }
        }
        &:hover {
            .thumb-info-inner {
                min-height: 55px;
                opacity: 1 !important;
                color: #ffa200;
                &::after {
                    background-color: #ffa200;
                    width: 80%;
                }
            }
        }
    }

    .card {
        border-radius: 1.75rem;
        overflow: hidden;
        border: 1px solid #000;
        transition: ease-in all 100ms;

        &:hover {
            transform: scale(1.03);
        }

        .cardImage {
            aspect-ratio: 16/9;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .cardTitle {
            color: #000;
            font-family: "Roboto", sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 140%; /* 2.1rem */
        }
        .card-text {
            color: #000;
            font-family: "Roboto", sans-serif;
            font-size: 1rem;
            font-weight: 400;
            line-height: 150%; /* 1.5rem */
        }

        .pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 0;
            margin-top: 1rem;
            li {
                color: #000;
                font-family: "Roboto", sans-serif;
                background: #eee;
                padding: 0.25rem 0.5rem;
                font-size: 0.875rem;
                font-weight: 600;
                line-height: 150%; /* 1.3125rem */
                list-style: none;
            }
        }

        .knowMore {
            background: transparent;
            border: 0;
            padding: 0;
        }
    }

    .item-2 {
        .cardImage {
            aspect-ratio: 1/1;
        }
    }
}
.cta {
    @media (max-width: 900px) {
        padding-bottom: 20px !important;
    }
    .bg {
        background: url(../img/bg-cta.png);
        background-size: cover;
        background-position: center;
        padding: 4rem;
        border-radius: 1.75rem;
        text-align: center;

        @media (max-width: 900px) {
            padding: 2rem;
        }
    }
    .title {
        color: #fff !important;
        text-align: center;
        font-family: "Roboto", sans-serif;
        font-size: 3rem;
        font-weight: 700;
        line-height: 120%; /* 3.6rem */
        margin-bottom: 1.5rem;

        @media (max-width: 900px) {
            font-size: 25px !important;
        }
    }
    .desc {
        color: #fff;
        text-align: center;
        font-family: "Roboto", sans-serif;
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 150%; /* 1.6875rem */
        margin-bottom: 2rem;
    }
    .btn {
        display: flex;
        padding: 0.75rem 1.5rem;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid #fff;
        background: #fff;
    }
}
.parceiros {
    .title {
        text-align: center;
        //color: #000 !important;
        margin-bottom: 3rem !important;
    }
}

.testimonial-section {
    display: flex;
    align-items: center;
    height: 800px;
    overflow: hidden;
    background: #fff;
    gap: 50px;
    padding: 0 3rem;
    @media (max-width: 900px) {
        flex-direction: column;
        padding: 0 1.5rem;
        height: 800px;
    }

    .content-left {
        flex: 1;
        max-width: 400px;

        .title {
            //color: #000;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 120%; /* 4.2rem */
        }
        .desc {
            color: #000;
            font-size: 1.125rem;
            font-weight: 400;
            line-height: 150%; /* 1.6875rem */
        }
    }

    /* Container das colunas com efeito de fade */
    .testimonials-wrapper {
        flex: 2;
        display: flex;
        gap: 20px;
        height: 100%;
        position: relative;
        mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);

        .column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 50%;
            @media (max-width: 900px) {
                width: 100%;
            }

            &.scroll-up {
                animation: slideUp var(--anim-speed) linear infinite;
            }

            &.scroll-down {
                animation: slideDown var(--anim-speed) linear infinite;
                @media (max-width: 900px) {
                    display: none;
                }
            }

            .list {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            .textContent {
                display: flex;
                flex-direction: column;
            }
        }

        /* Pausar ao passar o mouse */
        &:hover {
            .column {
                animation-play-state: paused;
            }
        }
    }
    /* Estilo do Card */
    .card {
        border: 1px solid #000;
        padding: 25px;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        .stars {
            color: #000;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        strong {
            color: #000;
            font-size: 1rem;
            font-weight: 600;
            line-height: 150%; /* 1.5rem */
        }
        p {
            color: #000;
            font-size: 1.125rem;
            font-weight: 400;
            line-height: 150%; /* 1.6875rem */
            margin-top: 1rem;
            margin-bottom: 1.5rem;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 1rem;

            span {
                color: #000;
                font-size: 1rem;
                font-weight: 400;
                line-height: 150%; /* 1.5rem */
            }
        }
    }
}
.presenca {
    .title {
        //color: #000 !important;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 120%; /* 3rem */
    }

    ul {
        li {
            color: #000;
            font-size: 1.125rem;
            font-weight: 400;
            line-height: 150%; /* 1.6875rem */
        }
    }
}
#footer {
    background-color: #fff;
    border-top: 1px solid var(--primary-color);
    .logo {
        /* width: 6.375rem;
        height: 8.125rem;
        aspect-ratio: 51/65; */
        @media (max-width: 990px) {
            display: block;
            margin: 0 auto 1rem auto;
        }
    }
    .newsletter {
        padding: 1.5rem 0;
        .newsletterFrase {
            color: #000;
            font-size: 1rem;
            font-weight: 700;
            line-height: 150%; /* 1.5rem */
        }
        small {
            color: #000;
            font-size: 0.75rem;
            font-weight: 400;
            line-height: 150%; /* 1.125rem */
            margin-top: 0.75rem;
            display: block;
        }
        .input-group {
            //max-width: 420px;
            gap: 1rem;
            @media (max-width: 900px) {
                flex-direction: column;
            }
        }

        .input-group .form-control {
            border: 1px solid #000;
            border-radius: 0;
            height: 44px;
            font-size: 14px;
            padding: 0 12px;
            box-shadow: none;
            @media (max-width: 900px) {
                width: 100%;
            }
        }

        .input-group .form-control::placeholder {
            color: #9a9a9a;
        }

        .input-group .btn {
            border: 1px solid #000;

            color: #000;
            font-size: 1rem;
            font-weight: 400 !important;
            line-height: 150%; /* 1.5rem */
        }

        .input-group .btn:hover {
            background-color: #f5f5f5;
            color: #000;
        }
    }

    .title {
        color: #000;
        font-size: 1rem;
        font-weight: 600;
        line-height: 150%; /* 1.5rem */
    }

    ul {
        li {
            a {
                color: #000 !important;
                font-size: 0.875rem;
                font-weight: 400;
                line-height: 150%; /* 1.3125rem */
                padding: 0.5rem 0;

                display: flex;
                align-items: center;
                gap: 0.75rem;
                align-self: stretch;
            }
        }
    }

    .redesociais {
        a {
            font-size: 0.875rem;
            font-weight: 400;
            line-height: 150%; /* 1.3125rem */
        }
    }

    .footer-copyright {
        border-top: 1px solid #000;
        padding: 2rem 0;
        .copytext {
            color: #000;
            font-size: 0.875rem;
            font-weight: 400;
            line-height: 150%; /* 1.3125rem */
            @media (max-width: 990px) {
                justify-content: start !important;
                margin-bottom: 1rem;
            }

            a {
                color: #000;
                text-decoration: underline;
            }
        }
    }
}
.page-header.page-header-modern.page-header-lg {
    padding: 200px 0 0 0;

    h1 {
        color: var(--primary-color) !important;
        font-family: "Montserrat", sans-serif;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%; /* 48px */
        @media (max-width: 900px) {
            font-size: 25px;
            margin-top: 1rem;
        }
        &:after {
            content: "";
            display: block;
            width: 50px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 8px auto;
        }
    }

    .breadcrumb {
        li {
            color: var(--primary-color);
            font-family: "Montserrat", sans-serif;
            font-size: 16px;
            font-weight: 600;
            line-height: 120%; /* 19.2px */
            a {
                color: inherit;
                text-transform: uppercase;
                i {
                    margin-right: 0.5rem;
                }
            }
        }
    }
}
.sobre-nos {
    p {
        color: #000;
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        &:has(strong) {
            margin-bottom: 0;
        }
        strong {
            font-weight: 700;
        }
    }
}
.contatoPage {
    .tab {
        box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
        .icon {
            svg {
                //fill: #fff;
                * {
                    stroke: var(--primary-color);
                }
            }
        }
        &.active,
        &:hover {
            .icon {
                svg {
                    * {
                        stroke: #fff;
                    }
                }

                &.mala {
                    svg {
                        path {
                            fill: var(--primary-color);
                            stroke: #fff;
                        }
                    }
                }
            }
        }
    }
    .tabContent {
        padding: 2rem;
        @media (max-width: 900px) {
            padding: 1rem;
        }
    }

    .formTitle {
        font-weight: 500;
        @media (max-width: 900px) {
            font-size: 1.5rem;
            line-height: normal;
        }
    }

    .form-control {
        border-color: #000;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        line-height: 150%;
        font-size: 1rem !important;
        font-weight: 400;
        &::placeholder {
            color: rgba(0, 0, 0, 0.6) !important;
        }
        .form-select option:disabled {
            color: #ff9900;
        }
    }

    .contatoInfo {
        /* background-color: #000; */
        background: rgb(0 0 0) url(../img/portfolio/gerdau-ouro-branco/02.jpg);
        box-shadow: inset rgba(0, 0, 0, 0.6) 0px 0px 19px 400px;
        padding: 2.5rem;
        margin-left: 2rem;
        height: 100%;
        @media (max-width: 900px) {
            margin-left: 0;
            margin-top: 2rem;
            text-align: center;
        }
        .title {
            color: #ebecec;
            font-family: "Montserrat", sans-serif;
            font-size: 2rem;
            font-weight: 600;
            line-height: 120%; /* 2.4rem */
        }
        .subtitle {
            color: #ebecec !important;
            font-family: "Montserrat", sans-serif;
            font-size: 20px !important;
            font-weight: 600;
            line-height: 120%; /* 24px */
            margin-bottom: 0.5rem !important;
        }
        p,
        a {
            color: #ebecec;
            font-family: "Montserrat", sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 120%; /* 21.6px */
        }

        .icon {
            @media (max-width: 990px) {
                margin-bottom: 1rem;
            }
        }
    }

    .social {
        display: flex;
        gap: 1rem;
        padding-left: 0;

        @media (max-width: 900px) {
            justify-content: center;
        }
        li {
            list-style: none;
            padding: 0.2rem 0.6rem;
            border: 1px solid #fff;
            border-radius: 999px;
            a {
                color: #fff;
                font-size: 1.5rem;
                font-weight: 400;
                line-height: 150%;
                width: 30px;
                height: 42px;
                display: flex;
                text-align: center;
                justify-content: center;
                align-items: center;
            }
        }
    }
    iframe {
        display: block;
        margin-top: 5rem;
    }

    .icon {
        @media (max-width: 900px) {
            display: block;
        }
    }
}

.produto {
    .prodGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        margin-bottom: 3rem;

        @media (max-width: 900px) {
            display: flex;
            flex-direction: column;
        }

        .item {
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: relative;
                aspect-ratio: 1 / 1;
            }

            button {
                display: inline-flex;
                padding: 0.75rem 1.5rem;
                justify-content: center;
                align-items: center;
                gap: 0.5rem;
                border: 1px solid #000;
                background: #fff;
                position: absolute;
                bottom: 0.8rem;
                right: 1.4rem;

                color: var(--Color-Neutral-Darkest, #000);

                /* Text/Regular/Normal */
                font-family: "Roboto", sans-serif;
                font-size: 1rem;
                font-weight: 400;
                line-height: 150%; /* 1.5rem */
            }
        }

        .div1 {
            grid-area: 1 / 1 / 3 / 2;
        }
        .div2 {
            grid-area: 1 / 2 / 2 / 3;
        }
        .div3 {
            grid-area: 1 / 3 / 2 / 4;
        }
        .div4 {
            grid-area: 2 / 2 / 3 / 3;
        }
        .div5 {
            grid-area: 2 / 3 / 3 / 4;
        }
    }

    .title {
        color: #000 !important;
        font-family: "Roboto", sans-serif;
        font-size: 2.5rem !important;
        font-weight: 700 !important;
        line-height: 120%; /* 3rem */
        @media (max-width: 900px) {
            font-size: 1.5rem !important;
        }
    }

    .form {
        background: #000;
        padding: 2rem 1rem;
        border-radius: 2rem;

        .formTitle {
            color: #fff;
            font-size: 1.5rem;
            text-align: center;
            font-weight: 600;
        }
    }
}
.portfolio-interna {
    .lightbox {
        img {
            aspect-ratio: 1/1;
            object-fit: cover;
        }
    }
}
.prodPages {
    .prodHome {
        padding-top: 0 !important;
    }
}
.sobrePages {
    .sobre-nos {
        padding-top: 0 !important;
    }
}
@media (max-width: 990px) {
    .http-error h2 {
        font-size: 50px;
    }
}
