﻿
* {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
}

img {
    image-rendering: optimizeQuality;
}

.white-background {
    background-color: white;
    opacity: 0.5;
}

.my-imagecorrection {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    filter: blur(4px);
}

/***********************/

.product-card {
    margin: 50px;
    width: 300px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    margin-top: 0;
    color: #333;
}

/***********************/

.logo-container {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
}

.logo-item {
    margin: 10px;
    text-align: center;
}

.logo {
    max-width: 250px;
    max-height: 100px;
    object-fit: contain;
    margin: 0 auto;
    background-color: transparent;
}

/***********************/

.myFlex-Sistemas {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    margin: 0 50px;
}

.myImg-Sistemas {
    image-rendering: optimizeQuality;
    background-size: contain;
    object-fit: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    /*height: 100%;*/
    width: auto;
}

.p-justify {
    text-align: justify;
    letter-spacing: 1px;
}

.myHeader-Sistemas {
    background-position: center;
    image-rendering: optimizeQuality;
    filter: blur(5px);
}

.my-text {
    text-align: justify;
}

/**********************/

.cssVectorCorrection {
    height: 50px !important;
}

.my-hoverSubText {
    display: block; /* Esconde a descrição inicialmente */
    position: absolute; /* Posiciona sobre a imagem */
    background-color: rgba(0, 0, 0, 0.7);
    /* background-color: rgba(0, 0, 0, 0.6); */
    color: ghostwhite; /* Texto branco */
    height: 40%; /* Largura completa da área de imagem */
    text-align: center; /* Centraliza o texto */
    padding: 10px; /* Alguns espaços em cima e embaixo */
    bottom: -5%; /* Start hidden below the container */
    margin: 20px;
    left: 0; /* Alinha à esquerda da área da imagem */
    font-size: 12px;
    opacity: 0; /* Start fully transparent */
    border-radius: 8px 8px 2px 2px;
    transition: opacity 1s, bottom 1s;
    overflow-x: hidden; /* Esconde a barra de rolagem horizontal */
    overflow-y: auto;
}

.my-card:hover .my-hoverSubText {
    /* display: block;  Mostra a descrição */
    bottom: 0; /* Move to the bottom of the container */
    opacity: 1; /* Become fully visible */
}

.my-card:hover .toBlurHover {
    filter: blur(3px);
}

/******************/

.my-hoverSubText::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(0, 0, 0, 0.7);
}

.my-hoverSubText::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

    .my-hoverSubText::-webkit-scrollbar-thumb:hover {
        background-color: #b3b3b3;
    }

/******************/


.my-imgWithFilter {
    filter: brightness(1) invert(1) contrast(0.8);
}
