:root {
    --primary-red: #8B0000;
    --accent-gold: #D4AF37;
    --neutral-100: #FAFAFA;
    --neutral-200: #f1f1f1;
    --neutral-800: #2A2A2A;
    --neutral-900: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--neutral-100);
}

.container-fluid {
    display: flex;
    width: 100%;
}

.formulario-container {
    flex: 1;
    background-color: white;
    padding: 2rem 3rem;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imagem-container {
    flex: 1;
    background-color: var(--primary-red);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

h1 {
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-align: center;
}

.texto-bv {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--neutral-800);
}

.texto-sub {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #6c757d;
}

.grupo-form {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-size: 0.875rem;
    font-weight: 600;
}

.campo-entrada, .form-control { 
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: var(--neutral-100);
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.campo-entrada:focus, .form-control:focus { 
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    background-color: white;
}

.preview-container #imagemPreview {
    display: none; 
    max-height: 150px;
    border: 1px solid #ddd;
    padding: 5px;
    background-color: #f8f8f8;
}

.botao-enviar {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 0.75rem 1.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.botao-enviar:hover {
    background-color: #6a0000;
}

.icone-mesa {
    width: 200px;
    height: 200px;
}

.icone-centro {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icone-topo {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.icone-home {
    width: 40px;
    height: 40px;
}