@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Changa:wght@400;500;700&family=Kdam+Thmor+Pro&family=Lobster&display=swap');@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Changa:wght@400;500;700&family=Kdam+Thmor+Pro&family=Lobster&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Changa';
    text-decoration: none;
}

:root {
    --white: #ffffff;
    --green: #758c3e;
    --brown: #5c3c2f;
    --clarito: #d4eed6;
    --notanclaro: #c4d7a1;
}


.header {
background-color: var(--white);
margin: 0 auto;
height: 100px;
max-width: 1400px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 0.1px;
}


.header-logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
}

.header-logo img {
    height:100%;
}

.navbar, .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-list{
    padding: 0 10px;
    gap: 50px;
}

.navbar i {
    font-size: 30px;
    color:var(--green);
    cursor: pointer;
    display: none;
}

#toggle-menu {
    display: none;
}

.navbar-list a {
    color: var(--green);
    font-size: 13px;
}

.navbar-list li:nth-child(4){
    background-color: var(--clarito);
    color: var (--white);
    border: 1px solid #d4eed6;
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 3px;
    transition: all 0.3s linear;

}

.navbar-list li:nth-child(5) {
    background-color: var(--white);
    border: 1px solid #d4eed6;
    font-size: 14px;
    padding: 5px 30px;
    border-radius: 3px;
    transition: all 0.3s linear;
}

.navbar-list li:nth-child(4):hover {
    background-color: var(--notanclaro);
    color: var(--white);
}

.navbar-list li:nth-child(5):hover {
    background-color: var(--clarito);
    color: var(--white);
}

.navbar-list li:hover {
    box-shadow: 0 2px var(--green);
}

/*Breakpoints*/

@media (max-width: 992px) {

.navbar i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 26px;
}

.navbar i:hover {
    margin: 0 20px;
    background-color: #c4d7a1;
    color: var(--white);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    font-size: 30px;
    cursor: pointer;
    }

.navbar-list {
    position: absolute;
    background-color: var(--white);
    flex-direction: column;
    top: 100px;
    right: 0;
    width: 100%;
    height: calc(100vh - 100px);
    display: none;
    z-index: 9999;
}

#toggle-menu:checked + .navbar-list {
    display: flex;
}
}

/* Formularo de registro */

.form__article {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background-color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: row;

}

.form {
    background-color: var(--white);
    margin: 0 auto;
    width: 90%;
    height: auto;
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px -5px rgba( 0 0 0 / 30%);
    text-align: center;
}

.form h2 {
    color: var(--green);
}

.form p{
    font-size: 13px;
    padding-top: 30px;
    color: var(--brown)
}

.form__title {
    font-size: 1rem;
    margin-bottom: 3em;
}

.form__link {
    font-weight: 400;
    color: black;
}

.form__container {
    margin-top: 1em;
    display: grid;
    gap: 3em;
}

.form__group {
    position: relative;
}

.form__input {
    width: 100%;
    background: none;
    color: grey;
    font-size: 1rem;
    padding: .6em .3em;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(94, 94, 94);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    transform: translateY(-12px) scale(.8);
    transform-origin: left top;
    color: var(--green);
}

.form__label {
    color:rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position:absolute;
    top: 0;
    left: 5px;
    transform: translateY(10px);
    transition: transform .5, color 3.s;
}

.form__submit {
    background-color: #c4d7a1;
    color: var(--white);
    font-size: 1rem;
    margin: 50px;
    padding: 10px 50px;
    border: none;
    border-radius: 5em;
}

.form__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #c4d7a1;
}

@media (max-width:768px) {
    .form__article {
        max-width: 768px;
        width: 100%;
        padding: 5px;
    }
    .form {
        background-color: var(--white);
        margin: 0 auto;
        width: 100%;
        height: auto;
        max-width: 500px;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 10px -5px rgba( 0 0 0 / 30%);
        text-align: center;
    }

    margin: 0 auto;
}

/*footer*/

footer {
    width: 100%;
    padding: 50px 0;
    background-image: url(/assets/imgs/svg.png);
    background-size: cover;
}

.container__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: auto;
    margin-top: 300px;
}

.box__footer {
    display: flex;
    flex-direction: column;
    padding: 40px;
}


.box__footer .logo img {
    width: 180px;
}

.box__footer .terms {
    max-width: 350px;
    margin-top: 20px;
}

.box__footer h2 {
    margin-bottom: 30px;
    color: #343434;
    font-weight: 400;
}

.box__footer a  {
    margin-top: 10px;
    color: #7a7a7a;
    font-weight: 600;
    padding: 3px;
}

.box__footer a:hover {
    opacity: 0.8;
}

.box__footer a .fab{
    color: white;
    padding: 5px;
    font-size: 15px;
}

.box__copyright {
    max-width: 1400px;
    margin: auto;
    text-align: center;
    padding: 0px 30px;
}

.box__copyright p {
    margin-top: 20px;
    color: #7a7a7a;
}

.box__copyright hr{
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}

/* Breakpoints - MediaQueries Footer Section */
@media (max-width:768px) {

    .container__footer {
        max-width: 768px;
        width: 100%;
        display: flex;
        justify-content: left;
        align-items: left;
        margin-top: 300px;
        padding: 10px;
    }
.box__footer {
    padding: 0;
}
    .box__footer .logo img {
        display:none;
    }
}