/* PRINCIPAL FOLHA DE ESTILO CSS. PROGRAME EM INGLÊS PARA MANTER O PADRÃO DE DESENVOLVIMENTO INTERNACIONAL */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&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&display=swap');
@import url('form.css');

#photoContainer {
    position: relative;
    display: inline-block;
}

#hoverOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    text-align: center;
}

#photoContainer:hover #hoverOverlay {
    opacity: 1;
}

/* Gradiente do menu */
.navbar-gradient {
  background: linear-gradient(90deg, #2e4b68 0%, #0f87ff 100%);
}

/* (opcional) se quiser forçar links/brando em branco mesmo usando navbar-dark */
.navbar-gradient .navbar-brand,
.navbar-gradient .nav-link,
.navbar-gradient .navbar-toggler {
  color: #fff;
}
.navbar-gradient .nav-link:hover,
.navbar-gradient .nav-link:focus {
  color: #e6f0ff;
}


body{
    font-family: 'Comfortaa',Arial, Helvetica, sans-serif;
    font-size: 14px;
}

#mainContent{
    margin-top: 70px;
    margin-left: 250px; /* Espaço inicial da sidebar */
    padding: 10px;
}

/*
--------------------------------------------------
PAGES
--------------------------------------------------
*/
.title{
    font-weight: 400;
    font-size: 20px;
    color: #1a1a60;
}

.nowrap{
    white-space: nowrap;
}

/*
--------------------------------------------------
CARDS
--------------------------------------------------
*/

.card, .card-footer{
    font-size: 12px;
    font-family: 'Open Sans';
}
.card-header{
    font-size: 16px;
}

.card-green, .card-green #eqBackButton{
    background-color: #fff;
    color: #662a7e;
}



/*
--------------------------------------------------
NOTIFICAÇÕES
--------------------------------------------------
*/
.toast-body{
    color:black;
}


/*
--------------------------------------------------
BOOTSTRAP 4 TO 5 TOP FEATURES
--------------------------------------------------
*/
/* Margin Top Classes */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Margin Bottom Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

