/* inicio */
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    /*min-height: 60vh; */
    width: 100%;
    /*background-image: linear-gradient(280deg,rgba(255, 242, 232, 1) 0%, rgba(255, 252, 250, 1) 100%), url("/images/HomeBackgroundSpace1.PNG"); */
    background-image: linear-gradient(280deg,rgba(255, 242, 232, 1) 0%, rgba(255, 252, 250, 1) 100%), url(images/HomeBackgroundSpace2.png);
    /*background: linear-gradient(280deg,rgba(255, 242, 232, 1) 0%, rgba(255, 252, 250, 1) 100%); */
    background-position: cover;
    background-size: cover;
    position: relative;
}
.sub-header{
    position: sticky;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    /* background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(/images/aboutUs.jpeg); 
    background-position: center;
    background-size:cover; */
    text-align: center;
    color: white;
    background-color: white;
    background-image: linear-gradient(to right, #004c6d , #7aa6c2);
    /*border-bottom-left-radius: 15%; */
}
.sub-header h1{
    margin-top: 0px;
}
.fa-search, .fa-pencil, .fa-trash, .fa-bell-slash, .fa-eye, .fa-eye-slash, .fa-rotate-left, .fa-palette, .fa-arrow-left, .fa-crosshairs{
    color:#7aa6c2;
}
.fa-times, .fa-plus, .fa-check, .fa-square-check, .fa-dollar, .fa-clipboard, .fa-ban, .fa-paintbrush, .fa-calendar-plus, .fa-lock, .fa-image{
    color:#7aa6c2;
}
.fa-user, .fa-sack-xmark, .fa-syringe, .fa-cubes, .fa-prescription-bottle-medical, .fa-calendar-days, .fa-calendar-xmark, .fa-close{
    color:#7aa6c2;
}
.icons{
    color:#7aa6c2;  
}
/* ------------------tool tip -------------------*/
.tooltip {
    position: relative;
  }
  
  .tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: #fce5e5;;
    color: #919191;
    font-size: 14px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .tooltip:hover::before,
  .tooltip:active::before {
    opacity: 1;
    visibility: visible;
  }
/*-- -----------------MENU----------------- */
nav{
    display: flex; 
    padding: 0px 20px; 
    justify-content: space-between;
    align-items: center; 
}
nav img{
    width: 80px;
    height: 100%;
}
/* Menu Interno */
/* - especifica a posicao do texto dos menus - */
.nav-links{
    flex: 1; 
    text-align: center;
}
/* espeficica como o menu sera em termos de posicao, nesse caso em linha - */
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px; 
    position: relative; 
    border-radius: 10px 100px / 120px;
}
/* - muda a cor das palavras do menu - */
.nav-links ul li a{
    color: bisque;
    text-decoration: none;
    font-size: 13px;
}
/* - coloca linhas embaixo das palavras dos menus - */
.nav-links ul li::after{
    content: '';
    width: 0%; /* usar 0% se quiser tirar as linhas */
    height: 2px;
    background: #5886a5;
    display: block;
    margin: auto;
    transition: 0.5s;
} 
/* faz com que as linhas aumentem quando passa o mouse em cima */
.nav-links ul li:hover::after{
    width: 100%;
} 
.nav-links .dropdown button{
    background-color: transparent;
    color: bisque;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0px; 
    border: transparent;
    display: inline-block;
}
/* Menu Externo Homme */
/* - especifica a posicao do texto dos menus - */
.nav-links2{
    flex: 1; 
    text-align: center;
}
/* espeficica como o menu sera em termos de posicao, nesse caso em linha - */
.nav-links2 ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px; 
    position: relative; 
    border-radius: 10px 100px / 120px;
}
/* - muda a cor das palavras do menu - */
.nav-links2 ul li a{
    color: bisque;
    text-decoration: none;
    font-size: 13px;
}
/* - coloca linhas embaixo das palavras dos menus - */
.nav-links2 ul li::after{
    content: '';
    width: 0%; /* usar 0% se quiser tirar as linhas */
    height: 2px;
    background: bisque;
    display: block;
    margin: auto;
    transition: 0.5s;
} 
/* faz com que as linhas aumentem quando passa o mouse em cima */
.nav-links2 ul li:hover::after{
    width: 100%;
} 
.nav-links2 .dropdown button{
    background-color: transparent;
    color: bisque;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0px; 
    border: transparent;
    display: inline-block;
}


.dropdown a{
    display: block; 
    color: bisque;
    text-decoration: none;
    padding: 8px 12px;
}
.dropdown a::after{
    content: '';
    width: 0%; /* usar 0% se quiser tirar as linhas */
    height: 2px;
    background: #5886a5;
    display: block;
    margin: auto;
    transition: 0.5s;
} 
.dropdown a:hover::after{
    width: 100%;
} 
.dropdown .content{
    position: absolute;
    background-color: #7aa6c2;
    background-image: linear-gradient(to right, #004c6d , #7aa6c2);
    min-width: 150px; 
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none; 
    text-align: left;
    z-index: 3; 
}
.dropdown .content2{
    position: absolute;
    background-color: white;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none; 
    margin: auto;
    z-index: 3; 
}
.dropdown:hover .content{
    display: block; 
    
}
.dropdown:hover .content2{
    display:inline-flex; 
    z-index: 3; 
} 
/* mexe na classe text-box */
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); /* coloca no centro do div */
    text-align: center;
}
.text-box h1{ /* muda coisas do titulo */
    font-size: 62px;
}
.text-box p{ /* muda coisas do paragrafo */
    margin: 10px 0 40px; /* ranges das linhas */
    font-size: 14px;
    color: #7aa6c2;
}
/* ------------------------------------------------- altera a cor do calendario do input date */
::-webkit-calendar-picker-indicator {
    filter: invert(0.8); 
}
/* ------------------------------------------------------mexe na classe botao */
.hero-btn{ /* botao */
    /* display: inline-block; */
    text-decoration: none;
    color:white;
    border: 1px solid white;
    padding: 12px 34px; 
    font-size: 14px;
    background: transparent;
    position: relative;
    cursor: pointer;
    }
.hero-btn:hover{
    border: 1px solid #7aa6c2;
    background: #9dc6e0;
    transition: 1s;
}
.red-btn{
    border: 1px solid #7aa6c2;
    background: transparent;
    color: #7aa6c2;
}
.red-btn:hover{
    color: #fff;
}
.search-hero-btn{ /* botao */
    /* display: inline-block; */
    text-decoration: none;
    color:white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 14px;
    background: transparent;
    position: relative; 
    cursor:text;
}
.search-hero-btn::placeholder{
    color:#7aa6c2;
}
.search-red-btn{
    border: 1px solid #7aa6c2;
    background: transparent;
    color: #7aa6c2;
}
.search-red-btn:hover{
box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */ 
}
.comandos-btn{ /* botao */
    display: inline-block;
    text-decoration: none;
    color:#7aa6c2;
    border: 1px solid transparent;
    padding: 0px 6px;
    font-size: 14px; 
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    }
.comandos-btn:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */ 
}
/* configurara para dispositivos pequenos */
/* esconder icones para o site grande */
nav .fa{
    display: none;
}
@media(max-width: 700px){
    /* titulo */
.text-box h1{
    font-size: 20px;
    }
/* menu interno */
.nav-links ul li{
    display: block;
    }
.nav-links{
    position: fixed;
    background: #7aa6c2;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 5;      
    transition: 1s;
    }
.dropdown .content{
    background-color: #7aa6c2;
    border-radius: 10px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
}
.dropdown:hover .content{
    z-index: 6; 
    }   
nav .fa{
    display: block;
    color: white;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
    }
.nav-links ul{
    padding: 30px;    
    } 
/* menu externo*/
.nav-links2 ul li{
    display: block;
    }
.nav-links2{
    position: fixed;
    background: bisque;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 5;      
    transition: 1s;
    }
.nav-links2 ul{
    padding: 30px;    
    }   
}
/* Fim da media */


/* Animações */
.animarVisivel{
    opacity: 0;
}
.animarVisivelLeft{
    opacity: 0;
}
.animacaoObjetosLeft{
    animation: moveLeft 1s ease-in-out forwards;
}
.animarVisivelRight{
    opacity: 0;
}
.animacaoObjetosRight{
    animation: moveRight 1s ease-in-out forwards;
}
.animarVisivelBottom{
    opacity: 0;
}
.animacaoObjetosBottom{
    animation: moveBottom 1s ease-in-out forwards;
}
.animarVisivelUp{
    opacity: 0;
}
.animacaoObjetosUp{
    animation: moveUp 1s ease-in-out forwards;
}
.animarVisivelFade{
    opacity: 0;
}
.animacaoObjetosFade{
    animation: fadeImg 1s ease-in-out forwards;
}

@keyframes fadeImg {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes moveUp {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
@keyframes moveBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}
@keyframes moveLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}
@keyframes moveRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

/* SLIDE SHOW */
/* Slideshow container */
.slideshow-container {
 
    position: relative;
    margin: auto;
  }
/* Hide the images by default */
.mySlides {
    display: none;
}
.mySlides2 {
    display: none;
}
.mySlides3 {
    display: none;
}
.mySlidesVideo1 {
    display: none;
}
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .dot2 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .dot3 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .dotVideo1 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover, .dot2:hover, .dot3:hover, .dotVideo1:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

/* ----------------------- HOME PAGE -------------------- */
.imgHomeSpace1{
    display: block;
    max-width: 100%;
    height: 550px;
}
.imgHomeSpace3{
    display: block;
    max-width: 450px;
    height: auto;
}
.imgHomeSpace1_Mobile{
    display: none;
}
.textJustify{
    text-align: center;
}
.imgGradiente{
  /* Máscara radial: bordas transparentes, centro visível */
  -webkit-mask-image: radial-gradient(ellipse at center, 
    black 50%, 
    transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;

  mask-image: radial-gradient(ellipse at center, 
    black 50%, 
    transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
.imgHomeSpace2{
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}
.areaExpansivelRetraida{
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 1s ease, opacity 1s ease;
}
.areaExpansivelAmpliada{
    max-height: 500px; /* altura máxima esperada */
    opacity: 1;
    
}

@media(max-width: 700px){
    .imgHomeSpace1{
        display: none;
    }
    .imgHomeSpace3{
        display: none;
    }
    .imgHomeSpace1_Mobile{
        display: inline-block;
        max-width: 100%;
        max-height: 350px;
    }
    .imgHomeSpace2{
        max-width: 100%;
    }
    .imgHomeSpace2Mini{
        display: none;
    }
    .h1Mobile{
        line-height: 1.3;
    }
    .textJustify{
        text-align: center;
    }
}

/*------------------------------------------------------- */
/*---------------- padroes -------------------- */
/*------------------------------------------------------- */

/* --------- colunas e containes ---------- */
/* row principal para dividir colunas */
.rowPrincipal{ 
    display: flex;
    justify-content: space-evenly;
    max-width: 1000px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 95%;
}
.rowPrincipalReverso{ 
    display: flex;
}
.rowPrincipal2{ 
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    width: 100%;
}
/* row secundario para ir dividindo colunas */
.rowSecundario{ 
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    width: 100%;
}
.rowProntuario{ 
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    width: 100%;
}
.hidden { display:none; }
/* row para inserçao de dados, fica sombreado sobre o principal */
.rowSobrePrincipal{
    position:fixed; 
    z-index:10; 
    background-color:rgba(0,0,0,.25); 
    width:100vw; 
    height:100vh; 
    top:0; 
    left:0;
}
.rowSobrePrincipal2{
    position:fixed; 
    z-index:150; 
    background-color:rgba(0,0,0,.25); 
    width:100vw; 
    height:100vh; 
    top:0; 
    left:0;
}
/* container principal para alocar os objetos */
.containerPrincipal{
    background-color: white;
    border-radius: 10px;
    border-color: black;
    padding: 10px 10px;
    box-sizing: border-box;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */  
}
.containerPrincipal2{
    background-color: transparent;
    padding: 10px 10px;
}
.containerSecundario{
    background-color: transparent; 
}
.containerSecreto{
    display: none;
    background-color: transparent; 
}
@media(max-width: 700px){
    .rowPrincipal, .rowSobrePrincipal, .rowProntuario, .rowPrincipal2{
        flex-direction: column;
    }
    .rowPrincipalReverso{
        flex-direction: column-reverse;
    }
    .containerPrincipal{
        margin-bottom: 10px;
    }
}
/* ---------tab control--------- */
.tab-buttons {
    display: flex;
    gap: 6px;
}

.tab_btnActive {
    width: 100%;
    border: none;
    color: white;
    background-color: #7aa6c2;
    border-radius: 8px 8px 0px 0px;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .3s ease;
    text-align: center;
}
.tab_btnInactive {
    width: 100%;
    border: none;
    color: white;
    background-color: #c2d5e0;
    border-radius: 8px 8px 0px 0px;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .3s ease;
    text-align: center;
}

.tab-btn.active {
    background-color: #c7d2fe;
}

.tab-btn:hover {
    background-color: #a5b4fc;
}

.content {
    display: none;
}

.content.show {
    display: flex;
    gap: 14px;
    background-color: #c7d2fe;
    border-radius: 0px 0px 8px 8px;
    padding: 16px;
}
/* --------- textos e inputs ---------- */
/* styles */
.navActive{
    background-color: #7aa6c2;
    background-image: linear-gradient(to top, #004c6d , #5299c5);
    color: #7aa6c2;
    border-radius: 10px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    text-decoration:underline 4px #5886a5;  
}
.divOptions{
    position: fixed;
    top: 90%;
    right: 3%;
    z-index: 8;
    cursor: pointer;
}
.dropdown_Media_Hide{
    display: flex;
}
.dropbtn {
}
.dropdown_Media a{
    display: block; 
    color: #7aa6c2;
    background-color: white;
    text-decoration: none;
    text-align: center;
    font-size: 28px;
    width: 50px;
    border-radius: 50px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.5);
    padding: 6px 2px;
} 
.content2_Media{
    position: absolute;
    bottom: 60px;
    right: 0px;
    background-color: white;
    border-radius: 10px;
    width: auto;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
.content2_Media a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.content2_Media_a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.content2_Media_button{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
    border: 0px solid #7aa6c2;
}
.showOptions{
    display:block; 
    position: absolute;
    bottom: 60px;
    right: 0px;
    background-color: white;
    border-radius: 10px;
    width: auto;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
/* menu tabela */
.dropdown_Media_Hide_Table{

}
.dropdown_Media_Table {
  
} 
.dropdown_Media_Table a{
    cursor: pointer;
    display: block; 
    color: white;
    background-color: #7aa6c2;
    text-decoration: none;
    text-align: center;
    width: 50px;
    border-radius: 10px;
    padding: 2px 0px;
    font-size: 28px;
} 
.content_Media_Table{
    position: absolute;
    translate: 10% 0px;
    background-color: white;
    border-radius: 10px;
    width: 220px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
.content_Media_Table_Agenda{
    position: absolute;
    translate: -90% 200px;
    background-color: white;
    border-radius: 10px;
    width: 220px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
.content_Media_Table a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.content_Media_Table_Agenda a{
    cursor: pointer;
    background-color: transparent;
    font-size: 14px;
    color: #919191;
    font-weight: 600;
}
.showOptionsTable{
    cursor: pointer;
    position: absolute;
    translate: -50% 0px;
    background-color: white;
    border-radius: 10px;
    width: 220px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
    display: block;
    align-items: center;
    justify-content: center;
    margin: auto;
    z-index: 8; 
}
@media(max-width: 700px){
 
}
/* tables */
.rowCenter{
    text-align: center;
}
.rowLeft{
    text-align: left;
}
.clickable-row { 
    cursor: pointer; 
}
.clickable-row:hover 
{
    background-color:rgba(0,0,0,0.05);
}
.clickable-div { 
    cursor: pointer; 
}
.clickable-div:hover 
{
    background-color:rgba(0,0,0,0.2);
}
*::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
  }
  
*::-webkit-scrollbar-track {
    background: hsla(240, 12%, 97%, 0.699);;        /* color of the tracking area */
  }
  
*::-webkit-scrollbar-thumb {
    background-color: #5886a5;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid hsla(240, 12%, 97%, 0.699);;  /* creates padding around scroll thumb */
}
.truncate-ellipsis {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    -o-text-overflow: ellipsis;
        max-width: 30%;
}
/* titulo */
h1{
    color:#7aa6c2;
    font-weight: 600;
    font-size: 24px; 
}
/* texto normal */
h2{
    color:#7aa6c2;
    font-size: 14px;
}
h3{
    color:#919191;
    font-size: 14px;
}
h4{
    color: rgb(148, 210, 248);
    font-size: 14px;
}
h5{
    color: rgb(163, 248, 220);
    font-size: 14px;
} 
h6{
    color: rgb(245, 239, 163);
    font-size: 14px; 
}
p{
    color: #7aa6c2;
    font-size: 14px;
}
/* inputs */
textarea{
    background-color: transparent;
    color:#7aa6c2;
    font-size: 14px; 
    width:100%;
    resize: vertical;
    overflow-y: auto;
}
input{
    width: 100%;
    padding: 10px;
    color:#7aa6c2;
    outline: none;
    border: 1px solid #7aa6c2;
    background-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 10px;
}
input[type="checkbox"]{
    accent-color: #7aa6c2;
}
input[type="checkbox"]::before {
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
input[type="radio"] {
    accent-color: #7aa6c2;
  }
select{
    width: 100%;
    padding: 10px;
    background-color: transparent;
    color: #7aa6c2;
    border: 1px solid #7aa6c2;
    font-size: 14px;
    border-radius: 10px;
} 
input::placeholder{
    color: #7aa6c2;
}

.homeInput{
    color:#8e7345;
    border: 1px solid #8e7345;
    width: 100%;
    padding: 10px;
    outline: none;
    background-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 10px;
}
.homeInput::placeholder{
    color: #e5cc94;
}
.etiqueta{
    border-radius: 10px;
    font-size: 14px;
    width: fit-content;
    padding: 5px 10px;
}
.dataInputTitulo{
    width: 80%;
    box-sizing: content-box;
    font-size: 24px;
    background: transparent;
    color: #7aa6c2;
    border-color: transparent;  
}
input[type=file]::-webkit-file-upload-button {
    visibility: hidden;
}
label{
    color:#7aa6c2;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
}
.clickButtonConfirm{
    text-align: center;
    background-color: #7aa6c2;
    border-radius: 10px;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    cursor: pointer;
    color: white;
    padding: 12px 20px;
}
.clickButtonConfirmDisabled{
    text-align: center;
    background-color: #c2d5e0;
    border-radius: 10px;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    cursor: none;
    color: white;
    padding: 12px 20px;
}
.clickButtonConfirm .fa{
    color: white;
    font-size: 14px;
}
.clickButtonConfirm:hover{
    background: #c2d5e0;
    transition: 1s;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */ 
}
.clickButtonCall{
    text-align: center;
    background-color: #7aa6c2;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    cursor: pointer;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}
.clickButtonCall .fa{
    color: white;
    font-size: 40px;
}
.clickButtonCall:hover{
    background: #c2d5e0;
    transition: 1s;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2); /* 0.2 opacidade */ 
}
