:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Jost", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
    --background-color: #ffffff; /* Background color for the entire website */
    --default-color: #444444; /* Default text color */
    --heading-color: #116837; /* Headings color */
    --accent-color: #4ed609; /* Accent color */
    --surface-color: #f9f9f9; /* Surface color for boxed elements */
    --contrast-color: #ffffff; /* Contrast color for text */
}

/* Nav Menu Colors */
:root {
    --nav-color: #ffffff; 
    --nav-hover-color: #4ed609; 
    --nav-mobile-background-color: #ffffff; 
    --nav-dropdown-background-color: #ffffff; 
    --nav-dropdown-color: #444444; 
    --nav-dropdown-hover-color: #4ed609; 
}

/* Estilos gerais de reset */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Estilos para o container do corpo */
.body-dropzone {
    font-family: var(--heading-font);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem; 
    color: var(--default-color);
}

/* Estilos para a seção de upload */
#dropzone-section {
    margin-top: 2rem; 
    width: 100%;
}

/* Estilos para a caixa de upload */
.dropzone-box {
    border-radius: 1rem;
    padding: 2rem; 
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 36rem;
    border: 2px solid var(--heading-color);
    width: 100%;
    background: var(--surface-color);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.dropzone-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem; 
    color: var(--heading-color);
    text-align: center; 
}

.dropzone-box p {
    font-size: 1.2rem; 
    color: var(--heading-color);
    text-align: center; 
}

/* Estilos para a área de arrastar arquivos */
.dropzone-area {
    padding: 2rem;
    position: relative;
    margin-top: 1.5rem; 
    min-height: 20rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed var(--heading-color);
    border-radius: 1rem;
    background-color: #fff; 
    transition: all 0.3s ease;
    z-index: 250;
    cursor: pointer;
}

.dropzone-area .file-info {
    font-size: 1.2rem;
    
}

.dropzone-area .file-upload-icon svg {
    height: 6rem;
    max-width: 6rem;
    width: 100%;
    margin-bottom: 0.5rem;
    stroke: var(--heading-color);
}

.dropzone-area:hover {
    background: #f0f8f0;
}

.dropzone--over {
    border: 2px solid var(--heading-color);
    background: #f0fff0;
}

/* Tornar o campo de upload de arquivo invisível */
.dropzone-area input[type="file"] {
    display: none; /* Ocultei o input do tipo file */
}

/* Estilos para os campos do formulário */
.form-fields {
    margin-top: 1rem;
}

.form-fields label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--heading-color);
}

.form-fields input[type="text"],
.form-fields input[type="email"],
.form-fields input[type="tel"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--heading-color);
    border-radius: 0.5rem;
    background: #fff;
    color: #000;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Estilos para os botões */
.dropzone-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.dropzone-actions button {
    flex-grow: 1;
    min-height: 3rem;
    font-size: 1.2rem;
    border: none;
    transition: background 0.3s ease;
}

.dropzone-actions button[type='reset'] {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: #fff;
    background: var(--heading-color);
    cursor: pointer;
    border: 1px solid var(--heading-color);
}

.dropzone-actions button[type='reset']:hover {
    background: #0f6c27;
}

.dropzone-actions button[type='submit'] {
    background: var(--heading-color);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dropzone-actions button[type='submit']:hover {
    background: #0f6c27;
}
