

/**
 * copyright 2023 geroncio.developer
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Fauna+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.cdnfonts.com/css/photograph-signature');


:root {

 /**
  * colors
  */

 /**
  * colors
  */

  --azul-piscina: rgb(0, 175, 239);
  --azul-claro: rgb(244,247,253);
  --azul-escuro: rgb(13, 33, 79);
  --azul_50: hsla(222, 71.7%, 18%, 0.7);
  --azul-evolt: #0166c0;
  --star-yellow: rgb(255,191,0);
  --amarelo-baby: #fdfd96;
  --verde-oliva: rgb(107,117,82);
  --verde-lima: rgb(129,165,3);
  --verde2: rgb(107,117,82);
  --verde3: #bdecb6;
  --marrom: #6c4d38;
  --marrom70: rgb(179,139,109);
  --pele: #cfb091;
  --banana:#fffbc9;
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --brancogelo:rgb(253,253,253);
  --cinza: rgb(222,223,218);
  --cinzaweb: rgb(240,243,250);
  --gray-web: hsl(0, 0%, 49%);
  --cultured-1: hsl(0, 0%, 97%);
  --cultured-2: hsl(60, 6%, 93%);


  /**
  * gradient color
  */

  --gradient: linear-gradient(to right, transparent 50%, var(--white_30) 100%);

  /**
   * typography
   */

  --ff-urbanist: 'Urbanist', sans-serif;

  --fs-1: 4.8rem;
  --fs-2: 4rem;
  --fs-3: 3.4rem;
  --fs-4: 2.4rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;
  --fs-9: 1.3rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 35px;


 /**
  * shadow
  */

  --shadow-1: 0 8px 16px var(--black_15);
  --shadow-2: 0 4px 10px var(--black_5);

  /**
   * radius
   */

  --radius-3: 3px;


 /**
  * transition
  */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }


a,
img,
span,
input,
button,
ion-icon { display: block; }


li { 
    list-style: none 
}
  
.span2{
    font-size: 20px;
    color: var(--black);
}
  
a {
    text-decoration: none;
    color: inherit;
}
  
img { height: auto; }
  
input,
button {
    background: none; /*Cor de todos os buttons padrão definido como nenhuma*/
    border: none;
    font: inherit;
}
  
input { width: 100%;
 }

 

/* Mantém a cor de fundo branca para as opções da lista de sugestões */
#inputEmail {
  background-color: var(--azul-evolt);
}
  
input[type=number]::-webkit-inner-spin-button {
    all: unset;
    
}
  
button { cursor: pointer; }
  
ion-icon {
    pointer-events: none;
    --ionicon-stroke-width: 25px; 
}
  
html {
    font-family: var(--ff-urbanist);
    font-size: 10px;
    scroll-behavior: smooth; 
}
  
body {
    background-color: var(--azul-evolt); /*Cor do corpo principal*/
    color: var(--gray-web);
    font-size: 1.6rem;
    font-weight: var(--fw-500);
    line-height: 1.6; 
}
  
  
  
  /* BARRA DE ROLAGEM BACKGROUND */
  
  
::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}
    
::-webkit-scrollbar-track { background-color: hsl(0, 0%, 95%); }
    
::-webkit-scrollbar-thumb { background-color: var(--cinza); }
    
::-webkit-scrollbar-thumb:hover { background-color: var(--cinza); }
  
  
/* EFEITO BARRA UNDERLINE AO COLOCAR CURSOR SOBRE O TEXTO */ 
  
.has-before,
.has-after {
    position: relative;
    z-index: 1;
    
}
  
.has-before::before,
.has-after::after {
    content: "";
    position: absolute;
}
  
  
.blog-card .card-banner img { transition: var(--transition-2); }
  
.blog-card:is(:hover, :focus-within) .card-banner img { transform: scale(1.2); }
  
.blog-card .card-title {
    text-align: center;
    margin-block: 30px 20px;
    transition: var(--transition-1);
}
  
.blog-card .card-title:is(:hover, :focus) { color: var(--white); }
  
.blog-card .btn-link { justify-content: center; }



/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { 
    padding-inline: 15px;

}


.btn2 {
    font-weight: var(--fw-600);
    width: 200px;
    height: 30px;
    justify-content: center;
    display: flex;
    padding: 7.5px 10px;
    border-radius: var(--radius-3);
    transition: var(--transition-1); 
}
  
.btn-primary-b2{
    margin-top: 12px;
    width: 120px;
    height: 50px;
    background-color: var(--white);
    display: flex;
    margin-left: -5px;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    font-size: 14px;
    box-shadow: var(--shadow-1);
    color: var(--azul-evolt);
    cursor: pointer; 
}

.img-card-person{
    width: 18px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-item
{
    margin-bottom: 20px;

}

.form-item2
{
  display: flex;
  width: 270px;
  justify-content: center;
  margin-bottom: 30px;

}


.form-itembutt
{
  display: flex;
  width: 270px;
  justify-content: start;
  margin-bottom: 30px;

}


.form-group{
    display: flex;
    margin-top: 5px;
    border-radius: 5px;
    border: 2px solid var(--white);
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
}


.form-control
{
  text-align: left;
    width: 220px;
    margin-left: 10px;
    height: 40px;
    background: transparent;
    border-bottom: 0px solid var(--cinza);
    padding: 10px 5px;
    font-size: 12px;
    color: white;
    outline: none;

}

input::placeholder {
    color: white; /* Defina a cor desejada aqui */
}


.col-12 {
    width: 100%;
}

.padd-15
{
    padding-left: 15px;
    padding-right: 15px;
}


.footer-2 {
    width: 100%;
    display: block;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-block-end: 20px;
    padding-left: 10px;
    padding-right: 10px;
    
}


.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding-top: 50px;
    
}


.footer-bottom2 {
    display: block;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-block-end: 20px;
}


.footer-bottom .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-block-end: 20px;
}



.copyright{
    font-size: 12px;
    color: white;
}


.nameform{
    font-size: 15px;
    font-weight: 700;
    color: var(--star-yellow);
}


.nameform2{
    display: flex;
    justify-content: right;
    font-size: 10px;
    margin-top: 10px;
    font-weight: 700;
    text-decoration: underline;
    color: var(--white);
    cursor: pointer;
}


svg {
    width: 2.25em;
    display: none;
    margin-left: 35px;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
   }
   
   circle {
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
   }
   
   @keyframes rotate4 {
    100% {
     transform: rotate(360deg);
    }
   }
   
   @keyframes dash4 {
    0% {
     stroke-dasharray: 1, 200;
     stroke-dashoffset: 0;
    }
   
    50% {
     stroke-dasharray: 90, 200;
     stroke-dashoffset: -35px;
    }
   
    100% {
     stroke-dashoffset: -125px;
    }
   }
   
  




/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


@media (min-width: 350px) {

  /* Estilos para o modal personalizado */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  width: 330px;
  height: auto;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
}

.modal-content img{
  width: 100px;
   height: 60px;
   margin-top: -10px;
   justify-content: center;
   align-items: center;
   display: flex;
   background-size: 80px;
   background-repeat: no-repeat;
}

.modal-content span{
  color:var(--azul-evolt);
  text-align: justify;
  padding-left: 20px;
  padding-right: 0px;
  padding-top: 5px;
  font-size: 14px;
  width: 100%;
}

.modal-content button{
  color:var(--white);
  text-align: justify;
  display: flex;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 10px;
  padding-top: 3px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 14px;
  background-color: var(--azul-evolt);
}
#fecharstatus{
  margin-left: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

#confirmarstatus{
  background-color: transparent;
  border: 1.5px solid var(--azul-evolt);
  color: var(--azul-evolt);
}
#confirmarstatus:hover{
  background-color: var(--azul-evolt);
  border: 0px solid var(--azul-evolt);
  color: var(--white);
}


#fecharcadastro{
  margin-left: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

#confirmarcadastro{
  background-color: transparent;
  border: 1.5px solid var(--azul-evolt);
  color: var(--azul-evolt);
}
#confirmarcadastro:hover{
  background-color: var(--azul-evolt);
  border: 0px solid var(--azul-evolt);
  color: var(--white);
}

.flex{
  display: flex;
  width: 100%;
  gap: -10px;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
}



.containeradmin { 
    width: 100%;
    height: auto;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    background-position: center;
    background-size: 100%;
}


.logincontainer{
    width: 100%;
    display: flex;
    justify-content: center;
  
    
}


.logincontainer2{
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    padding-top: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 0px solid var(--white);
  }

.logincontainer2-2{
    width: 85%;
    height: auto;
    background-color: var(--azul-evolt);
    box-shadow: var(--shadow-2);
  }

.logincontainer3{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    margin-top: 50px;
  }

.logincontainer3-2{
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
  }

.agendaimage{

    width: 100%;
    height: 200px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/images/evoltwhite.png');
    background-repeat: no-repeat;
    background-size: 300px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position-x: center;
    animation: shoes 1s ease infinite alternate;
    transition: all .5s ease-in;
  }

  @keyframes shoes {
    from {
      top: 48%;
    }
  
    to {
      top: 52%;
    }
  }

}