/* Rajdhani */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Robto Montserra Cantarell Open Sans Poppins */
@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Orbitron */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

/* Reset básico */
/* #008DFD  #899689 ; */

:root {
    --black: #1b1b1b;
    --white: #ffffff;
    --rs-green: #00ada4;
    --blue: #008DFD;
    --secundary: #2C3032;
    --textcolor: #ffffff;
    --font-text: 1.4rem;
    --text-shadow: 0.1rem 0.1rem 0.3rem #333;
    --box-shadow: 0.1rem 0.1rem 0.3rem #333;
    --box-shadow-light: 0.1rem 0.1rem 0.3rem #5b5858;
    --verde-gradiente: linear-gradient(45deg, rgba(17, 153, 142, 1) 0%, rgba(56, 239, 125, 1) 100%);
    --azul-gradiente: linear-gradient(45deg, rgba(41, 128, 185, 1) 0%, rgba(109, 213, 250, 1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rajdhani", sans-serif;
    text-decoration: none;
    transition: all 0.2s linear;
}

h1 {
    font-family: roboto, sans-serif;
    color: var(--textcolor);
}

.title {
    font-family: roboto, sans-serif;
    font-size: 2.4rem;
    /* color: #21e4db; */
    color: #008DFD;
}

.text-simples {
    color: var(--textcolor);
    font-size: 1rem;
}

body {
    background: var(--black);
}

/* Style the header */
header {
    width: 100%;
    height: .8vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem;
}

header .logo {
    font-size: 1.6rem;
    text-decoration: none;
    color: #ffff;
}

.logo img {
    max-width: 20%;
    max-height: 20%;
}

header .fa-bars {
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
    display: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.navbar ul li {
    margin: 0 1rem;
}

.navbar ul li a {
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--textcolor);
    text-shadow: var(--text-shadow);
}

.navbar ul li a:hover {
    color: var(--blue);
}

.link-level:after {
    display: inline-block;
    content: "/";
    color: var(--blue);
    font-weight: 300;
    font-size: 1.1em;
    position: relative;
    top: -1px;
}


/* carrousel */

.carrousel-container {
    width: 100%;
    height: 87vh;
    text-align: center;
    text-shadow: var(--text-shadow);
}

.carousel {
    position: relative;
    width: 100%;
    height: 87vh;
    margin: 0 auto 3rem auto;
    overflow: hidden;
    background: #555;
}

.carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 0.6s ease;
    height: 100%;
}

.carousel-item {
    width: 100%;
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    user-select: none;
    flex-shrink: 0;
    background: #777;
    color: white;
}

.carousel-item video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* legenda */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    max-width: 70%;
    color: white;
    text-align: left;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.carousel-caption h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
}

.carousel-caption p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.btn-primary {
    display: inline-block;
    background-color: var(--blue);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--black);
    letter-spacing: 0.1rem;
}


/* indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.carousel-indicators button {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    opacity: 1;
}

/* controles */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    z-index: 15;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* ícones (setas) */
.carousel-control-prev::before,
.carousel-control-next::before {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 8px 10px 8px 0;
    border-color: transparent white transparent transparent;
}

.carousel-control-next::before {
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent white;
}


/* Container flexboxes */

.container {
    width: 90%;
    margin: 1rem auto;
}

/* /rows */
.row {
    display: -webkit-flex;
    display: flex;
}

.flex-content {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Wrapper  */

.tile-industry-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.industry-trio {
    background: linear-gradient(180deg,
            /* 180deg = vertical gradient (top to bottom) */
            #1c1c1c 10%, #3B3B3B 60%, #1c1c1c 98%, #1c1c1c 100%);
    padding: 30px;
    flex: 1;
    color: #ffffff;
    background-size: 100% 120%;
    transition: .4s;
}

.industry-trio:hover {
    background-size: 100% 140%;
}

.industry-trio h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 0px;
}

.industry-trio p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    background: transparent !important;
    margin-top: 20px;
    margin-bottom: 30px;
    min-height: 75px;
}

.industry-trio ul {
    padding-left: 0px;
    list-style-type: none;
}

.industry-trio ul li {
    list-style-type: none;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #707070;
}

.industry-trio ul li:before {
    content: "";
    display: none;
}

.industry-trio ul li a {
    font-family: roboto, sans-serif;
    color: #fff;
    font-size: 17px;
    line-height: 21px;
}

.industry-trio ul li a:hover {
    color: #00ADA4;
}

/* banner-video amostra */

.amostra {

    width: 90%;
    margin: 1rem auto;
    position: relative;
    margin-top: 3rem;
    height: 70vh;
}

.amostra .btn-primary {
    margin-top: 1rem;
}

.amostra video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amostra-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    /* transform: translateY(-50%); */
    max-width: 70%;
    color: white;
    text-align: left;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.amostra-caption p {
    color: var(--textcolor);
    font-size: 1rem;
    font-weight: bold;
    text-shadow: var(--text-shadow);
}

/* produtos */
#produtos {
    margin-top: 3rem;
    padding-top: 1rem;
    background: var(--secundary);
}

#produtos h1 {
    font-size: 2.5rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    text-align: center;
    text-shadow: var(--text-shadow);
}

/* banner */
.banner {
    display: -webkit-flex;
    display: flex;
    flex-flow: row;
    color: #fff;
    /* border: 1px solid var(--blue); */
    margin-bottom: 2rem;
    justify-content: space-between;
    /* box-shadow: var(--box-shadow); */
    background-image: url("/assets/images/banner-02.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}

.interno-banner {
    height: 60vh;
}

#text-banner {
    width: 58%;
    justify-content: center;
    padding: 1rem;
}

#text-banner .btn-primary {
    display: block;
    margin: 2rem auto;
    text-align: center;
}

/* #text-banner span {
  color: #007FFB;
} */

#img-banner {
    width: 40%;
}

.banner .interno-banner h2 {
    margin-top: 2rem;
    text-align: center;
    color: var(--blue);
}

.banner .interno-banner p {
    margin-top: 2rem;
    text-align: justify;
    color: #fff;
    font-size: var(--font-text);
    text-shadow: var(--text-shadow);
}

.interno-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: block; */
}

/* card */

.card {
    /* 25% menos o gap */
    flex: 1 1 calc(25% - 1rem);
    box-sizing: border-box;
    padding-top: 1rem;
    text-align: center;

    /* border: 1px solid var(--blue); */
    border-radius: 0.2rem;
    background-image: url("/assets/images/background_segmentos.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    /* filter: grayscale(100%) opacity(90%); */
}

.card img:hover {
    transform: scale(1.05);
    filter: none;
}

.card .card-link {
    width: 99%;
    font-size: 1.5rem;
    color: var(--blue);
    display: inline-block;
    /* border: 1px solid var(--blue); */
    /* margin-top: 1rem; */
}

.card .card-link .fas {
    font-size: 1rem;
    color: #0080FD;
}


.card .card-link:hover {
    letter-spacing: 0.1rem;
    color: var(--textcolor);
    background: var(--blue);
}

.flex-esp {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.flex-esp-item-menor {
    /* 25% menos o gap */
    flex: 1 1;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid var(--rs-green);
    border-radius: 0.2rem;
    overflow: hidden;
}

.flex-esp-item-menor img {
    width: 100%;
    height: 100%;


}

/* menor */
.flex-esp-item-maior {
    /* 25% menos o gap */
    flex: 2 1;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid var(--rs-green);
    border-radius: 0.2rem;
    overflow: hidden;
}

.flex-esp-item-maior h1 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
}

.flex-esp-item-maior p {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
    text-align: justify;
    margin: 1rem;
    color: #ffffff;
}

/* --- Estilo das abas --- */
.tabs {
    display: flex;
    gap: 2px;
    margin-bottom: -1px;
}

.tabs button {

    color: var(--textcolor);
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    background: var(--black);
    border: 1px solid var(--rs-green);
    border-top-left-radius: 0.2rem;
    border-top-right-radius: 0.2rem;
}

.tabs button.active {
    background: var(--black);
    border-bottom: 1px solid var(--black);
    font-weight: bold;
    z-index: 2;
}

/* --- Estilo da área de conteúdo --- */
.tab-content {
    position: relative;
    z-index: 1;
}

/* faixa */
.faixa {
    background: #6C9694;
    padding: 2rem 0;
}

.faixa .container p {
    color: var(--textcolor);
    font-size: 1.5rem;
    margin: 1.3rem;
}


.section-title {
    width: 100%;
    height: 60vh;
    background-image: url("/assets/images/fresa.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.section-title h1 {
    font-family: "Rajdhani", sans-serif;
    font-size: 2rem;
    color: var(--textcolor);
    padding-left: 2rem;
}

.section-title p {

    padding-top: 1rem;
    padding-left: 2rem;
    font-family: "Rajdhani", sans-serif;
    font-size: var(--font-text);
    color: var(--textcolor);
}

.list {
    width: 35%;
    margin-top: 2rem;
}

.list ul {

    padding-top: 1rem;
    padding-left: 2rem;
    font-family: "Rajdhani", sans-serif;
    font-size: var(--font-text);
    color: var(--textcolor);
    list-style-type: none;
}

/*  */

.list ul li {
    list-style-type: none;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #707070;
}

.list ul li:before {
    content: "";
    display: none;
}

.list ul li a {
    font-family: roboto, sans-serif;
    color: #fff;
    font-size: 17px;
    line-height: 21px;
}

.list ul li a:hover {
    color: #00ADA4;
}

/* footer */

/* =========================
   FOOTER
========================= */

.footer {

    margin-top: 4rem;
    background:
        linear-gradient(to bottom,
            #111 0%,
            #1b1b1b 100%);

    border-top: 7px solid var(--rs-green);
}

.footer-container {

    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 0;
    flex-wrap: wrap;
}

.footer-box {

    flex: 1 1 250px;
}

.footer-box h2 {

    font-family: "Orbitron", sans-serif;
    color: var(--rs-green);
    margin-bottom: 1rem;
}

.footer-box h3 {

    color: var(--rs-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-box p,
.footer-box a {

    color: #d8d8d8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-box ul {

    list-style: none;
}

.footer-box ul li {

    margin-bottom: .7rem;
}

.footer-box ul li a:hover {

    color: var(--blue);
    padding-left: 5px;
}

.footer-social {

    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.footer-social a {

    width: 45px;
    height: 45px;
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.2rem;
    transition: .3s;
}

.footer-social a:hover {

    background: var(--blue);
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {

    border-top: 1px solid #333;
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {

    color: #999;
    font-size: .95rem;
}

/* RESPONSIVO */

@media(max-width:768px) {

    .footer-container {

        flex-direction: column;
    }

}

/*  */
/* media queries */
@media (max-width: 850px) {

    html {
        font-size: 60%;
    }

    .logo img {
        max-width: 12%;
        max-height: 12%;
    }

    header .fa-bars {
        display: block;
    }

    header .navbar {
        position: fixed;
        top: 0;
        left: -120%;
        height: 100vh;
        width: 100vw;
        background: rgba(0, 0, 0, 0.8);
        z-index: 100;
    }

    header .navbar ul {
        height: 100%;
        width: 35rem;
        background: var(--black);
        flex-flow: column;
        justify-content: center;
    }

    .link-level {
        display: none;
    }

    header .navbar ul li {
        margin: 2rem 0;
    }

    header .navbar ul li a {
        font-size: 2.4rem;
    }

    header .nav-toggle {
        left: 0;
    }

    header .fa-window-close {
        transform: rotate(180deg);
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }


    /* flex */

    .interno-banner {
        height: auto;
    }

    .interno-banner img {
        width: 100%;
        height: 100%;
    }

    .row,
    .trio {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .column-trio {
        width: 100%;
        height: auto;
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }

    .trio .column-trio ul li a {
        font-size: 1.4rem;
    }

    .card {
        flex: 1 1 calc(50% - 1rem);
        font-size: 1rem;
        /* 2 cards por linha */
    }

    .flex-esp {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .flex-esp-item-menor {
        flex: 1 1;
    }

    .flex-esp-item-maior {
        flex: 1 1;
    }

}

@media only screen and (max-width: 768px) {
    .tile-industry-wrapper {
        display: block;
    }
}