
:root{
    --white: #ffffff;
    --dark0: #000;
    --blue0: #1B5A70;
    --blue1: #175369;
    --Cyan0: #65a3b8;
    --Grey0: #707070;
    --Grey1: rgb(245, 245, 245);
    --Grey2: #e0e0e0;
    --Semitransparente: rgba(0, 0, 0, 0.5);
    --transparente: transparent;
    --tempo_de_animacao: 25s;
    --textos_comuns: exo2;
    --textos_2: ;
}

html{
    margin: 0;
    padding: 0;
    
    background-image: url(/Components/Images/teste2.png);
    background-position: center;
    background-size: auto;
    background-repeat: repeat ;
    scroll-behavior: smooth;
}
body{
    background-color: transparent;
    font-family: digital;
    margin: 0 auto;
    padding: 0px 100px 0px 100px;
    margin-bottom: 0;
    min-width: 1400px;
    max-width: 2000px;
    align-content: center;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue1);
    border-radius: 15px 15px 0px 0px;
    white-space: nowrap; /* Não permite quebra de texto */
    min-width: 1400px;
    
}

main{
    display: flex;
    flex-direction: column;
    background-color: var(--transparente);
    padding: 0;
    margin: 0;

}

section{
    margin: 0 auto;
    position: relative;
}


footer{
    display: flex;
    flex-direction: column;
    background-color: var(--blue0);
    align-items: flex-start;
    border-radius: 0px 0px 15px 15px;
    margin-top: 0px;
    font-family: exo2;
}

h1{
    font-family: var(--textos_comuns);
    font-size: 38px;
}
h2{
    font-family: var(--textos_comuns);
    font-size: 24px;
    color: var(--Semitransparente);
}

p{
    font-family: var(--textos_comuns);
    font-size: 24px;
    color: var(--Grey2);
}

.subtitulo{
    font-family: var(--textos_comuns);
    color: var(--Grey0);
}

/* #region -------HEADER-------*/

.teste{
    display: flex;
}

.menu_principal{
    display: flex;
    flex-direction: row;
    padding: 0px;
    margin: 0px;
}


.titulo{
    font-family: gasoek;
    color:  var(--white);
    font-weight: 1;
    margin-inline: 50px;
    font-size: 40px;
}

.botao_header{
    color: var(--white);
    padding: 36px 20px;
    transition: 400ms;
    font-size: 26px;
    margin: 0;
    width: 100%;
    text-decoration: none;
    font-family: orbitron;
    /*font-family: digital;*/
}

.botao_header:hover{
    background-color: var(--dark0);
    padding: 36px 36px;
}

.botao_header_talk{
    margin: 20px;
    padding: 20px;
    font-size: 40px;
    text-decoration: none;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 15px;
    transition: 400ms;
}

.botao_header_talk:hover{
    background-color: var(--Cyan0);
    border: 1px solid var(--Cyan0);
}

.quadrado{
    max-width: 60px;
}

/* #endregion -------HEADER-------*/



/* #region -------MAIN------*/

.azul{
    background-color: var(--blue0);
}

.container{
    background-color: var(--blue0);
    width: 100%;
    height: 225px;
    overflow: hidden;
    padding: 25px 0px 25px 0px;
    mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent),
        linear-gradient(to right, white, transparent 0%);
    
        
}

.container2{
    background-color: var(--blue0);
    width: 100%;
    height: 225px;
    overflow: hidden;
    padding: 25px 0px 50px 0px;
    mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent),
        linear-gradient(to right, white, transparent 0%);
    
        
}

.container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100px;
    height: 100%;
    background: linear-gradient( right, var(--blue0), transparent 100%);
    filter: blur(5px);
    pointer-events: none;
    
}

.container2::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100px;
    height: 100%;
    background: linear-gradient( right, var(--blue0), transparent 100%);
    filter: blur(5px);
    pointer-events: none;
    
}

.carrossel{
    display: flex;
    width: calc(100% * 14);
    animation: efeito_de_girar var(--tempo_de_animacao) cubic-bezier(1, 1, 1, 1) infinite; 
    align-items: center;
    
}

.carrossel_inverso{
    animation: efeito_de_girar_inverso var(--tempo_de_animacao) cubic-bezier(1, 1, 1, 1) infinite;
}



.img_carrossel{
    width: 225px;
    height: var(--height);
    flex-shrink: 0;
    cursor: pointer;
    margin: 0px 10px 0px 10px;
}

.img_carrossel:hover{
    transform: scale(1.1);
    z-index: 10;

}

.img_carrossel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 
        -10px 10px 15px -5px rgba(0, 0, 0, 0.8);
}

@keyframes efeito_de_girar {
    0%{transform: translateX(0%);}
    50%{transform: translateX(-7%);}
    100%{transform: translateX(0%);}
}

@keyframes efeito_de_girar_inverso {
    0%{transform: translateX(-7%);}
    50%{transform: translateX(0);}
    100%{transform: translateX(-7%);}
}

.img_bestbuy{
    width: 300px;
    height: 300px;
}

.divisao{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 700px;
    align-items: center;
    justify-content: center;
    color: var(--dark0);
    background-color: var(--white);
    
}

.article{
    padding: 50px;
}

.coluna{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 50px;
}


.imagem_flutuante {
    
   padding: 30px;
   position: absolute;
   z-index: 100;
    
}




.box-info{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 1100px;
    align-items: center;
    justify-content: center;
    color: var(--Grey2);
    background-color: var(--blue1);
    
}

.box-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 50px;
}

.img-placeholder{
    width: 200px;
    height: 200px;
    padding: 50px;
}

.imagem{
    width: 200px;
    height: 200px;
}

/* #region ---------seção news----------*/

.tituloNews{
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.h-quadroParaFotos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 50px 0px 100px 0px;

}


.secaoNews{
    background-color: var(--Grey2);
    border-color: var(--Grey2);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 auto;
    width: 100%;
    max-width: 2000px;
    min-width: 1400px;
}


.v-quadroNoticia {
    flex: 1; 
    min-width: 250px; 
    max-width: 350px;
    background: #fff; 
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-radius 0.3s ease-in-out;
}

.v-quadroNoticia:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #7266ff;
}


.v-quadroNoticia h1 {
    font-size: 1.1rem;
    padding: 15px;
    margin: 0;
    height: 80px; 
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}


.foto{
    width: 100%;
    height: 180px; 
    object-fit: cover; 
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}


.v-quadroNoticia h2 {
    font-size: 0.85rem;
    padding: 10px 15px;
    margin: 0;
    color: #666;
    background: #f9f9f9;
    text-align: justify;
}

.v-quadroNoticia h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--Cyan0); 
    padding: 10px 15px;
    margin-top: auto;
    font-family: var(--textos_comuns);
}
.tituloNews{
    padding-top: 30px;
    text-align: center;
}



/* #endregion ---------seção news----------*/



/* #region -------seção Our team------*/
.secaoOurTeam{
    background-color: var(--Grey2);
    border-color: var(--Grey2);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 auto;
    width: 100%;
    max-width: 2000px;
    min-width: 1400px;
}
.ourTeam{
    display: flex;
    flex-direction: column; 
    align-items: center;
    margin: 25px;
}

.tituloOurTeam{
    margin: 60px 0px 0px 0px;
}

.h-quadroParaFotosOurTeam{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 50px 0px 100px 0px;
}

.v-quadroDeApresentacao{
    align-items: center;
    text-align: center;
    width: 300px;
    height: 400px;
    background-color: #fffefe;
    margin: 20px;
    border-radius: 10px;
}

.v-quadroNoticia{
    align-items: center;
    text-align: center;
    width: 300px;
    height: 400px;
    background-color: #fffefe;
    margin: 20px;
    border-radius: 10px;
}

.fotoOurTeam{
    width: 200px;
    height: 200px;
    border-radius: 100px;
}


.v-quadroNoticia{
    align-items: center;
    text-align: center;
    width: 500px;
    height: 400px;
    background-color: #fffefe;
    margin: 20px;
    border-radius: 2px;
}

.v-quadroNoticia:hover{
    background-color: #f7f7f7;
    transform: scale(1.05);
    z-index: 10;
    border-radius: 20px;
}



/* #endregion -------seção Our team------*/













/*
.img_carrossel{
    width: 225px;
    height: 225px;
    object-fit: cover;
    border-radius: 50px 50px 50px 50px;
    position: absolute;
    left: 10%
    animation: carrossel_animado 10s linear infinite;
    transition: 400ms;
    
    /* border: 1px solid white; //
    margin: 10px 0px 20px 20px;
    box-shadow: 
        -10px 10px 15px -5px black;
        
}

.img_carrossel:hover{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50px 50px 50px 50px;

} 
    

.carrossel{
    display: flex;
    flex-direction: row;
    /*white-space: nowrap;//
    overflow: hidden;
    position: relative;
    align-items: center;
    /* animation: carrossel_animado 10s; //
    margin: 30px;
}

@keyframes efeito_de_girar {
    0%{
        left: 100%;
    }
    50%{
        left: -250px;
    }
    100%{
        left: 100%;
    }
}

*/

/* #endregion -------MAIN------*/

/* #region -------FOOTER-------*/

.footer_top{
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: 120px;
    background-color: transparent;
    margin-top: 10px;
}

.footer_img{
    max-width: 100px;
    max-height: 120px;
    padding: 30px;
}

.footer_lista{
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer_a{
    padding: 0px;
    margin: 10px;
    font-size: 20px;

}

.copyright{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: transparent;
}


/* #endregion -------FOOTER-------*/

/* teste de final da região */