@charset "UTF-8";


/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f1ea;
    color: #333;
    line-height: 1.6;
    padding-top: 80px; /* Espaço para o header fixo não cobrir o conteúdo */
}

/* Header Fixo */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #1a3a3a; /* Tom verde escuro baseado na logo */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Container da Logo para fazer o efeito de "sair" */
.logo-container {
    position: relative;
    height: 100%;
}

.logo-img {
    position: absolute;
    top: 5px; /* Ajuste para posicionar */
    height: 100px !important; /* Maior que o header (70px) */
    width: 100px !important;
    border-radius: 50%;
    border: 1px solid #f4f1ea;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    object-fit: cover;
}

.favicon-img{
    height: 20px !important;
    width: 20px !important;
}

/* Menu de Navegação */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d4a373;
}

/* Conteúdo Principal */
main {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    min-height: calc(100vh - 250px);
}

.hero-section {
    text-align: center;
    padding: 40px 0;
}

/* Rodapé */
footer {
    background-color: #1a3a3a;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

input[type=text], input[type=password], input[type=e-mail] {
  width: 100%;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

 /* Efeito do Botão - Início */
button {
  background-color: #04AA6D;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}
	
button:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
}

button:not(:disabled) {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

button:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

button:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

button:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

button:disabled {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}					
/* Efeito do Botão - Término */

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Fundo escurecido */
.modal {
	display: block; 
	position: fixed;
	z-index: 1;
	left: 0; top: 0;
	width: 100%; height: 100%;
	background-color: rgba(0,0,0,0.5);
}

/* Caixa branca do login */
.conteudo-modal {
	background-color: white;
	margin: 15% auto;
	margin-top: 80px;
	padding: 20px;
	width: 300px;
	border-radius: 8px;			
}





/* Responsividade para Celular */
@media (max-width: 600px) {
    header {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 95px;
        width: 95px;
    }

    nav ul li {
        margin-left: 10px;
        font-size: 14px;
    }

    body {
        padding-top: 70px;
    }
}
/* Responsividade para Celular - extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn {
	 width: 100%;
  }
}


