body {
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:#203320;
    color:rgba(255, 255, 255, 0.795);
    padding: 15px;
    font-size: 20px;
}
.logo img{
    width: 100px;
}

#pagAtual{
    font-weight: bolder;
    text-shadow: 1px 1px 2px black, 0 0 25px white, 0 0 5px wheat;
}
.menu {
    display: flex;
    gap: 15px;
}
.menu a{
    color:white;
    text-decoration: none;
    
}

.hero {
    background:#245223;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: #203320;
    color: white;
    padding: 25px;
    margin-top: auto;
    text-align: center;
    font-size: 14px;
}

.footer p {
    margin: 0;
    opacity: 0.9;
}


.layout {
    display: flex;
    min-height: 900px;
}

.infos{
    margin-left: 5px;
    padding-left: 5px;
    width: 95%;
    height: 300px;
    position:relative;
    align-items:end;
    text-align: left;
    transition: 1s;
    overflow: hidden;
    display: flex;

    
    
}
.infos:hover{
    transition: 1s;
    width: 90vw;
}

.infos img{
    max-height: 100%;
    width: 25%;
    position: absolute;
    margin-left: 790px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}


.sidebar {
    display: flex;
    flex-direction: column; 
    background:#20851E;
    width: 300px;
    color: rgba(255, 255, 255, 0.795);
    
}

.textInf{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hidden{
    position: absolute;
    margin-left: 290px;
    height: 100%;
    width: 500px;
    flex-wrap: wrap;
    align-items: center;
    background-color: #20851E;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.795);
}
.center {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .center img{
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.center .textInf{
    width: 400px;
    display: block;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}
iframe{
    position: fixed;
    width: 40vw;
    height: 12vw;
    top: 500px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: whitesmoke;
    width: 100%;
    max-width: 900px;
    padding: 35px;
    border-radius: 12px;
    box-sizing: border-box;
    
}

label {
    font-weight: bold;
    margin-bottom: 6px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 140px;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
}

.linha {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.campo {
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 180px);
    padding: 40px 20px;
}

.acoes {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}
.submit {
    background: darkgray;
    color: white;
}
.submit:hover {
    background-color: rgb(53, 50, 50);
}
.reset {
    background-color: #ccc;
    
}
.reset:hover{
    background-color: red;
}