body {
    font-family: 'Arial', sans-serif;
    background-color: #010024;
    margin: 10px;
    padding: 0;
    color: #333;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

/* Estilos para a logo */
.logo-container {
    text-align: center;
    margin: 20px 0;
}
.logo-container img {
    max-width: 100%; /* Ajusta a logo para caber no container */
    height: auto; /* Mantém a proporção da imagem */
}

h1 {
    color: #ff0060;
}

h2 {
    color: #fff;
}

h3 {
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#comofunciona{
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    gap: 1rem;
    flex-direction: column;
    width: 100%;
    display: flex;
    
}


.itens{
    border-width: 1px;
    border-radius: .375rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    height: 100px;
    box-sizing: border-box;
    border: 1px solid #ff0060;
}


.itens span{
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.itens-faq{
    border-width: 1px;
    text-align: left;
    border-radius: .375rem;
    justify-content: left;
    align-items: left;
    width: 100%;
    display: flex;
    color: #fff;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    padding: 10px;
}


.itens-faq span p{
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 300;
}

label {
    text-align: left;
    color: #fff;
    margin-bottom: -15px;
}

input, textarea {
    padding: 10px;
    background-color: #010024;
    border: 1px solid #ff0060;
    border-radius: 5px;
    font-size: 1rem;
    color: #fff;
}

input::placeholder, textarea::placeholder {
    color: #fff;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #ff0060;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Estilização do campo de upload */
.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0060;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.custom-file-upload i {
    margin-right: 8px;
}

input[type="file"] {
    display: none;
}

#mobileContainer {
    max-width: 375px;
    height: 750px;
    margin: auto;
    border: 16px solid black;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

#mobileView {
    height: 100%;
    background-color: #060f3c;
    padding: 20px;
    overflow-y: auto;
}

#imageSlider {
    width: 100%;
    height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius:.8rem;
    box-shadow: 0px 0px 15px 1px #000000;
}

.whitecolor{
    margin-top: 15px;
    margin-bottom:10px;
    color:#fff
}

.image-item {
    position: relative;
    display: inline-block;
}

.image-item img {
    max-width: 100px;
    border-radius: 5px;
}

.spacer{
    margin:auto;
    border-top-style:solid;
    border-top-color: rgb(229, 231, 235);
    width:10rem;
    margin-top:20px;
    opacity: .2;
}

/* Estilo para o botão desabilitado */
button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.65;
    border: 1px solid #999999;
}

button:disabled:hover {
    background-color: #cccccc;
    color: #666666;
}

.heart {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: red;
    clip-path: path("M12 4.419c-2.826-5.695-11.999-4.064-11.999 3.27 0 7.27 9.903 10.938 11.999 15.311 2.096-4.373 12-8.041 12-15.311 0-7.327-9.17-8.972-12-3.27z");
    animation: fall linear infinite;
}


@keyframes fall {
    from {
        transform: translateY(0) rotate(0deg);
    }
    to {
        transform: translateY(400px) rotate(360deg); /* Limita a queda dentro da div */
    }
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 2.75rem;
        text-align: left;
    }
    h2 {
        font-size: 1.2rem;
        text-align: left;
        line-height: 1.2em;
    }
}

#clickable{

    background-color: #ff0060;

    cursor: pointer;
    }
    
    #clicavel:hover{
    color: red;
    }
    
    #clicavel:active{
    color: blue;
    }