/* Import and fonts */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf);
}
/* ./Import and fonts */

/* VARIABLES */
:root {
    /* Cores da logo:

    Con = #103FA6
    Lux = #0068CD
    Quadrado esquerda = #64BCF0
    Quadrado em cima = #0075D3
    Quadrado direita = #0069CD
    Quadrado embaixo = #00DFF6
    
    Cor fundo teste 1=#c4c3c3;
    Cor fundo teste 2=#071652;
    Cor fundo teste 3=#0e2272;
    Cor fundo teste 4=#000000;
    */

    --primary-color: #071652;
}
/* ./VARIABLES */

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    min-height: 100vh;
}

header {
    max-width: 100%;
    height: 15vh;
    display: flex;
    align-items: center;
}

main {
    min-height: 55vh;
}

.bg-primary-color {
    background-color: var(--primary-color);
}

.button-style {
    background-color: #0034A4;
    color: #FFFFFF;
    transition: all 0.4s ease; 
}

.button-style:hover {
    border: 1px solid #0034A4;
    background-color: #FFFFFF;
    color: #0034A4;
}

header .button-style:hover {
    border: 1px solid #0034A4;
    background-color: var(--primary-color);
    color: #0034A4;
}

footer .button-style:hover {
    border: 1px solid #00DFF6;
    background-color: var(--primary-color);
    color: #00DFF6;
}

.carousel-control-prev {
    left: -130px;
}

.carousel-control-next {
    right: -130px;
}

/* ./GLOBAL STYLES */

/* TEXTS */
.font-ms {
    font-family: 'Montserrat', sans-serif !important;
    font-size: x-large;
}

.font-in {
    font-family: 'Inter', sans-serif !important;
    font-size: x-large;
}

.text-primary {
    color: var(--primary-color) !important;
}

.title-color {
    color: #000000 !important;
    transition: color 0.4s ease;
}

.text-color-w {
    color: #ffffff !important;
    transition: color 0.4s ease;
}

.text-color-b {
    color: #000000 !important;
    transition: color 0.4s ease;
}

.text-link {
    position: relative;
    transition: color 0.4s ease;
}

.text-link:hover {
    color: #00DFF6 !important;
}

.text-justify{
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}

.dropdown-text-color {
    color: #0034A4 !important;
    transition: color 0.4s ease;
}

.dropdown-text-color:hover {
    color: #ffffff !important;
    background-color: var(--primary-color);
}

.breadcrumb-color {
    color: #585B5E;
}

.breadcrumb-color:hover {
    opacity: 0.7;
}

/* ./TEXTS */


/* INDEX */

/* PRODUCT CARD */

.product .product-img {
    height: 15rem;
}

.product img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.6));
    transition: all 0.4s ease;
}

.product img:hover {
    scale: 1.05;
}

.product .card {
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product .card-title {
    flex-grow: 1;
}


/* ./PRODUCT CARD */

/* CATEGORIES */
.category {
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.category:hover {
    scale: 0.96;
    background-color: rgba(0, 0, 0, 0.45)
}

.category img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.6));
    transition: all 0.4s ease;
}

.category-title {
    z-index: 1;
    transition: color 0.4s ease;
}

.category:hover .category-title {
    color: #FFFFFF;
}

.categories .techInov {
    max-width: 85%;
    max-height: 85%;
}

.bg-categories-color {
    background-color: #c4c3c3;
}

/* ./CATEGORIES */

/* HELP */
.answer-box {
    min-height: 18rem;
}

.answer-box:nth-child(1) {
    border-right: 1px solid #dee2e6;
}

.answer-box:nth-child(2) {
    border-right: 1px solid #dee2e6;
}
/* ./HELP */


/* PRODUCTS */

/* PRODUCT ICONS */
.icon-description {
    font-size: 12px;
}

.product-icon{
    width: 50px;
    height: 50px;
}

.product-icon img {
    filter: none;
}
/* ./PRODUCT ICONS */



/* ABOUT US */
.about-us {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 1);
}

/* VALUES */
.values .card {
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
}
/* ./VALUES */


