body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #1e3c72; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 700px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #ff9800; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

h2 {
    text-align: center;
    color: #ff9800; 
}

label {
    font-weight: bold;
    color: #1e3c72; 
}


#servicosContainer label {
    color: #1e3c72; 
}

input, textarea, select {
    width: calc(100% - 50px);
    padding: 12px;
    margin: 5px 10px 15px 10px;
    border: 2px solid #ff9800;
    border-radius: 8px;
    font-size: 16px;
    background-color: #ffffff; 
    color: #1e3c72; 
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    display: block;
}

input::placeholder,
textarea::placeholder {
    color: #666; 
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: calc(100% - 20px);
    padding-right: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18" fill="%23ff9800"><path d="M7 10l5 5 5-5z"></path></svg>') no-repeat right 10px center;
    background-size: 18px;
    cursor: pointer;
}


button {
    width: calc(100% - 20px);
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background-color: #ff9800; 
    color: white;
    transition: background 0.3s ease, transform 0.1s;
    text-align: center;
    margin: 10px;
}

button:hover {
    background-color: #e68900; 
}

button:active {
    transform: scale(0.98);
}


#servicosContainer,
#linksContainer,
#textosContainer,
#pixContainer,
#personalizadoContainer {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff9800;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    position: relative;
}


.servico-item,
.botao-container {
    background: #f9f9f9; 
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #ff9800; 
}


.servico-item button.remover-servico {
    background-color: #d9534f;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    width: calc(100% - 20px);
    margin: 10px;
}

.servico-item button.remover-servico:hover {
    background-color: #c9302c;
}


.alerta {
    font-size: 14px;
    color: #d9534f;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}
