/* ESTILOS DO FORMULÁRIO DE CONTATO CIMED */

.fc-form-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Sombra elegante padrão */
    font-family: 'Inter', sans-serif;
}

.fc-form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

@media(min-width: 768px) {
    .fc-form-row {
        flex-direction: row;
        gap: 24px;
    }
}

.fc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Para campos que devem ocupar mais espaço (Ex: Endereço ocupa o dobro de Número) */
.fc-form-group.span-cols-2 {
    flex: 2;
}

.fc-form-group label {
    font-weight: 500;
    color: #4a4a4a;
    font-size: 14px;
}

/* Inputs e Selects Arredondados idênticos ao print */
.fc-form-group input[type="text"],
.fc-form-group input[type="email"],
.fc-form-group input[type="tel"],
.fc-form-group select,
.fc-form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DC;
    border-radius: 30px;
    /* Bordas bem redondas da imagem */
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background-color: #fff;
    width: 100%;
}

.fc-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.fc-form-group input:focus,
.fc-form-group select:focus,
.fc-form-group textarea:focus {
    border-color: #FFC600;
    /* Amarelo Cimed no foco */
}

.fc-form-group textarea {
    border-radius: 12px;
    /* Textareas menos redondos que inputs */
    min-height: 120px;
    resize: vertical;
}

/* Checkboxes */
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Área de Anexos */
.fc-form-anexos {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

.fc-form-anexos h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.fc-file-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

@media(min-width: 768px) {
    .fc-file-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fc-file-grid input[type="file"] {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 30px;
    background: #fff;
    width: 100%;
    cursor: pointer;
}

/* Estilo do botão de file do navegador */
.fc-file-grid input[type="file"]::file-selector-button {
    background: #111;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 500;
}

.tam-max {
    font-size: 12px;
    color: #666;
    margin-top: 16px;
}

/* Botão Enviar */
.fc-form-submit {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

.fc-form-submit button[type="submit"] {
    background: #FFC600;
    /* Cimed Yellow */
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 16px 80px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 198, 0, 0.3);
}

.fc-form-submit button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 198, 0, 0.4);
}

.fc-form-legal p,
.fc-form-disclaimer p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.fc-form-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    text-align: center;
}