@charset "UTF-8";



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-color: #612f74;
}

.conteiner-1 {

    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 20px;
}





.img-1 {
    width: 100%;
    opacity: 0;
    filter: blur(15px);
    transition: all 3s;
    transform: translate(-100%);

}

.show{
    opacity: 1;
    transition: all 3s;
    filter: blur(0);
    transform: translate(0);

}


.p-1 {
    color: white;
    margin: 10px;
    padding: 10px;
    font-size: 23px;
    text-indent: 1.5em;
    line-height: 32px;
    border: 1px solid #b3a163;
}

.p-2 {
    color: white;
    margin: 10px;
    padding: 10px;
    font-size: 27px;
    text-indent: 1.5em;
    line-height: 42px;

}

.p-3 {
    border: 2px solid #b3a163;
    color: white;
    font-size: 15px;
}

.p-4 {
    font-size: 18px;
    margin: 10px;
    color: white;
}

.p-5 {
    text-align: center;
    font-size: 25px;
    color: white;
   
}





.wpp {
    width: 10px;
}

#wpp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 10px;


}

h1 {
    text-align: center;
    color: white;
    margin: 30px;
    font-size: 30px;
    background-color: #b3a163;
    border-radius: 20px;
    padding: 12px;



}

h2 {
    text-align: center;
    color: white;
    margin: 30px;
    font-size: 37px;
    border-radius: 3px;
}



li {
    color: white;
    font-size: 20px;
    margin: 7px;

}



button {
    width: 50%;
    height: 50px;
    font-size: 18px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    border: 2px solid #b3a163;
    margin: 10px;
    background-color: #612f74;
    cursor: pointer;
}



::placeholder {
    font-size: 18px;
    color: gray;
    text-align: center;
    font-weight: bold;
}



iframe {
    width: 350px;
    height: 300px;
    margin: 18px;
    border-radius: 5px;
    outline: none;

}







.icon {
    width: 20px;
}
.icon-2{
    width: 40px;
}



strong {
    color: white;
    font-size: 20px;
    margin: 10px;
    text-align: center;
}

.strong-2 {
    color: white;
    font-size: 20px;

}




@media (min-width: 600px) and (max-width: 1800px) {
    .img-1 {
        width: 70%;
        border-radius: 20px;
        padding: 10px;
    }
}