@import url(/css/colors.css);

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    user-select: none;
    list-style: none;
    text-decoration: none;
}

body {
    background: var(--white);
}

/*==== Scroll Personalizado ====*/
::-webkit-scrollbar{
	width: .5vw;
}

::-webkit-scrollbar-thumb{
	background: linear-gradient(transparent, var(--green), var(--light-gray));
	border-radius: 6px;
	transition: .6s ease-in;
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    margin: auto;
    height: 15vh;
    width: 90%;
}

header svg {
    cursor: pointer;
}

header > div {
    height: 100%;
    display: flex;
    align-items: center;
}

header > div img {
    width: 90%;
    margin-top: 1.8rem;
}

/* Menu */ 

.menu {
    position: absolute;
    flex-direction: column;
    z-index: 1000;

    right: 3vw;
    top: 3%;

    padding: 1vw;

    width: 18vw;
    height: 90vh;

    filter: drop-shadow(-3px 3px 0px rgba(0, 0, 0, 0.199));
    border-radius: 15px;
    background-color: var(--green);

    transition: .5s;
}

.menuIsOpen {
    visibility: visible;
    height: 90vh;
    opacity: 1;
}

.menuIsClose {
    visibility: hidden;
    height: 0vh;
    opacity: 0;
}

.menu .close {
    display: flex;
    justify-content: right;
    width: 100%;
}

.close svg {
    cursor: pointer;
}

.menu a {
    cursor: pointer;

    display: flex;
    align-items: center;

    padding-inline: 10px;
    height: 4rem;

    border-radius: 5px;

    background-color: transparent;
    color: white;
    
    text-decoration: none;

    transition: .5s;
}

.menu a:hover {
    background-color: #25cf6ca8;
}

.menu a h2 {
    margin-left: 10px;
    font-weight: 0;
}

.theme{
    display: flex;
    position: absolute;    
    bottom: 0;
    margin-left: 10px;
    padding-bottom: 1rem;
}

.theme h2{
    color: white;
    margin-left: 60px;
    font-weight: 300;
}

/* Estilo iOS */
.switch__container {
    margin-top: 0.4rem;
    width: 2px;
}
  
.switch {
    visibility: hidden;
    position: absolute;
    margin-left: -9999px;
}

.switch + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.switch--shadow + label {
    padding: 2px;
    width: 50px;
    height: 20px;
    background-color: #dddddd;
    border-radius: 60px;
}

.switch--shadow + label:before,
.switch--shadow + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
}

.switch--shadow + label:before {
    right: 1px;
    background-color: #f1f1f1;
    border-radius: 60px;
    transition: background 0.4s;
}

.switch--shadow + label:after {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: translate3d(-2px, -3px, 0px);
    transition: all 0.4s;
}

.switch--shadow:checked + label:before {
    background-color: var(--green);
}

.switch--shadow:checked + label:after {
    transform: translate3d(25px, -3px, 0px);;
}

/* Estilo Flat */
.switch--flat + label {
    padding: 2px;
    width: 60px;
    height: 30px;
    background-color: #dddddd;
    border-radius: 60px;
    transition: background 0.4s;
}

.switch--flat + label:before,
.switch--flat + label:after {
    display: block;
    position: absolute;
    content: "";
}

.switch--flat + label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #fff;
    border-radius: 60px;
    transition: background 0.4s;
}

.switch--flat + label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 56px;
    background-color: #dddddd;
    border-radius: 52px;
    transition: margin 0.4s, background 0.4s;
}

.switch--flat:checked + label {
    background-color: var(--green);
}

.switch--flat:checked + label:after {
    margin-left: 60px;
    background-color: var(--green);
}

@media screen and (max-width: 300px){ 
    header > div h1 {
        font-size: 1.5rem;
    }

    main div h1 {
        font-size: 2.5rem;
    }
    
    .menu {
        width: 90vw !important;
    }
}

/* Responsive - Menu */
@media screen and (max-width: 1500px) {
    .menu {
        width: 16rem;
    }
}


/*==== Rodapé ====*/
footer{
    background: var(--light-gray);
    position: relative;
    justify-content: center;
}

.container-rodape{
    padding-top: 1.5rem;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    display: flex;
    padding-bottom: 1.5rem;
}

.container-rodape .linha-vertical{
    background-color: var(--green);
    height: 4px;
    max-width: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.container-rodape .linha-vertical2{
    background-color: var(--green);
    height: 4px;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    align-self: right;
}

.sobre-nos{
    color: var(--dark-blue);
}

.sobre-nos h2{
    font-size: 1.5rem;
}

.sobre-nos p{
    font-size: 17px;
    max-width: 300px;
}
.panellinks{
    margin: auto;
}

.links{
    display: flex;
}

.links li a i{
    color: var(--dark-blue);
    font-size: 25px;
}

.links li a{
    cursor: pointer;
    padding: 10px;
    background-color: var(--white);
    display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: .5s ease-out;
}

.links li a:hover{
    padding: 10px;
    background-color: var(--green);
    transition: .2s ease-in;
}

.links li a:hover i {
    color: rgb(236, 235, 235);
}

.contate-nos{
    text-align: right;
    color: var(--dark-blue);
}

.contate-nos p{
    max-width: 250px;
}

@media screen and (max-width: 991px){
    #Local h1 {
        font-size: 2rem;
    }

    .container-rodape{
        padding-top: 1rem;
        justify-content: space-between;
        width: 90%;
        margin: auto;
        display: table;
        padding-bottom: 1rem;
    }
    .sobre-nos p{
        font-size: 17px;
        max-width: 100%;
    }
    
    .links{
        margin-top: 1rem;
    }

    .linksone{
        display: flex;
    }

    .linkstwo{
        display: flex;
    }

    .links li a{
        padding: 10px;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        margin-right: 10px;
        margin-bottom: 10px;
        transition: .5s ease-out;
    }
    
    .contate-nos p{
        max-width: 100%;
    }

    .contate-nos{
        text-align: justify;
    }

    .container-rodape .linha-vertical{
        max-width: 30%;
    }
    
    .container-rodape .linha-vertical2{
        max-width: 30%;
    }
}

.title{
    margin-top: 2.5rem;
}
.title h1{
    margin-top: 2rem;
    text-align: center;
    color: var(--green);
    font-size: 3rem;
    font-weight: 1000;
}
.title p{
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 1rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}



.Questions{
    margin: auto;
}
.questionItem{
    width: 90%;
    margin: auto;
    margin-bottom: 1.5rem;
    cursor: pointer;
}
.line{
    border: 1px solid #03A045;
    border-radius: 1rem;
    transition: .5s ease;
}
.TextQandA{
    cursor: pointer;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    width: 95%;
    justify-content: space-between;
}
.TextQandA i{
    color: var(--green);
    font-size: 1.5rem;
}
.TextQandA p{
    color:var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 400;
}
.Answer{
    margin: auto;
    width: 95%;
    display: block;
    margin-bottom: 1rem;
    transition: .5s ease-in;
}
.show{
    display: block;
}
.showOff{
    display: none;
}
.Answer p{
    color:var(--dark-blue);
    text-align: justify;
    font-size: 0.9rem;
    font-weight: 400;
    transition: .5s ease-in;
}

.linkForm{
    margin-top: 3rem;
    text-align: center;
    margin-bottom: 3em;
}

.linkForm p{
    color: var(--dark-blue);
}

.linkForm a{
    color: var(--green);
}
