@charset "8-UTF";


html {
    font-size: 62.5%;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 1.6em;
}

a {
    text-decoration: none;
}

a:focus {
    border: 0px;
    box-shadow: none;
}

/*tools*/

.wSize1 {
    width: 100%;
}

.d-none {
    display: none !important;
}

.rosa {
    color: #fb0160;
}

.text-center {
    text-align: center;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.mt-0{
    margin-top: 0px;
}


/*Geral*/


.container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
}

.video {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.logo1 {
    position: absolute;
    width: 200px;
    top: 2%;
}

.btn {
    background-color: transparent;
    border: 0px;
    cursor: pointer;
}

.title {
    position: absolute;
    width: 300px;
    top: 28%;
}

.logo2 {
    position: absolute;
    width: 200px;
    bottom: 2%;
}

.tj{
    position: absolute;
    font-size: 0.6rem;
    top: 35%;
    height: 350px;
    color: #fb0160;
    right: 1%;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;

}

.modal {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 300px;
    height: 478px;
    padding: 2.5rem;
    border: 3px #fb0160 solid;
    border-radius: 30px;
    background-color: #000000c0;
}

form {
    margin-top: 4.5rem;
    text-align: center;
}

.inputPerso {
    position: relative;
    width: 95%;
    border: none;
    border-bottom: 1px #fb0160 solid;
    background-color: transparent;
    text-align: center;
    color: #fb0160;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.inputPerso::placeholder {
    color: #fb0160;
}

.inputPerso:focus,
.inputPerso:active {
    border: none !important;
    border-bottom: 1px #fb0160 solid !important;
    box-shadow: none;
    outline: none;
}

.inputPerso:-webkit-autofill,
.inputPerso:-webkit-autofill:hover,
.inputPerso:-webkit-autofill:focus,
.inputPerso:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.1) inset !important;
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.1) inset !important;
    -webkit-text-fill-color: #fb0160 !important;
    /* ajusta pro seu layout */
    -webkit-background-clip: text;
}

.inputPerso:-internal-autofill-selected {
    background-color: transparent !important;
}

.btnSend {
    background-color: transparent;
    border: 1px #fb0160 solid !important;
    border-radius: 20px;
    margin-top: 3rem;
    padding: 1.3rem 2rem;
    color: #fb0160;
    text-align: center;
    cursor: pointer;
}

.btnSend:active {
    background-color:  #1a1a1acd;
    color: #fb0160;
}

:focus-visible, .btnSend:focus, .btnSend:focus-visible{
    outline: none!important;
}

.load{
    width: 50px;
    animation: girar 0.5s linear infinite;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logofooter{
    width: 200px;
}

.social{
    width: 50px;
}

.font1 {
    font-family: Helvetica, Arial, sans-serif;
}

.fs1 {
    font-size: 3rem;
}


.fs2 {
    font-size: 1.8rem;
}

.fs3 {
    font-size: 1rem;
}

.fadeOut {
    transition: 1s ease 1s;
    opacity: 0;
}


@media (max-width: 400px) {
    .modal {
        width: 285px;
        height: 495px;
    }

    form{
    margin-top: 1.5rem;
    }

}