﻿/***********************************************************
  CSS com classes para serem utilizadas em outros projetos tambem.

***********************************************************/

* {
    -webkit-box-sizing: border-box !important; /* Safari/Chrome */
    -moz-box-sizing: border-box !important; /* Firefox */
    box-sizing: border-box !important; /* IE8+/ Opera */
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: left;
    line-height: 150%; /* define a altura da linha de texto */
    color: #333333;
}

.content-wrap {
    max-width: 1024px;
    margin: auto;
    /* permite que elementos tenham posições ABSOLUTAS dentro do cabeçalho */
    position: relative;
}

hr {
    height: 1px;
    border-width: 0;
    border-top: 1px solid;
    border-top-color: #bbbbbb;
    width: 100%;
    display: inline-block;
}


/* Instala a fonte open sans */
/*@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    src: url('../fonts/open-sans/OpenSans-Light.ttf');
}
*/

/**************************************** 
 RECURSOS PARA LAYOUT EM COLUNAS 
*****************************************/
/* Linha para criar as colunas */
.row {
    display: flex;
    display: -webkit-flex; /* Safari */
    flex-wrap: wrap;
    flex-direction: row;
    align-items:initial;
    justify-content: center;
}

.col-12 {
    width: 100%;
}

.col-11 {
    width: 91.66666666%;
}

.col-10 {
    width: 83.3333333%;
}

.col-9 {
    width: 75%;
}

.col-8 {
    width: 66.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-6 {
    width: 50%;
}

.col-5 {
    width: 41.66666667%;
}

.col-4 {
    width: 33.33333333%;
}

.col-3 {
    width: 25%;
}

.col-2 {
    width: 16.66666667%;
}

.col-1 {
    width: 8.33333333%;
}

[class^="col-"] {
    margin-bottom: 16px;
}

.box {
    height:100%;
    position:relative;
}
.box-fotter{
    position:absolute;
    bottom:10px;
    }
.box-shadow{
    box-shadow:2px 2px 4px #bbbbbb;
}

.padding-14{
    padding:14px;
}

.min-height-300px{
    min-height:300px;
}


.border {
    border: 1px solid #c0c0c0;
    border-radius: 5px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-top-60 {
    margin-top: 60px;
}
.margin-top-60 {
    margin-top: 60px;
}

.margin-top-120 {
    margin-top: 120px;
}

.margin-bottom-120{
    margin-bottom:120px;
}

.text-align-right{
    text-align:right;
}


/*******************************************************************
CONTROLES DE FORMULÁRIOS
********************************************************************/

label {
    margin-top: 20px;
    display: block;
    max-width: 100%;
    font-size: 12px;
    text-transform: uppercase;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    color: #555555;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    resize: none;
    outline: none;
}

input[type="submit"],
input[type="button"],
button {
    margin-top: 30px;
    border: 1px solid #c0c0c0;
    border-radius: 4px;
    color: white;
    background-color: #355bc6;
    font-size: 16px;
    padding: 10px 20px;
}

    input[type="submit"]:hover,
    input[type="button"]:hover,
    button:hover {
        background-color: #293b90;
        color: white;
    }


.botao-delete {
    background-color: #ff6a00 !important;
}

    .botao-delete:hover {
        background-color: #ff4500 !important;
    }

.botao-editar {
    background-color: #498b47 !important;
}

    .botao-editar:hover {
        background-color: #37a533 !important;
    }

.botao-inserir {
    background-color: #355bc6 !important;
}

    .botao-inserir:hover {
        background-color: #293b90 !important;
    }

/*******************************************************************
LAYOUT DE MíDIAS
tem que ser as ultimas definições
********************************************************************/
@media only screen and (max-width: 768px) {

    /* 
        SELETORES DE ATRIBUTOS [] 
        https://www.w3schools.com/css/css_attribute_selectors.asp 
    */

    [class^="col-"] {
        width: 100%;
    }

    [class=content-wrapper] {
        padding: 0px;
        margin: 6px;
    }

    [class*="box-border"] {
        border: 0px;
        padding: 0px;
    }

    [class*="box-padding-16"] {
        border: 0px;
        padding: 0px;
    }

    [class=dp-hr] {
        display: inline-block;
    }

    /* FORMS ****************/

    .form-input {
        border: 0px;
        padding: 0px;
        padding-top: 20px;
        /*border-radius: 0;*/
    }

    .form-view {
        border: 0px;
        padding: 0px;
        padding-top: 1px;
        /*border-radius: 0;*/
    }

        .form-view .ht {
            display: none;
        }

    .side-panel {
        padding-left: 0 !important;
    }

    /* MENU RESPONSIVO ****************/
    .menu {
        display: none;
    }

    .menu-mobile-buttons {
        display: inline-block;
    }

    .logotype {
        float: right;
    }

    [class=logotype-img] {
        max-width: 240px;
    }
}

/* CONFIGURAÇÃO DA IMPRESSÃO */
@media print {
    body * {
        visibility: hidden;
    }

    #Printable * {
        visibility: visible;
    }
}

.bod {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

.C {
    background-color: #355bc6;
    color: white;
    padding: 20px;
    text-align: center;
}
.java {
    background-color: #ff6a00;
    color: white;
    padding: 20px;
    text-align: center;
}
.python {
    background-color: #3c76bd;
    color: white;
    padding: 20px;
    text-align: center;
}
.backend {
    background-color: #2e3134;
    color: white;
    padding: 20px;
    text-align: center;
}
    .main {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
   
}

.p {
    text-indent: 30px;
    margin-bottom: 16px;
    text-align:justify;
}

/* Test de animação */

.particles-container {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow:hidden;
}

.particle {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.4;
    animation: float 12s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}


.degradeazul {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    padding: 20px;
    color: white;
    text-align: center;
    background: linear-gradient(-45deg, #1a70d9, #13c1d9, #842bd9, #1ad993 );
    background-size: 400% 400%;
    animation: animacaoAzul 5s ease infinite;
}

@keyframes animacaoAzul {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.degradelaranja {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    padding: 20px;
    color: white;
    text-align: center;
    background: linear-gradient(-45deg, #d1872c, #d19e2c, #d15f2c,#d1b22c );
    background-size: 400% 400%;
    animation: animacaoLaranja 5s ease infinite;
}

@keyframes animacaoLaranja {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.degradepython {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    padding: 20px;
    color: white;
    text-align: center;
    background: linear-gradient(-45deg, #306998, #4B8BBE, #FFD43B,#FFE873 );
    background-size: 400% 400%;
    animation: animacaoPython 5s ease infinite;
}

@keyframes animacaoPython {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.degradebackend {
    width: 100%;
    height: 100%;
    margin: 0px auto;
    padding: 20px;
    color: white;
    text-align: center;
    background: linear-gradient(-45deg,#2e3134, #4a4f54, #6d7a86,#9ba6af,#d2d7db,#58636e,#1e2225);
    background-size: 400% 400%;
    animation: animacaoBackend 5s ease infinite;
    z-index:1
}

@keyframes animacaoBackend {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.fundo {
    background: #d2d7db;
}
/* Fundo da master page */
.master-background {
    background-color: #222222;
}

/* Fundo para páginas de conteúdo */
.content-background {
    background-color: white;
}