body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    text-align: center;
    margin: 0;
    padding: 0;

    background-image: url("images/Background_Tablet.jpg");
    background-size: cover;   
    background-position: center; 
    background-repeat: no-repeat; 

}

.container {
    background: #fff;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.texto_inicial {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.segundo_texto_inicial {
    color: #333333;
    margin-bottom: 25px;
}

.opcoes {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}


.emoji-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 5px;
    border-radius: 15px;
    cursor: pointer;
    /*margin: 10px;*/
    transition: 0.2s ease;
}

.emoji-btn:hover {
    transform: scale(1.05);
}

.emoji-btn.selected {
    border-color: #00cc44; /* verde */
    transform: scale(1.1);
}

.emoji-img {
    display: flex;
    width: 100%;   /* controla o tamanho da imagem */

}

.observacao {
    margin: 0;
   /*text-align: left;*/
}

.observacao p {
    font-weight: bold;
    text-align: start;
}

.observacao input {
    padding: 50px;
    width: 800px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #000;
    outline: none;

}

.enviar {
    margin-top: 20px;
    padding: 8px 30px;
    background: #e27305;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.enviar:hover {
    background: #a55402;
}


/* loader dentro do botão */
.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid #ffffff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
}

/* animação */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* botão desativado */
.enviar.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* esconder texto quando carregar */
.enviar.loading .btn-text {
    display: none;
}

.enviar.loading .btn-loader {
    display: block;
}


/* Container da seleção */
.selecionar-ups {
    margin: 20px 0;
    padding: 15px;
    background: #fffcfc;
    border-left: 4px solid #e27305;
    border-radius: 8px;
}

/* Texto acima do select */
.ups-label {
    font-size: 16px;
    font-weight: 600;
    color: #e27305;
    display: block;
    margin-bottom: 8px;
}

/* Estilo moderno do select */
.ups-select {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #e27305;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Ícone customizado */
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Hover */
.ups-select:hover {
    border-color: #e27305;
}

/* Quando selecionado */
.ups-select:focus {
    outline: none;
    border-color: #e27305;
    box-shadow: 0 0 4px rgba(44, 76, 255, 0.4);
}



.observacao-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #000;
    resize: vertical;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

/* Mobile */
@media (max-width: 480px) {
    .observacao-textarea {
        min-height: 100px;
        font-size: 14px;
        padding: 10px;
    }
}


.informacoes {
    margin-top: 35px;
    text-align: left;
    font-size: 12px;
    display: flex;
    gap: 10px;
}

.informacoes {
    display: flex;
    flex-wrap: wrap;
}


.informacoes div {
    margin-bottom: 12px;
}

.informacoes span {
    font-weight: bold;
    color: #fff;
}

.informacoes .boneco1_span{
    background-color: #eb0808;
    padding: 3px;
    border: 1px solid #eb0808;
    border-radius: 5px;
    font-size: 10px;
}

.informacoes .boneco2_span{
    background-color: #e27305;
    padding: 3px;
    border: 1px solid #e27305;
    border-radius: 5px;
    font-size: 10px;
}

.informacoes .boneco3_span{
    background-color: #f9dd28;
    padding: 3px;
    border: 1px solid #f9dd28;
    border-radius: 5px;
    font-size: 10px;
}

.informacoes .boneco4_span{
    background-color: #5cf257;
    padding: 3px;
    border: 1px solid #5cf257;
    border-radius: 5px;
    font-size: 10px;
}

.informacoes .boneco5_span{
    background-color: #147611;
    padding: 3px;
    border: 1px solid #147611;
    border-radius: 5px;
    font-size: 10px;
}

.mensagem {
    margin-top: 20px;
    background: #d4f8d4;
    color: #0a7a0a;
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}



/* --------------- RESPONSIVIDADE ---------------- */

@media (max-width: 768px) {
    .texto_inicial { font-size: 22px; }
    .emoji-btn img { width: 80px; }
}

@media (max-width: 480px) {
    .container {
        margin: 10px;
        padding: 20px;
    }

    .texto_inicial { font-size: 20px; }
    .segundo_texto_inicial { font-size: 14px; }

    .emoji-btn img {
        width: 65px;
    }

    .enviar {
        width: 20%;
        padding: 1px;
        font-size: 13px;
    }

    .informacoes {
        font-size: 12px;
    }
}